1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-29 12:46:13 +02:00

hevc: Fix 4K sample video

Reviewed-by: smarter
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Kieran 2014-06-14 19:25:09 +01:00 committed by Michael Niedermayer
parent c1b15c16ef
commit bc21260e64

View File

@ -376,9 +376,10 @@ int ff_hevc_decode_nal_vps(HEVCContext *s)
goto err;
}
if (vps->vps_num_reorder_pics[i] > vps->vps_max_dec_pic_buffering[i] - 1) {
av_log(s->avctx, AV_LOG_ERROR, "vps_max_num_reorder_pics out of range: %d\n",
av_log(s->avctx, AV_LOG_WARNING, "vps_max_num_reorder_pics out of range: %d\n",
vps->vps_num_reorder_pics[i]);
goto err;
if (s->avctx->strict_std_compliance > FF_COMPLIANCE_NORMAL)
goto err;
}
}