diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-07-08 02:43:02 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-07-08 12:55:55 +0200 |
commit | bd8d8f57e87b853176d373b2eb375031a9fb8966 (patch) | |
tree | 480a4bdef24c89b323e8e35ab487d2f8a223bfe1 | |
parent | 581bfd9c6f3a30a3859d2fc8b09f85ee0ccc1f25 (diff) | |
download | ffmpeg-bd8d8f57e87b853176d373b2eb375031a9fb8966.tar.gz |
avformat/swfdec: Do not error out on pixel format changes
Instead print an error and continue
Fixes Ticket4702
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 6a1204a1a46674084b1e6b92562f81aaab7aac69)
-rw-r--r-- | libavformat/swfdec.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c index bf5b581d5d..43a82b8b0e 100644 --- a/libavformat/swfdec.c +++ b/libavformat/swfdec.c @@ -384,10 +384,8 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt) } if (st->codec->pix_fmt != AV_PIX_FMT_NONE && st->codec->pix_fmt != pix_fmt) { av_log(s, AV_LOG_ERROR, "pixel format change unsupported\n"); - res = AVERROR_PATCHWELCOME; - goto bitmap_end; - } - st->codec->pix_fmt = pix_fmt; + }else + st->codec->pix_fmt = pix_fmt; if (linesize * height > pkt->size) { res = AVERROR_INVALIDDATA; |