diff options
author | phintuka <phintuka> | 2010-05-30 22:05:31 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-05-30 22:05:31 +0000 |
commit | 917e8a7e88b252eafca6030136966e52363dbacb (patch) | |
tree | 542a73b5ddc6ca2f63fb0f3c3cbbcf112a26814d | |
parent | 81391c091b8cfe295e5656093ac8de3ed962a8ac (diff) | |
download | xineliboutput-917e8a7e88b252eafca6030136966e52363dbacb.tar.gz xineliboutput-917e8a7e88b252eafca6030136966e52363dbacb.tar.bz2 |
hud_osd_command(): added OSD_VideoWindow case
-rw-r--r-- | xine_sxfe_frontend.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c index 1035362d..23acb08f 100644 --- a/xine_sxfe_frontend.c +++ b/xine_sxfe_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_sxfe_frontend.c,v 1.123 2010-05-30 21:57:58 phintuka Exp $ + * $Id: xine_sxfe_frontend.c,v 1.124 2010-05-30 22:05:31 phintuka Exp $ * */ @@ -739,6 +739,10 @@ static int hud_osd_command(frontend_t *this_gen, struct osd_command_s *cmd) LOGDBG("HUD osd set YUV"); break; + case OSD_VideoWindow: + LOGDBG("HUD osd VideoWindow"); + break; + case OSD_Close: /* Close OSD window */ LOGDBG("HUD osd Close"); if (!(cmd->flags & OSDFLAG_TOP_LAYER)) |