Searched refs:nalu_type (Results 1 - 17 of 17) sorted by relevance

/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
H A Dhevc_utils.cpp100 nalu_type = NAL_UNIT_INVALID;
184 nalu_type = (buffer[pos] & 0x7E)>>1 ; //=== nal_unit_type
186 DEBUG_PRINT_LOW("@#@# Pos = %x NalType = %x buflen = %u", pos-1, nalu_type, (unsigned int) buffer_length);
190 if (nalu_type == NAL_UNIT_VPS ||
191 nalu_type == NAL_UNIT_SPS ||
192 nalu_type == NAL_UNIT_PPS ||
193 nalu_type == NAL_UNIT_SEI) {
194 DEBUG_PRINT_LOW("Non-AU boundary with NAL type %d", nalu_type);
202 } else if (nalu_type <= NAL_UNIT_RESERVED_23) {
203 DEBUG_PRINT_LOW("AU Boundary with NAL type %d ", nalu_type);
[all...]
H A Dh264_utils.cpp159 m_prv_nalu.nalu_type = NALU_TYPE_UNSPECIFIED;
207 m_prv_nalu.nalu_type = NALU_TYPE_UNSPECIFIED;
294 nal_unit->nalu_type = buffer[pos++] & 0x1f;
296 pos-1, nal_unit->nalu_type, buffer_length);
300 if ( nal_unit->nalu_type == NALU_TYPE_EOSEQ ||
301 nal_unit->nalu_type == NALU_TYPE_EOSTREAM)
377 nalu_type = nal_unit.nalu_type;
378 switch (nal_unit.nalu_type) {
381 ALOGV("AU Boundary with NAL type %d ",nal_unit.nalu_type);
[all...]
H A Domx_vdec.cpp7040 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_NON_IDR ||
7041 m_frame_parser.mutils->nalu_type == NALU_TYPE_IDR) {
7067 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_EOSEQ)
H A Domx_vdec_hevc.cpp6538 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_NON_IDR ||
6539 m_frame_parser.mutils->nalu_type == NALU_TYPE_IDR) {
6561 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_EOSEQ)
H A Domx_vdec_msm8974.cpp7504 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_NON_IDR ||
7505 m_frame_parser.mutils->nalu_type == NALU_TYPE_IDR) {
7527 if (m_frame_parser.mutils->nalu_type == NALU_TYPE_EOSEQ)
/hardware/qcom/media/mm-video-v4l2/vidc/common/inc/
H A Dextra_data_handler.h78 OMX_S32 create_rbsp(OMX_U8 *buf, OMX_U32 nalu_type);
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
H A Dhevc_utils.h143 uint32 nalu_type; member in class:HEVC_Utils
H A Dh264_utils.h150 uint32 nalu_type; member in struct:__anon1846
198 uint32 nalu_type; member in class:H264_Utils
/hardware/qcom/media/mm-video-legacy/vidc/common/inc/
H A Dextra_data_handler.h97 OMX_S32 create_rbsp(OMX_U8 *buf, OMX_U32 nalu_type);
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
H A Dh264_utils.cpp168 m_prv_nalu.nalu_type = NALU_TYPE_UNSPECIFIED;
217 m_prv_nalu.nalu_type = NALU_TYPE_UNSPECIFIED;
312 nal_unit->nalu_type = buffer[pos++] & 0x1f;
314 pos-1, nal_unit->nalu_type, buffer_length);
318 if( nal_unit->nalu_type == NALU_TYPE_EOSEQ ||
319 nal_unit->nalu_type == NALU_TYPE_EOSTREAM)
399 nalu_type = nal_unit.nalu_type;
400 switch (nal_unit.nalu_type)
405 ALOGV("\n AU Boundary with NAL type %d ",nal_unit.nalu_type);
[all...]
H A Domx_vdec.cpp7293 if(m_frame_parser.mutils->nalu_type == NALU_TYPE_NON_IDR ||
7294 m_frame_parser.mutils->nalu_type == NALU_TYPE_IDR) {
7319 if(m_frame_parser.mutils->nalu_type == NALU_TYPE_EOSEQ)
H A Domx_vdec_copper.cpp6823 if(m_frame_parser.mutils->nalu_type == NALU_TYPE_NON_IDR ||
6824 m_frame_parser.mutils->nalu_type == NALU_TYPE_IDR) {
6849 if(m_frame_parser.mutils->nalu_type == NALU_TYPE_EOSEQ)
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
H A Dh264_utils.h145 uint32 nalu_type; member in struct:__anon1827
193 uint32 nalu_type; member in class:H264_Utils
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
H A DVideoDecoderAVCSecure.cpp110 uint8_t nalu_type = 0; local
145 nalu_type = pFrameInfo->nalus[i].type;
148 naluType = nalu_type & NALU_TYPE_MASK;
150 VTRACE("nalu_type = 0x%x, nalu_size = %d, nalu_offset = 0x%x", nalu_type, nalu_size, nalu_offset);
156 mSliceInfo[sliceidx].sliceHeaderByte = nalu_type;
/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
H A DVideoDecoderAVCSecure.cpp110 uint8_t nalu_type = 0; local
145 nalu_type = pFrameInfo->nalus[i].type;
148 naluType = nalu_type & NALU_TYPE_MASK;
150 VTRACE("nalu_type = 0x%x, nalu_size = %d, nalu_offset = 0x%x", nalu_type, nalu_size, nalu_offset);
166 mSliceInfo[sliceidx].sliceHeaderByte = nalu_type;
/hardware/qcom/media/mm-video-legacy/vidc/common/src/
H A Dextra_data_handler.cpp398 OMX_S32 extra_data_handler::create_rbsp(OMX_U8 *buf, OMX_U32 nalu_type) argument
404 *buf++ = nalu_type;
/hardware/qcom/media/mm-video-v4l2/vidc/common/src/
H A Dextra_data_handler.cpp466 OMX_S32 extra_data_handler::create_rbsp(OMX_U8 *buf, OMX_U32 nalu_type) argument
474 *buf++ = nalu_type;

Completed in 391 milliseconds