diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-09-25 09:15:10 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-09-25 09:15:10 +0000 |
commit | ca1f1969791957e2971f47fbef5bd1e7285ea3bb (patch) | |
tree | d34613d1646faee1c0c3295041ff3c36d656dda0 | |
parent | 23ec2eb18952053f58dfcad78eac39a545d11e50 (diff) |
ext/jpeg/gstjpegdec.c: our code should handle that fine. Some of the buttons on the apple trailer site are apparently...
Original commit message from CVS:
* ext/jpeg/gstjpegdec.c:
Set minimum height to 8 (from 16), our code should handle
that fine. Some of the buttons on the apple trailer site
are apparently only 15 pixels high (see #357470).
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ext/jpeg/gstjpegdec.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2006-09-25 Tim-Philipp Müller <tim at centricular dot net> + + * ext/jpeg/gstjpegdec.c: + Set minimum height to 8 (from 16), our code should handle + that fine. Some of the buttons on the apple trailer site + are apparently only 15 pixels high (see #357470). + 2006-09-23 Wim Taymans <wim@fluendo.com> * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send), diff --git a/ext/jpeg/gstjpegdec.c b/ext/jpeg/gstjpegdec.c index aebfe443..c6d37f71 100644 --- a/ext/jpeg/gstjpegdec.c +++ b/ext/jpeg/gstjpegdec.c @@ -36,7 +36,7 @@ GST_ELEMENT_DETAILS ("JPEG image decoder", #define MIN_WIDTH 16 #define MAX_WIDTH 4096 -#define MIN_HEIGHT 16 +#define MIN_HEIGHT 8 #define MAX_HEIGHT 4096 #define DEFAULT_IDCT_METHOD JDCT_FASTEST |