From 5c78a8129c4bac2ae0c12d90672799325bc01e96 Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Fri, 14 Dec 2012 10:06:15 +1100 Subject: [PATCH] sauce: test filetype correctly for datatype 5 (binary text) --- libavformat/sauce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/sauce.c b/libavformat/sauce.c index 21cc95bccb..a2347b0197 100644 --- a/libavformat/sauce.c +++ b/libavformat/sauce.c @@ -71,7 +71,7 @@ int ff_sauce_read(AVFormatContext *avctx, uint64_t *fsize, int *got_width, int g if (get_height && t2) avctx->streams[0]->codec->height = t2<<4; } else if (datatype == 5) { - if (filetype > 1) { + if (filetype) { avctx->streams[0]->codec->width = (filetype == 1 ? t1 : filetype) << 4; *got_width = 1; }