Searched refs:psBits (Results 1 - 7 of 7) sorted by relevance

/hardware/ti/omap3/omx/ti_omx_config_parser/src/
H A Dti_m4v_config_parser.cpp64 void movePointerTo(mp4StreamType *psBits, int32 pos) argument
74 if (byte_pos > (psBits->numBytes - psBits->bytePos))
76 byte_pos = (psBits->numBytes - psBits->bytePos);
79 psBits->bytePos = byte_pos & -4;
80 psBits->dataBitPos = psBits->bytePos << 3;
81 FlushBits(psBits, ((pos & 0x7) + ((byte_pos & 0x3) << 3)));
84 int16 SearchNextM4VFrame(mp4StreamType *psBits) argument
105 mp4StreamType psBits; local
126 iDecodeVOLHeader(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profilelevel) argument
443 iDecodeShortHeader(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height) argument
800 mp4StreamType psBits; local
913 scaling_list_h264(int32 i4_list_size, mp4StreamType *psBits) argument
930 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc) argument
1094 DecodeVUI(mp4StreamType *psBits) argument
1186 DecodeHRD(mp4StreamType *psBits) argument
1217 DecodePPS(mp4StreamType *psBits, uint32 *entropy_coding_mode_flag) argument
1233 ue_v(mp4StreamType *psBits, uint32 *codeNum) argument
1257 se_v(mp4StreamType *psBits, int32 *value) argument
[all...]
H A Dti_video_config_parser.cpp70 mp4StreamType psBits; local
71 psBits.data = aInputs->inPtr;
76 psBits.numBytes = aInputs->inBytes;
77 psBits.bytePos = 0;
78 psBits.bitBuf = 0;
79 psBits.dataBitPos = 0;
80 psBits.bitPos = 32;
85 retval = iDecodeVOLHeader(&psBits, &width, &height, &display_width, &display_height, &profile_level);
/hardware/ti/omap3/omx/ti_omx_config_parser/inc/
H A Dti_m4v_config_parser.h94 mp4StreamType *psBits,
111 mp4StreamType *psBits,
128 int16 DecodeSPS(mp4StreamType *psBits, int32 *width, int32 *height, int32 *display_width, int32 *display_height, int32 *profile_idc, int32 *level_idc);
130 int32 DecodeHRD(mp4StreamType *psBits);
131 int32 DecodeVUI(mp4StreamType *psBits);
133 int32 DecodePPS(mp4StreamType *psBits, uint32 *entropy_coding_mode_flag);
135 void ue_v(mp4StreamType *psBits, uint32 *codeNum);
136 void se_v(mp4StreamType *psBits, int32 *value);
/hardware/qcom/media/mm-video/vidc/vdec/src/
H A Dmp4_utils.cpp88 bool MP4_Utils::parseHeader(mp4StreamType * psBits) { argument
94 m_posInfo.bytePtr = psBits->data;
95 m_dataBeginPtr = psBits->data;
104 m_posInfo.bytePtr = psBits->data;
105 m_dataBeginPtr = psBits->data;
113 m_posInfo.bytePtr = psBits->data;
114 m_dataBeginPtr = psBits->data;
117 psBits->numBytes,
122 m_posInfo.bytePtr = psBits->data;
129 m_posInfo.bytePtr = find_code(m_posInfo.bytePtr,psBits
[all...]
H A Domx_vdec.cpp5548 mp4StreamType psBits; local
5549 psBits.data = (unsigned char *)(buffer->pBuffer + buffer->nOffset);
5550 psBits.numBytes = buffer->nFilledLen;
5551 mp4_headerparser.parseHeader(&psBits);
7042 mp4StreamType psBits; local
7043 psBits.data = pdest_frame->pBuffer + pdest_frame->nOffset;
7044 psBits.numBytes = pdest_frame->nFilledLen;
7045 mp4_headerparser.parseHeader(&psBits);
H A Domx_vdec_copper.cpp5266 mp4StreamType psBits; local
5267 psBits.data = (unsigned char *)(buffer->pBuffer + buffer->nOffset);
5268 psBits.numBytes = buffer->nFilledLen;
5269 mp4_headerparser.parseHeader(&psBits);
6714 mp4StreamType psBits; local
6715 psBits.data = pdest_frame->pBuffer + pdest_frame->nOffset;
6716 psBits.numBytes = pdest_frame->nFilledLen;
6717 mp4_headerparser.parseHeader(&psBits);
/hardware/qcom/media/mm-video/vidc/vdec/inc/
H A Dmp4_utils.h167 int16 populateHeightNWidthFromShortHeader(mp4StreamType * psBits);
168 bool parseHeader(mp4StreamType * psBits);

Completed in 110 milliseconds