ffmpeg | branch: release/1.1 | Michael Niedermayer <michae...@gmx.at> | Sun Mar 8 23:27:43 2015 +0100| [676dff8c546274a8b5ab93038acca7fc0c347405] | committer: Michael Niedermayer
avcodec/tiff: move bpp check to after "end:" This ensures that all current and future code-pathes get bpp checked Signed-off-by: Michael Niedermayer <michae...@gmx.at> (cherry picked from commit d5e9fc782150d4596c72440a0aa02b7f4f1254b1) Conflicts: libavcodec/tiff.c > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=676dff8c546274a8b5ab93038acca7fc0c347405 --- libavcodec/tiff.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 239750d..7278afb 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -755,13 +755,6 @@ static int tiff_decode_tag(TiffContext *s) s->bpp = -1; } } - if (s->bpp > 64U) { - av_log(s->avctx, AV_LOG_ERROR, - "This format is not supported (bpp=%d, %d components)\n", - s->bpp, count); - s->bpp = 0; - return AVERROR_INVALIDDATA; - } break; case TIFF_SAMPLES_PER_PIXEL: if (count != 1) { @@ -1037,6 +1030,13 @@ static int tiff_decode_tag(TiffContext *s) av_log(s->avctx, AV_LOG_DEBUG, "Unknown or unsupported tag %d/0X%0X\n", tag, tag); } + if (s->bpp > 64U) { + av_log(s->avctx, AV_LOG_ERROR, + "This format is not supported (bpp=%d, %d components)\n", + s->bpp, count); + s->bpp = 0; + return AVERROR_INVALIDDATA; + } bytestream2_seek(&s->gb, start, SEEK_SET); return 0; } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog