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

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvop.cpp289 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(strea
[all...]
H A 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);
H A Dvlc_encode.cpp191 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(bitstrea
[all...]
H A Dbitstream_io.cpp108 /* Function : BitstreamPutBits(BitstreamEncVideo *stream, Int Length,
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) function
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 t
[all...]
H A Dmp4enc_api.cpp2459 status = BitstreamPutBits(stream, 8, video->encParams->ProfileLevel[video->currLayer]);
2467 status = BitstreamPutBits(stream, 4, 0x01); /* visual object Type == "video ID" */
2475 status = BitstreamPutBits(stream, 5, 0x00);/* Video ID = 0 */
2485 status = BitstreamPutBits(stream, 4, currVol->volID);/* video_object_layer_id */
2489 status = BitstreamPutBits(stream, 8, 0x01);/* Video Object Type Indication = 1 ... Simple Object Type */
2491 status = BitstreamPutBits(stream, 8, 0x02);/* Video Object Type Indication = 2 ... Simple Scalable Object Type */
2496 status = BitstreamPutBits(stream, 4, 0x01); /* aspect_ratio_info = 1 ... 1:1(Square) */
2498 status = BitstreamPutBits(stream, 2, 0x00);/* video_object_layer_shape = 00 ... rectangular */
2528 BitstreamPutBits(stream, 8, currVol->iqmat[*(zigzag_i+i)]);
2530 BitstreamPutBits(strea
[all...]
H A Dcombined_encode.cpp687 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 63 milliseconds