Searched refs:bitstream1 (Results 1 – 8 of 8) sorted by relevance
/external/opencore/codecs_v2/video/m4v_h263/enc/src/ |
D | bitstream_io.cpp | 415 PV_STATUS BitstreamAppendEnc(BitstreamEncVideo *bitstream1, BitstreamEncVideo *bitstream2) in BitstreamAppendEnc() argument 423 status = BitstreamSavePartial(bitstream1, &fraction); in BitstreamAppendEnc() 438 return BitstreamAppendPacket(bitstream1, bitstream2); in BitstreamAppendEnc() 445 if (bitstream1->byteCount + bitstream2->byteCount + offset > bitstream1->bufferSize) in BitstreamAppendEnc() 447 if (PV_SUCCESS != BitstreamUseOverrunBuffer(bitstream1, bitstream2->byteCount + offset)) in BitstreamAppendEnc() 449 bitstream1->byteCount += (bitstream2->byteCount + offset); in BitstreamAppendEnc() 454 ptrBS1 = bitstream1->bitstreamBuffer + bitstream1->byteCount; /* move ptr bs1*/ in BitstreamAppendEnc() 457 bitused = (WORD_SIZE << 3) - bitstream1->bitLeft; /* this must be between 1-7 */ in BitstreamAppendEnc() 461 bitstream1->byteCount += numbyte2; /* new byteCount */ in BitstreamAppendEnc() 463 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 | 702 video->bitstream1 = BitStreamCreateEnc(2 * 4096); /*allocate working stream 1*/ in PVInitVideoEncoder() 703 if (video->bitstream1 == NULL) goto CLEAN_UP; in PVInitVideoEncoder() 1147 if (video->bitstream1)BitstreamCloseEnc(video->bitstream1); in PVCleanUpVideoEncoder() 1303 if (*size > encData->bitstream1->byteCount) in PVGetVolHeader() 1305 *size = encData->bitstream1->byteCount; in PVGetVolHeader() 1306 M4VENC_MEMCPY(volHeader, encData->bitstream1->bitstreamBuffer, *size); in PVGetVolHeader() 1312 BitstreamEncReset(encData->bitstream1); in PVGetVolHeader() 2409 BitstreamEncVideo *stream = video->bitstream1; in EncodeVOS_Start()
|
D | mp4lib_int.h | 337 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()
|