Home
last modified time | relevance | path

Searched refs:naluType (Results 1 – 7 of 7) sorted by relevance

/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
DVideoDecoderAVCSecure.cpp115 uint8_t naluType = 0; in processModularInputBuffer() local
150 naluType = nalu_type & NALU_TYPE_MASK; in processModularInputBuffer()
156 if ((naluType == h264_NAL_UNIT_TYPE_SLICE) && (i > 0)) { in processModularInputBuffer()
164 if (naluType >= h264_NAL_UNIT_TYPE_SLICE && naluType <= h264_NAL_UNIT_TYPE_IDR) { in processModularInputBuffer()
190 } else if (naluType == h264_NAL_UNIT_TYPE_SPS || naluType == h264_NAL_UNIT_TYPE_PPS) { in processModularInputBuffer()
192 ETRACE("Invalid parameter: nalu_data = NULL for naluType 0x%x", naluType); in processModularInputBuffer()
200 ITRACE("Nalu type = 0x%x is skipped", naluType); in processModularInputBuffer()
235 uint8_t naluType = 0; in processClassicInputBuffer() local
260 naluType = nalu_data[0] & NALU_TYPE_MASK; in processClassicInputBuffer()
262 VTRACE("naluType = 0x%x", naluType); in processClassicInputBuffer()
[all …]
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
DVideoDecoderAVCSecure.cpp113 uint8_t naluType = 0; in processModularInputBuffer() local
148 naluType = nalu_type & NALU_TYPE_MASK; in processModularInputBuffer()
152 if (naluType >= h264_NAL_UNIT_TYPE_SLICE && naluType <= h264_NAL_UNIT_TYPE_IDR) { in processModularInputBuffer()
177 } else if (naluType == h264_NAL_UNIT_TYPE_SPS || naluType == h264_NAL_UNIT_TYPE_PPS) { in processModularInputBuffer()
179 ETRACE("Invalid parameter: nalu_data = NULL for naluType 0x%x", naluType); in processModularInputBuffer()
187 ITRACE("Nalu type = 0x%x is skipped", naluType); in processModularInputBuffer()
222 uint8_t naluType = 0; in processClassicInputBuffer() local
248 naluType = nalu_data[0] & NALU_TYPE_MASK; in processClassicInputBuffer()
250 VTRACE("naluType = 0x%x", naluType); in processClassicInputBuffer()
253 if (naluType >= h264_NAL_UNIT_TYPE_SLICE && naluType <= h264_NAL_UNIT_TYPE_IDR) { in processClassicInputBuffer()
[all …]
/hardware/intel/common/libmix/videodecoder/securevideo/baytrail/
DVideoDecoderAVCSecure.cpp84 uint8_t naluType; in decode() local
108 naluType = pFrameInfo->nalus[i].type & NALU_TYPE_MASK; in decode()
109 if (naluType >= h264_NAL_UNIT_TYPE_SLICE && naluType <= h264_NAL_UNIT_TYPE_IDR) { in decode()
141 } else if (naluType >= h264_NAL_UNIT_TYPE_SEI && naluType <= h264_NAL_UNIT_TYPE_PPS) { in decode()
/hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/
DVideoDecoderAVCSecure.cpp84 uint8_t naluType; in decode() local
108 naluType = pFrameInfo->nalus[i].type & NALU_TYPE_MASK; in decode()
109 if (naluType >= h264_NAL_UNIT_TYPE_SLICE && naluType <= h264_NAL_UNIT_TYPE_IDR) { in decode()
141 } else if (naluType >= h264_NAL_UNIT_TYPE_SEI && naluType <= h264_NAL_UNIT_TYPE_PPS) { in decode()
/hardware/intel/common/libmix/videodecoder/securevideo/merrplus/
DVideoDecoderAVCSecure.cpp423 uint8_t naluType; in copyNaluHeader() local
426 naluType = *(uint8_t *)(stream + naluStream->naluOffset); in copyNaluHeader()
427 naluType &= NALU_TYPE_MASK; in copyNaluHeader()
429 if (naluType >= NAL_UNIT_TYPE_SLICE && naluType <= NAL_UNIT_TYPE_IDR) { in copyNaluHeader()
432 } else if (naluType >= NAL_UNIT_TYPE_SEI && naluType <= NAL_UNIT_TYPE_PPS) { in copyNaluHeader()
/hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/
DVideoDecoderAVCSecure.cpp420 uint8_t naluType; in copyNaluHeader() local
423 naluType = *(uint8_t *)(stream + naluStream->naluOffset); in copyNaluHeader()
424 naluType &= NALU_TYPE_MASK; in copyNaluHeader()
426 if (naluType >= NAL_UNIT_TYPE_SLICE && naluType <= NAL_UNIT_TYPE_IDR) { in copyNaluHeader()
429 } else if (naluType >= NAL_UNIT_TYPE_SEI && naluType <= NAL_UNIT_TYPE_PPS) { in copyNaluHeader()
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/
Domx_vdec_test.cpp2878 int naluType = 0; in Read_Buffer_From_H264_Start_Code_File() local
2905 naluType = dataptr[cnt] & 0x1F; in Read_Buffer_From_H264_Start_Code_File()
2907 if ((naluType == 1) || (naluType == 5)) { in Read_Buffer_From_H264_Start_Code_File()
3597 int naluType = 0; in Read_Buffer_From_MVC_File() local
3609 naluType = 0; in Read_Buffer_From_MVC_File()
3619 naluType = pBuffer[cnt] & 0x1F; in Read_Buffer_From_MVC_File()
3620 DEBUG_PRINT("%s: Found NALU type = %d\n", __FUNCTION__, naluType); in Read_Buffer_From_MVC_File()
3646 }while (naluType != 20 && bytes_read != 0); in Read_Buffer_From_MVC_File()