Searched refs:BitstreamEncVideo (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.h30 BitstreamEncVideo *BitStreamCreateEnc(Int bufferSize);
31 Void BitstreamCloseEnc(BitstreamEncVideo *stream);
32 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value);
33 PV_STATUS BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value);
34 PV_STATUS BitstreamSaveWord(BitstreamEncVideo *stream);
35 PV_STATUS BitstreamSavePartial(BitstreamEncVideo *stream, Int *fraction);
36 Int BitstreamGetPos(BitstreamEncVideo *stream);
37 void BitstreamEncReset(BitstreamEncVideo *stream);
39 Int BitstreamShortHeaderByteAlignStuffing(BitstreamEncVideo *stream);
40 Int BitstreamMpeg4ByteAlignStuffing(BitstreamEncVideo *strea
[all...]
H A Dvlc_encode.h24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
26 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
27 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
28 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
29 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
30 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
31 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
32 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstrea
[all...]
H A Dbitstream_io.cpp48 /* Return : Pointer to the BitstreamEncVideo */
52 BitstreamEncVideo *BitStreamCreateEnc(Int bufferSize)
54 BitstreamEncVideo *stream;
55 stream = (BitstreamEncVideo *) M4VENC_MALLOC(sizeof(BitstreamEncVideo));
93 Void BitstreamCloseEnc(BitstreamEncVideo *stream)
108 /* Function : BitstreamPutBits(BitstreamEncVideo *stream, Int Length,
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value)
157 /* Function : BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, UInt32 Value) */
168 PV_STATUS BitstreamPutGT16Bits(BitstreamEncVideo *strea
[all...]
H A Dvlc_encode.cpp88 typedef void (*BlockCodeCoeffPtr)(RunLevelBlock*, BitstreamEncVideo*, Int, Int, UChar) ;
142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream);
144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream);
145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream);
146 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
147 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
148 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
149 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
150 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstrea
[all...]
H A Dvop.cpp24 PV_STATUS EncodeShortHeader(BitstreamEncVideo *stream, Vop *currVop);
25 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop);
26 PV_STATUS EncodeGOVHeader(BitstreamEncVideo *stream, UInt seconds);
46 // BitstreamEncVideo *stream=video->bitstream1;
128 BitstreamEncVideo *stream = video->bitstream1;
197 BitstreamEncVideo *stream = video->bitstream1; /* different from frame-based */
276 PV_STATUS EncodeGOVHeader(BitstreamEncVideo *stream, UInt seconds)
314 BitstreamEncVideo *stream = currVol->stream;
353 PV_STATUS EncodeVOPHeader(BitstreamEncVideo *stream, Vol *currVol, Vop *currVop)
412 PV_STATUS EncodeShortHeader(BitstreamEncVideo *strea
[all...]
H A Ddatapart_encode.cpp51 BitstreamEncVideo *bs1 = video->bitstream1;
52 BitstreamEncVideo *bs2 = video->bitstream2;
53 BitstreamEncVideo *bs3 = video->bitstream3;
59 void (*BlockCodeCoeff)(RunLevelBlock*, BitstreamEncVideo*, Int, Int, UChar);
230 BitstreamEncVideo *bs1 = video->bitstream1;
231 BitstreamEncVideo *bs2 = video->bitstream2;
232 BitstreamEncVideo *bs3 = video->bitstream3;
241 void (*BlockCodeCoeff)(RunLevelBlock*, BitstreamEncVideo*, Int, Int, UChar);
H A Dmp4lib_int.h26 /* BitstreamEncVideo will be modified */
38 } BitstreamEncVideo; typedef in typeref:struct:tagBitstream
87 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */
336 BitstreamEncVideo *bitstream1; /* Used for data partitioning */
337 BitstreamEncVideo *bitstream2; /* and combined modes as */
338 BitstreamEncVideo *bitstream3; /* intermediate storages */
H A Dcombined_encode.cpp53 BitstreamEncVideo *bs1 = video->bitstream1;
59 void (*BlockCodeCoeff)(RunLevelBlock*, BitstreamEncVideo*, Int, Int, UChar);
284 BitstreamEncVideo *bs1 = video->bitstream1;
294 void (*BlockCodeCoeff)(RunLevelBlock*, BitstreamEncVideo*, Int, Int, UChar);
684 BitstreamEncVideo *stream = (bs1stream ? video->bitstream1 : video->vol[video->currLayer]->stream);
H A Dmp4enc_lib.h198 void BlockCodeCoeff_ShortHeader(RunLevelBlock *RLB, BitstreamEncVideo *bs, Int j_start, Int j_stop, UChar Mode);
199 void BlockCodeCoeff_RVLC(RunLevelBlock *RLB, BitstreamEncVideo *bs, Int j_start, Int j_stop, UChar Mode);
200 void BlockCodeCoeff_Normal(RunLevelBlock *RLB, BitstreamEncVideo *bs, Int j_start, Int j_stop, UChar Mode);
H A Dmp4enc_api.cpp909 pVol->stream = (BitstreamEncVideo *)M4VENC_MALLOC(sizeof(BitstreamEncVideo)); /* allocate BitstreamEncVideo Instance */
2438 BitstreamEncVideo *stream = video->bitstream1;
2601 BitstreamEncVideo *stream = currVol->stream;

Completed in 194 milliseconds