Searched refs:BitstreamPut1Bits (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vop.cpp | 294 status = BitstreamPut1Bits(stream, 1); /* Marker*/ in EncodeGOVHeader() 299 status = BitstreamPut1Bits(stream, 1); /* closed_gov */ in EncodeGOVHeader() 300 status = BitstreamPut1Bits(stream, 0); /* broken_link */ in EncodeGOVHeader() 330 status = BitstreamPut1Bits(stream, 1); in EncodeVopNotCoded() 333 status = BitstreamPut1Bits(stream, 0); in EncodeVopNotCoded() 334 status = BitstreamPut1Bits(stream, 1); /* marker bit */ in EncodeVopNotCoded() 336 status = BitstreamPut1Bits(stream, 1); /* marker bit */ in EncodeVopNotCoded() 337 status = BitstreamPut1Bits(stream, 0); /* vop_coded bit */ in EncodeVopNotCoded() 370 status = BitstreamPut1Bits(stream, 1); in EncodeVOPHeader() 373 status = BitstreamPut1Bits(stream, 0); in EncodeVOPHeader() [all …]
|
D | mp4enc_api.cpp | 2462 status = BitstreamPut1Bits(stream, 0x00); /* visual object identifier */ in EncodeVOS_Start() 2464 status = BitstreamPut1Bits(stream, 0x00); /* no video signal type */ in EncodeVOS_Start() 2482 status = BitstreamPut1Bits(stream, 0x00);/* Random Access = 0 */ in EncodeVOS_Start() 2489 status = BitstreamPut1Bits(stream, 0x00);/* is_object_layer_identifer = 0 */ in EncodeVOS_Start() 2493 status = BitstreamPut1Bits(stream, 0x00);/* vol_control_parameters = 0 */ in EncodeVOS_Start() 2495 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */ in EncodeVOS_Start() 2497 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */ in EncodeVOS_Start() 2498 status = BitstreamPut1Bits(stream, currVol->fixedVopRate);/* fixed_vop_rate = 0 */ in EncodeVOS_Start() 2501 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */ in EncodeVOS_Start() 2503 status = BitstreamPut1Bits(stream, 0x01);/* marker bit */ in EncodeVOS_Start() [all …]
|
D | vlc_encode.cpp | 231 BitstreamPut1Bits(bitstream, sign); in PutMV() 948 BitstreamPut1Bits(bs2, video->acPredFlag[video->mbnum]); /* ac_pred_flag */ in MBVlcEncodeDataPar_I_VOP() 1040 BitstreamPut1Bits(bs1, 1); /* not_coded = 1 */ in MBVlcEncodeDataPar_P_VOP() 1044 BitstreamPut1Bits(bs1, 0); /* not_coded =0 */ in MBVlcEncodeDataPar_P_VOP() 1075 BitstreamPut1Bits(bs2, video->acPredFlag[video->mbnum]); /* ac_pred_flag */ in MBVlcEncodeDataPar_P_VOP() 1184 BitstreamPut1Bits(bs1, video->acPredFlag[video->mbnum]); /* ac_pred_flag */ in MBVlcEncodeCombined_I_VOP() 1313 BitstreamPut1Bits(bs1, 1); /* not_coded = 1 */ in MBVlcEncodeCombined_P_VOP() 1317 BitstreamPut1Bits(bs1, 0); /* not_coded =0 */ in MBVlcEncodeCombined_P_VOP() 1326 BitstreamPut1Bits(bs1, video->acPredFlag[video->mbnum]); /* ac_pred_flag */ in MBVlcEncodeCombined_P_VOP() 1495 BitstreamPut1Bits(bs, RLB->s[i]); /* SIGN BIT */ in BlockCodeCoeff_RVLC() [all …]
|
D | bitstream_io.h | 21 #define BitstreamPut1Bits(x,y) BitstreamPutBits(x,1,y) macro
|