OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bitstream1
(Results
1 - 8
of
8
) sorted by null
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp
405
/* Function : BitstreamAppendEnc( BitstreamEncVideo *
bitstream1
, */
409
/* output bitstream(
bitstream1
) */
416
PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *
bitstream1
, BitstreamEncVideo *bitstream2)
424
status = BitstreamSavePartial(
bitstream1
, &fraction);
437
if (!offset) /*
bitstream1
is byte-aligned */
439
return BitstreamAppendPacket(
bitstream1
, bitstream2);
444
/* since
bitstream1
doesn't have to be byte-aligned, we have to process byte by byte */
446
if (
bitstream1
->byteCount + bitstream2->byteCount + offset >
bitstream1
->bufferSize)
448
if (PV_SUCCESS != BitstreamUseOverrunBuffer(
bitstream1
, bitstream2->byteCount + offset)
[
all
...]
bitstream_io.h
41
PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *
bitstream1
, BitstreamEncVideo *bitstream2);
42
PV_STATUS BitstreamAppendPacket(BitstreamEncVideo *
bitstream1
, BitstreamEncVideo *bitstream2);
43
PV_STATUS BitstreamAppendPacketNoOffset(BitstreamEncVideo *
bitstream1
, BitstreamEncVideo *bitstream2);
45
PV_STATUS BitstreamFlushBits(BitstreamEncVideo *
bitstream1
, Int num_bit_left);
46
PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *
bitstream1
, BitstreamEncVideo *bitstream2);
vop.cpp
46
// BitstreamEncVideo *stream=video->
bitstream1
;
128
BitstreamEncVideo *stream = video->
bitstream1
;
197
BitstreamEncVideo *stream = video->
bitstream1
; /* different from frame-based */
522
bs = video->
bitstream1
;
573
BitstreamPrependPacket(video->
bitstream1
, bs);
combined_encode.cpp
53
BitstreamEncVideo *bs1 = video->
bitstream1
;
284
BitstreamEncVideo *bs1 = video->
bitstream1
;
684
BitstreamEncVideo *stream = (bs1stream ? video->
bitstream1
: video->vol[video->currLayer]->stream);
datapart_encode.cpp
51
BitstreamEncVideo *bs1 = video->
bitstream1
;
230
BitstreamEncVideo *bs1 = video->
bitstream1
;
mp4enc_api.cpp
702
video->
bitstream1
= BitStreamCreateEnc(2 * 4096); /*allocate working stream 1*/
703
if (video->
bitstream1
== NULL) goto CLEAN_UP;
[
all
...]
mp4lib_int.h
335
BitstreamEncVideo *
bitstream1
; /* Used for data partitioning */
member in struct:tagVideoEncData
vlc_encode.cpp
887
BitstreamEncVideo *bs1 = video->
bitstream1
;
975
BitstreamEncVideo *bs1 = video->
bitstream1
;
[
all
...]
Completed in 476 milliseconds