summaryrefslogtreecommitdiff
path: root/libavformat/sauce.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2012-12-14 10:06:15 +1100
committerPeter Ross <pross@xvid.org>2012-12-14 16:46:29 +1100
commit5c78a8129c4bac2ae0c12d90672799325bc01e96 (patch)
tree47aa7acd8d3ecd7aaea83e452ff1302659fd55ad /libavformat/sauce.c
parent58f30175e1ed30aa8a3521d5b3a1ae700e5c5d23 (diff)
sauce: test filetype correctly for datatype 5 (binary text)
Diffstat (limited to 'libavformat/sauce.c')
-rw-r--r--libavformat/sauce.c2
1 files changed, 1 insertions, 1 deletions
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;
}