summaryrefslogtreecommitdiff
path: root/libavcodec/sp5xdec.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-20 09:55:48 +0100
committerMans Rullgard <mans@mansr.com>2011-07-20 10:19:36 +0100
commite23a05ab0605693aa715b95120bc0132079ded06 (patch)
tree5af769776f98f70dd189735a97aa1b8510583ba0 /libavcodec/sp5xdec.c
parent69619a13c3fef940cba545cf0a283ff22771dd71 (diff)
Fix incorrect max_lowres values
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/sp5xdec.c')
-rw-r--r--libavcodec/sp5xdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sp5xdec.c b/libavcodec/sp5xdec.c
index 6726c18ca9..ae25733530 100644
--- a/libavcodec/sp5xdec.c
+++ b/libavcodec/sp5xdec.c
@@ -104,7 +104,7 @@ AVCodec ff_sp5x_decoder = {
sp5x_decode_frame,
CODEC_CAP_DR1,
NULL,
- .max_lowres = 5,
+ .max_lowres = 3,
.long_name = NULL_IF_CONFIG_SMALL("Sunplus JPEG (SP5X)"),
};