You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/hevc_parse: ignore all non parameter set NAL units in extradata
While they shouldn't be present, they are harmless if they are. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -41,25 +41,8 @@ static int hevc_decode_nal_units(const uint8_t *buf, int buf_size, HEVCParamSets
|
|||||||
case HEVC_NAL_VPS: ff_hevc_decode_nal_vps(&nal->gb, logctx, ps); break;
|
case HEVC_NAL_VPS: ff_hevc_decode_nal_vps(&nal->gb, logctx, ps); break;
|
||||||
case HEVC_NAL_SPS: ff_hevc_decode_nal_sps(&nal->gb, logctx, ps, 1); break;
|
case HEVC_NAL_SPS: ff_hevc_decode_nal_sps(&nal->gb, logctx, ps, 1); break;
|
||||||
case HEVC_NAL_PPS: ff_hevc_decode_nal_pps(&nal->gb, logctx, ps); break;
|
case HEVC_NAL_PPS: ff_hevc_decode_nal_pps(&nal->gb, logctx, ps); break;
|
||||||
case HEVC_NAL_TRAIL_R:
|
default:
|
||||||
case HEVC_NAL_TRAIL_N:
|
av_log(logctx, AV_LOG_VERBOSE, "Ignoring NAL type %d in extradata\n", nal->type);
|
||||||
case HEVC_NAL_TSA_N:
|
|
||||||
case HEVC_NAL_TSA_R:
|
|
||||||
case HEVC_NAL_STSA_N:
|
|
||||||
case HEVC_NAL_STSA_R:
|
|
||||||
case HEVC_NAL_BLA_W_LP:
|
|
||||||
case HEVC_NAL_BLA_W_RADL:
|
|
||||||
case HEVC_NAL_BLA_N_LP:
|
|
||||||
case HEVC_NAL_IDR_W_RADL:
|
|
||||||
case HEVC_NAL_IDR_N_LP:
|
|
||||||
case HEVC_NAL_CRA_NUT:
|
|
||||||
case HEVC_NAL_RADL_N:
|
|
||||||
case HEVC_NAL_RADL_R:
|
|
||||||
case HEVC_NAL_RASL_N:
|
|
||||||
case HEVC_NAL_RASL_R:
|
|
||||||
av_log(logctx, AV_LOG_ERROR, "Invalid NAL unit: %d\n", nal->type);
|
|
||||||
ret = AVERROR_INVALIDDATA;
|
|
||||||
goto done;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user