Searched defs:parsingCtxt (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/libvideoeditor/vss/src/
H A DM4VD_Tools.c30 M4OSA_UInt32 M4VD_Tools_GetBitsFromMemory(M4VS_Bitstream_ctxt* parsingCtxt, argument
38 if (parsingCtxt->stream_index == 8)
40 //M4OSA_memcpy( (M4OSA_MemAddr8)&(parsingCtxt->stream_byte), parsingCtxt->in,
42 parsingCtxt->stream_byte = (unsigned char)(parsingCtxt->in)[0];
43 parsingCtxt->in++;
45 parsingCtxt->stream_index = 0;
48 code |= ((parsingCtxt->stream_byte & 0x80) >> 7);
50 parsingCtxt
[all...]
H A DM4VD_EXTERNAL_BitstreamParser.c84 M4OSA_UInt32 M4VD_EXTERNAL_GetBitsFromMemory(M4VS_Bitstream_ctxt* parsingCtxt, argument
87 return(M4VD_Tools_GetBitsFromMemory(parsingCtxt,nb_bits));
102 M4VS_Bitstream_ctxt parsingCtxt; local
132 parsingCtxt.stream_byte = 0;
133 parsingCtxt.stream_index = 8;
134 parsingCtxt.in = (M4OSA_Int8 *)pVol;
139 while (parsingCtxt.in - start < aVolSize)
141 code = M4VD_EXTERNAL_GetBitsFromMemory(&parsingCtxt, 8);
144 code = M4VD_EXTERNAL_GetBitsFromMemory(&parsingCtxt, 8);
147 code = M4VD_EXTERNAL_GetBitsFromMemory(&parsingCtxt,
[all...]
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp235 VIDEOEDITOR_VIDEO_Bitstream_ctxt* parsingCtxt, M4OSA_UInt32 nb_bits) {
236 return (M4VD_Tools_GetBitsFromMemory((M4VS_Bitstream_ctxt*) parsingCtxt,
244 VIDEOEDITOR_VIDEO_Bitstream_ctxt parsingCtxt; local
274 parsingCtxt.stream_byte = 0;
275 parsingCtxt.stream_index = 8;
276 parsingCtxt.in = (M4OSA_MemAddr8) pVol;
281 while (parsingCtxt.in - start < aVolSize) {
282 code = VideoEditorVideoDecoder_GetBitsFromMemory(&parsingCtxt, 8);
284 code = VideoEditorVideoDecoder_GetBitsFromMemory(&parsingCtxt, 8);
286 code = VideoEditorVideoDecoder_GetBitsFromMemory(&parsingCtxt,
234 VideoEditorVideoDecoder_GetBitsFromMemory( VIDEOEDITOR_VIDEO_Bitstream_ctxt* parsingCtxt, M4OSA_UInt32 nb_bits) argument
[all...]

Completed in 162 milliseconds