Searched refs:bitstream1 (Results 1 – 8 of 8) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | bitstream_io.cpp | 416 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) in BitstreamAppendEnc() argument 424 status = BitstreamSavePartial(bitstream1, &fraction); in BitstreamAppendEnc() 439 return BitstreamAppendPacket(bitstream1, bitstream2); in BitstreamAppendEnc() 446 if (bitstream1->byteCount + bitstream2->byteCount + offset > bitstream1->bufferSize) in BitstreamAppendEnc() 448 if (PV_SUCCESS != BitstreamUseOverrunBuffer(bitstream1, bitstream2->byteCount + offset)) in BitstreamAppendEnc() 450 bitstream1->byteCount += (bitstream2->byteCount + offset); in BitstreamAppendEnc() 455 ptrBS1 = bitstream1->bitstreamBuffer + bitstream1->byteCount; /* move ptr bs1*/ in BitstreamAppendEnc() 458 bitused = (WORD_SIZE << 3) - bitstream1->bitLeft; /* this must be between 1-7 */ in BitstreamAppendEnc() 462 bitstream1->byteCount += numbyte2; /* new byteCount */ in BitstreamAppendEnc() 464 byteBS1 = ((UChar) bitstream1->word) << bitleft; /* fraction byte from bs1 */ in BitstreamAppendEnc() [all …]
|
D | 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 *bitstrea… 45 PV_STATUS BitstreamFlushBits(BitstreamEncVideo *bitstream1, Int num_bit_left); 46 PV_STATUS BitstreamPrependPacket(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2);
|
D | vop.cpp | 128 BitstreamEncVideo *stream = video->bitstream1; in EncodeVop_NoME() 197 BitstreamEncVideo *stream = video->bitstream1; /* different from frame-based */ in EncodeSlice() 522 bs = video->bitstream1; in EncodeVideoPacketHeader() 573 BitstreamPrependPacket(video->bitstream1, bs); in EncodeVideoPacketHeader()
|
D | combined_encode.cpp | 53 BitstreamEncVideo *bs1 = video->bitstream1; in EncodeFrameCombinedMode() 284 BitstreamEncVideo *bs1 = video->bitstream1; in EncodeSliceCombinedMode() 684 …BitstreamEncVideo *stream = (bs1stream ? video->bitstream1 : video->vol[video->currLayer]->stream); in EncodeGOBHeader()
|
D | datapart_encode.cpp | 51 BitstreamEncVideo *bs1 = video->bitstream1; in EncodeFrameDataPartMode() 230 BitstreamEncVideo *bs1 = video->bitstream1; in EncodeSliceDataPartMode()
|
D | mp4enc_api.cpp | 725 video->bitstream1 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 1*/ in PVInitVideoEncoder() 726 if (video->bitstream1 == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 1180 if (video->bitstream1)BitstreamCloseEnc(video->bitstream1); in PVCleanUpVideoEncoder() 1336 if (*size > encData->bitstream1->byteCount) in PVGetVolHeader() 1338 *size = encData->bitstream1->byteCount; in PVGetVolHeader() 1339 M4VENC_MEMCPY(volHeader, encData->bitstream1->bitstreamBuffer, *size); in PVGetVolHeader() 1345 BitstreamEncReset(encData->bitstream1); in PVGetVolHeader() 2442 BitstreamEncVideo *stream = video->bitstream1; in EncodeVOS_Start()
|
D | mp4lib_int.h | 335 BitstreamEncVideo *bitstream1; /* Used for data partitioning */ member
|
D | vlc_encode.cpp | 887 BitstreamEncVideo *bs1 = video->bitstream1; in MBVlcEncodeDataPar_I_VOP() 975 BitstreamEncVideo *bs1 = video->bitstream1; in MBVlcEncodeDataPar_P_VOP() 1133 BitstreamEncVideo *bs1 = video->bitstream1; in MBVlcEncodeCombined_I_VOP() 1249 BitstreamEncVideo *bs1 = video->bitstream1; in MBVlcEncodeCombined_P_VOP()
|