summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-02-02 21:11:54 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-02 21:13:25 +0100
commit695af8eed642ff0104834495652d1ee784a4c14d (patch)
tree44d6680298880b6888bc5792f5e84b585a7abb16 /libavcodec/h264.c
parent0e9b9a6748aa67c8f272e5eab2b5f7ad6e13d5c9 (diff)
h264: skip error concealment when SPS and slices are mismatching
Fixes out of array accesses Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 50839bd83c..34cd8c0658 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2367,7 +2367,7 @@ static int field_end(H264Context *h, int in_setup)
* past end by one (callers fault) and resync_mb_y != 0
* causes problems for the first MB line, too.
*/
- if (!FIELD_PICTURE && h->current_slice)
+ if (!FIELD_PICTURE && h->current_slice && !h->sps.new)
ff_er_frame_end(s);
ff_MPV_frame_end(s);