summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-02-17 10:46:34 +0000
committerphintuka <phintuka>2009-02-17 10:46:34 +0000
commitc746e40389bb472f780163dbc85b72777466977c (patch)
tree702b989610e542a1f652f89c0b19bb130208ba97
parent4a2f12cfe11bff6dc5cd6802c6e93bac86ae956a (diff)
downloadxineliboutput-c746e40389bb472f780163dbc85b72777466977c.tar.gz
xineliboutput-c746e40389bb472f780163dbc85b72777466977c.tar.bz2
Fixed size limit for generated blank images
-rw-r--r--xine_input_vdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c
index 89bc3a94..68f06ffd 100644
--- a/xine_input_vdr.c
+++ b/xine_input_vdr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_input_vdr.c,v 1.230 2009-02-16 16:28:21 phintuka Exp $
+ * $Id: xine_input_vdr.c,v 1.231 2009-02-17 10:46:34 phintuka Exp $
*
*/
@@ -1610,7 +1610,7 @@ static void queue_blank_yv12(vdr_input_plugin_t *this)
int width = _x_stream_info_get(this->stream, XINE_STREAM_INFO_VIDEO_WIDTH);
int height = _x_stream_info_get(this->stream, XINE_STREAM_INFO_VIDEO_HEIGHT);
- if (width >= 360 && height >= 288 && width <= 1920 && height <= 1024) {
+ if (width >= 360 && height >= 288 && width <= 1920 && height <= 1200) {
this->class->xine->port_ticket->acquire(this->class->xine->port_ticket, 1);
img = this->stream->video_out->get_frame (this->stream->video_out,
width, height,