diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-11-30 23:51:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-11-30 23:51:02 +0000 |
commit | ff7f75e18574ba0ac3e841a1ff3a962e41552df2 (patch) | |
tree | 885d7c2ab38a79b9df030fb59fd795d5b9c43ef8 /libavcodec | |
parent | 4f602856588f930d3aec1071a627eaf5be926cdb (diff) | |
download | ffmpeg-ff7f75e18574ba0ac3e841a1ff3a962e41552df2.tar.gz |
Fix segfault due to deallocated entries in delayed_pic after size change.
Fixes issue714.
Originally committed as revision 15965 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index e31500f15f..84875962a4 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3639,6 +3639,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ if(h != h0) return -1; // width / height changed during parallelized decoding free_tables(h); + flush_dpb(s->avctx); MPV_common_end(s); } if (!s->context_initialized) { |