mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-25 07:26:29 +00:00
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).
This commit is contained in:
parent
23ec2eb189
commit
ca1f196979
2 changed files with 8 additions and 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>
|
2006-09-23 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
|
* gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_loop), (gst_rtspsrc_send),
|
||||||
|
|
|
@ -36,7 +36,7 @@ GST_ELEMENT_DETAILS ("JPEG image decoder",
|
||||||
|
|
||||||
#define MIN_WIDTH 16
|
#define MIN_WIDTH 16
|
||||||
#define MAX_WIDTH 4096
|
#define MAX_WIDTH 4096
|
||||||
#define MIN_HEIGHT 16
|
#define MIN_HEIGHT 8
|
||||||
#define MAX_HEIGHT 4096
|
#define MAX_HEIGHT 4096
|
||||||
|
|
||||||
#define DEFAULT_IDCT_METHOD JDCT_FASTEST
|
#define DEFAULT_IDCT_METHOD JDCT_FASTEST
|
||||||
|
|
Loading…
Reference in a new issue