[FFmpeg-cvslog] avcodec/hevc_ps: Only discard overread VPS if a previous is available
Michael Niedermayer
git at videolan.org
Thu Jun 18 18:15:50 CEST 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jun 18 18:03:21 2015 +0200| [57078e4d255a06246fef27846073f5ffb312b5dc] | committer: Michael Niedermayer
avcodec/hevc_ps: Only discard overread VPS if a previous is available
Fixes Ticket4621
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=57078e4d255a06246fef27846073f5ffb312b5dc
---
libavcodec/hevc_ps.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/hevc_ps.c b/libavcodec/hevc_ps.c
index ced0600..757f666 100644
--- a/libavcodec/hevc_ps.c
+++ b/libavcodec/hevc_ps.c
@@ -499,7 +499,8 @@ int ff_hevc_decode_nal_vps(HEVCContext *s)
if (get_bits_left(gb) < 0) {
av_log(s->avctx, AV_LOG_ERROR,
"Overread VPS by %d bits\n", -get_bits_left(gb));
- goto err;
+ if (s->vps_list[vps_id])
+ goto err;
}
if (s->vps_list[vps_id] &&
More information about the ffmpeg-cvslog
mailing list