aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-08 21:46:20 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-07-09 00:17:03 +0200
commit0f84286677b5bcb049c2db4b17543a83a806e32e (patch)
tree3cb5c4a797119bfb5618348e651c62ab553cc612
parent18900381e2d36b1b28d8f39148e6a799bf7336bd (diff)
downloadffmpeg-0f84286677b5bcb049c2db4b17543a83a806e32e.tar.gz
mpeg12dec: avoid reinitialization on PS changes when possible.
Fixes Ticket2574 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 970c8df73528659925819dec31c4c8c0887f0321) Conflicts: libavcodec/mpeg12dec.c
-rw-r--r--libavcodec/mpeg12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index d8e22a26af..9c5e967188 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -1266,7 +1266,7 @@ static int mpeg_decode_postinit(AVCodecContext *avctx)
s1->save_width != s->width ||
s1->save_height != s->height ||
s1->save_aspect_info != s->aspect_ratio_info ||
- s1->save_progressive_seq != s->progressive_sequence ||
+ (s1->save_progressive_seq != s->progressive_sequence && (s->height&31)) ||
0)
{