Searched refs:bitstream2 (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.h41 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
42 PV_STATUS BitstreamAppendPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
43 PV_STATUS BitstreamAppendPacketNoOffset(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
46 PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
H A Dbitstream_io.cpp406 /* BitstreamEncVideo *bitstream2 ) */
408 /* Purpose : Append the intermediate bitstream (bitstream2) to the end of */
416 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) argument
431 status = BitstreamSavePartial(bitstream2, &fraction);
439 return BitstreamAppendPacket(bitstream1, bitstream2);
445 /* we read one byte from bitstream2 and use BitstreamPutBits to do the job */
446 if (bitstream1->byteCount + bitstream2->byteCount + offset > bitstream1->bufferSize)
448 if (PV_SUCCESS != BitstreamUseOverrunBuffer(bitstream1, bitstream2->byteCount + offset))
450 bitstream1->byteCount += (bitstream2->byteCount + offset);
456 ptrBS2 = bitstream2
493 BitstreamAppendPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) argument
532 BitstreamAppendPacketNoOffset(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) argument
681 BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) argument
[all...]
H A Ddatapart_encode.cpp52 BitstreamEncVideo *bs2 = video->bitstream2;
231 BitstreamEncVideo *bs2 = video->bitstream2;
H A Dmp4lib_int.h337 BitstreamEncVideo *bitstream2; /* and combined modes as */ member in struct:tagVideoEncData
H A Dmp4enc_api.cpp727 video->bitstream2 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 2*/
728 if (video->bitstream2 == NULL) goto CLEAN_UP;
1181 if (video->bitstream2)BitstreamCloseEnc(video->bitstream2);
H A Dvlc_encode.cpp888 BitstreamEncVideo *bs2 = video->bitstream2;
976 BitstreamEncVideo *bs2 = video->bitstream2;
1134 // BitstreamEncVideo *bs2 = video->bitstream2;
1250 // BitstreamEncVideo *bs2 = video->bitstream2;

Completed in 4599 milliseconds