diff options
Diffstat (limited to 'frontend.c')
-rw-r--r-- | frontend.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.c,v 1.14 2006-09-03 14:16:19 phintuka Exp $ + * $Id: frontend.c,v 1.15 2006-09-04 13:22:55 phintuka Exp $ * */ @@ -415,13 +415,14 @@ bool cXinelibThread::Play_Mpeg2_ES(const uchar *data, int len, int streamID) bool cXinelibThread::QueueBlankDisplay(void) { TRACEF("cXinelibThread::BlankDisplay"); - +#if 0 extern const unsigned char v_mpg_black[]; // black_720x576.c extern const int v_mpg_black_length; - int r = Play_Mpeg2_ES(v_mpg_black, v_mpg_black_length, VIDEO_STREAM); + Play_Mpeg2_ES(v_mpg_black, v_mpg_black_length, VIDEO_STREAM); +#endif Xine_Control_Sync("BLANK"); - return r; + return true; } bool cXinelibThread::BlankDisplay(void) |