Home
last modified time | relevance | path

Searched refs:BitstreamPutBits (Results 1 – 6 of 6) sorted by relevance

/external/opencore/codecs_v2/video/m4v_h263/enc/src/
Dvop.cpp289 status = BitstreamPutBits(stream, 5, tmpvar); /* Hours*/ in EncodeGOVHeader()
292 status = BitstreamPutBits(stream, 6, tmpvar); /* Minutes*/ in EncodeGOVHeader()
297 status = BitstreamPutBits(stream, 6, tmpvar); /* Seconds*/ in EncodeGOVHeader()
323 status = BitstreamPutBits(stream, 2, P_VOP);/* VOP Coding Type*/ in EncodeVopNotCoded()
335 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, timeInc); /* vop_time_increment */ in EncodeVopNotCoded()
364 status = BitstreamPutBits(stream, 2, currVop->predictionType);/* VOP Coding Type*/ in EncodeVOPHeader()
376 …status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, currVop->timeInc); /* vop_time_increme… in EncodeVOPHeader()
388 status = BitstreamPutBits(stream, 3, currVop->intraDCVlcThr); /* intra_dc_vlc_thr */ in EncodeVOPHeader()
389 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant */ in EncodeVOPHeader()
392 status = BitstreamPutBits(stream, 3, currVop->fcodeForward); /* vop_fcode_forward */ in EncodeVOPHeader()
[all …]
Dvlc_encode.cpp191 BitstreamPutBits(bitstream, length, DCtab_lum[size].code); in PutDCsize_lum()
205 BitstreamPutBits(bitstream, length, DCtab_chrom[size].code); in PutDCsize_chrom()
227 BitstreamPutBits(bitstream, length, mvtab[absmv].code); in PutMV()
248 BitstreamPutBits(bitstream, length, mcbpc_intra_tab[ind].code); in PutMCBPC_Intra()
263 BitstreamPutBits(bitstream, length, mcbpc_inter_tab[ind].code); in PutMCBPC_Inter()
281 BitstreamPutBits(bitstream, length, (UInt)cbpy_tab[ind].code); in PutCBPY()
299 BitstreamPutBits(bitstream, length, (UInt)coeff_tab0[run][level-1].code); in PutCoeff_Inter()
305 BitstreamPutBits(bitstream, length, (UInt)coeff_tab1[run-2][level-1].code); in PutCoeff_Inter()
319 BitstreamPutBits(bitstream, length, (UInt)coeff_tab2[run][level-1].code); in PutCoeff_Inter_Last()
325 BitstreamPutBits(bitstream, length, (UInt)coeff_tab3[run-2].code); in PutCoeff_Inter_Last()
[all …]
Dbitstream_io.h21 #define BitstreamPut1Bits(x,y) BitstreamPutBits(x,1,y)
22 #define BitstreamPutGT8Bits(x,y,z) BitstreamPutBits(x,y,z)
32 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value);
Dbitstream_io.cpp119 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) in BitstreamPutBits() function
178 status = BitstreamPutBits(stream, topLength, topValue); in BitstreamPutGT16Bits()
185 status = BitstreamPutBits(stream, 16, (UInt)(Value & 0xFFFF)); in BitstreamPutGT16Bits()
191 status = BitstreamPutBits(stream, Length, (UInt)Value); in BitstreamPutGT16Bits()
335 BitstreamPutBits(stream, restBits, 0); in BitstreamShortHeaderByteAlignStuffing()
364 BitstreamPutBits(stream, 1, 0); in BitstreamMpeg4ByteAlignStuffing()
371 BitstreamPutBits(stream, restBits, Mask[restBits]); in BitstreamMpeg4ByteAlignStuffing()
477 status = BitstreamPutBits(bitstream1, (WORD_SIZE << 3) - bitstream2->bitLeft, bitstream2->word); in BitstreamAppendEnc()
Dmp4enc_api.cpp2426 status = BitstreamPutBits(stream, 8, video->encParams->ProfileLevel[video->currLayer]); in EncodeVOS_Start()
2434 status = BitstreamPutBits(stream, 4, 0x01); /* visual object Type == "video ID" */ in EncodeVOS_Start()
2442 status = BitstreamPutBits(stream, 5, 0x00);/* Video ID = 0 */ in EncodeVOS_Start()
2452 status = BitstreamPutBits(stream, 4, currVol->volID);/* video_object_layer_id */ in EncodeVOS_Start()
2456 …status = BitstreamPutBits(stream, 8, 0x01);/* Video Object Type Indication = 1 ... Simple Object … in EncodeVOS_Start()
2458 …status = BitstreamPutBits(stream, 8, 0x02);/* Video Object Type Indication = 2 ... Simple Scalabl… in EncodeVOS_Start()
2463 status = BitstreamPutBits(stream, 4, 0x01); /* aspect_ratio_info = 1 ... 1:1(Square) */ in EncodeVOS_Start()
2465 … status = BitstreamPutBits(stream, 2, 0x00);/* video_object_layer_shape = 00 ... rectangular */ in EncodeVOS_Start()
2495 BitstreamPutBits(stream, 8, currVol->iqmat[*(zigzag_i+i)]); in EncodeVOS_Start()
2497 BitstreamPutBits(stream, 8, 0); in EncodeVOS_Start()
[all …]
Dcombined_encode.cpp687 status = BitstreamPutBits(stream, 5, GOB_number); /* Current gob_number */ in EncodeGOBHeader()
688 status = BitstreamPutBits(stream, 2, video->currVop->gobFrameID); /* gob_frame_id */ in EncodeGOBHeader()
689 status = BitstreamPutBits(stream, 5, quant_scale); /* quant_scale */ in EncodeGOBHeader()