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

  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
vop.cpp 289 status = BitstreamPutBits(stream, 5, tmpvar); /* Hours*/
292 status = BitstreamPutBits(stream, 6, tmpvar); /* Minutes*/
297 status = BitstreamPutBits(stream, 6, tmpvar); /* Seconds*/
323 status = BitstreamPutBits(stream, 2, P_VOP);/* VOP Coding Type*/
335 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, timeInc); /* vop_time_increment */
364 status = BitstreamPutBits(stream, 2, currVop->predictionType);/* VOP Coding Type*/
376 status = BitstreamPutBits(stream, currVol->nbitsTimeIncRes, currVop->timeInc); /* vop_time_increment */
388 status = BitstreamPutBits(stream, 3, currVop->intraDCVlcThr); /* intra_dc_vlc_thr */
389 status = BitstreamPutBits(stream, 5, currVop->quantizer); /* vop_quant */
392 status = BitstreamPutBits(stream, 3, currVop->fcodeForward); /* vop_fcode_forward *
    [all...]
bitstream_io.h 21 #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);
vlc_encode.cpp 191 BitstreamPutBits(bitstream, length, DCtab_lum[size].code);
205 BitstreamPutBits(bitstream, length, DCtab_chrom[size].code);
227 BitstreamPutBits(bitstream, length, mvtab[absmv].code);
248 BitstreamPutBits(bitstream, length, mcbpc_intra_tab[ind].code);
263 BitstreamPutBits(bitstream, length, mcbpc_inter_tab[ind].code);
281 BitstreamPutBits(bitstream, length, (UInt)cbpy_tab[ind].code);
299 BitstreamPutBits(bitstream, length, (UInt)coeff_tab0[run][level-1].code);
305 BitstreamPutBits(bitstream, length, (UInt)coeff_tab1[run-2][level-1].code);
319 BitstreamPutBits(bitstream, length, (UInt)coeff_tab2[run][level-1].code);
325 BitstreamPutBits(bitstream, length, (UInt)coeff_tab3[run-2].code)
    [all...]
bitstream_io.cpp 108 /* Function : BitstreamPutBits(BitstreamEncVideo *stream, Int Length,
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value)
179 status = BitstreamPutBits(stream, topLength, topValue);
186 status = BitstreamPutBits(stream, 16, (UInt)(Value & 0xFFFF));
192 status = BitstreamPutBits(stream, Length, (UInt)Value);
336 BitstreamPutBits(stream, restBits, 0);
365 BitstreamPutBits(stream, 1, 0);
372 BitstreamPutBits(stream, restBits, Mask[restBits]);
400 BitstreamPutBits(stream,count,Mask[count]);
445 /* we read one byte from bitstream2 and use BitstreamPutBits to do the job *
    [all...]
mp4enc_api.cpp     [all...]
combined_encode.cpp 687 status = BitstreamPutBits(stream, 5, GOB_number); /* Current gob_number */
688 status = BitstreamPutBits(stream, 2, video->currVop->gobFrameID); /* gob_frame_id */
689 status = BitstreamPutBits(stream, 5, quant_scale); /* quant_scale */

Completed in 81 milliseconds