summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2009-08-19 16:37:21 +0000
committerphintuka <phintuka>2009-08-19 16:37:21 +0000
commitcc2378eb02bcd218c7b66d1857591f5126663675 (patch)
tree8d89029e0752da20d57785341f7c6b308924b199
parent3d536cb691cba9157f357c8024099590d14a4a6e (diff)
downloadxineliboutput-cc2378eb02bcd218c7b66d1857591f5126663675.tar.gz
xineliboutput-cc2378eb02bcd218c7b66d1857591f5126663675.tar.bz2
Signal window size to VDR at startup
-rw-r--r--xine_frontend.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/xine_frontend.c b/xine_frontend.c
index 4c05bbd6..d1004bb9 100644
--- a/xine_frontend.c
+++ b/xine_frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_frontend.c,v 1.98 2009-08-19 16:36:20 phintuka Exp $
+ * $Id: xine_frontend.c,v 1.99 2009-08-19 16:37:21 phintuka Exp $
*
*/
@@ -1099,6 +1099,10 @@ static int fe_xine_play(frontend_t *this_gen)
if(this->playback_finished)
LOGMSG("Error playing " MRL_ID ":// !");
+ char str[128];
+ snprintf(str, sizeof(str), "INFO WINDOW %dx%d", this->width, this->height);
+ this->fe.send_event(&this->fe, str);
+
return !this->playback_finished;
}