HomeSort by relevance Sort by last modified time
    Searched refs:bitstream2 (Results 1 - 6 of 6) sorted by null

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
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);
46 PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
bitstream_io.cpp 406 /* BitstreamEncVideo *bitstream2 ) */
408 /* Purpose : Append the intermediate bitstream (bitstream2) to the end of */
416 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2)
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->bitstreamBuffer
    [all...]
datapart_encode.cpp 52 BitstreamEncVideo *bs2 = video->bitstream2;
231 BitstreamEncVideo *bs2 = video->bitstream2;
mp4lib_int.h 336 BitstreamEncVideo *bitstream2; /* and combined modes as */ member in struct:tagVideoEncData
mp4enc_api.cpp 704 video->bitstream2 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 2*/
705 if (video->bitstream2 == NULL) goto CLEAN_UP;
    [all...]
vlc_encode.cpp 888 BitstreamEncVideo *bs2 = video->bitstream2;
976 BitstreamEncVideo *bs2 = video->bitstream2;
    [all...]

Completed in 56 milliseconds