Searched defs:naluType (Results 1 - 7 of 7) sorted by relevance

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

Completed in 112 milliseconds