diff options
author | phintuka <phintuka> | 2008-11-29 22:02:24 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-29 22:02:24 +0000 |
commit | 48c94d3110504bd43bf04dc61cf5c0513f1ec3e0 (patch) | |
tree | 4df87ee572dc2f96a0399cecdca98bebe223455a | |
parent | e91fc4bfa4c770dfbd547c73baab6b18ab40ae35 (diff) | |
download | xineliboutput-48c94d3110504bd43bf04dc61cf5c0513f1ec3e0.tar.gz xineliboutput-48c94d3110504bd43bf04dc61cf5c0513f1ec3e0.tar.bz2 |
Added OSD_Flush : Flush all pending OSD operations immediately
-rw-r--r-- | xine_osd_command.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xine_osd_command.h b/xine_osd_command.h index 5d24bd8b..112570a5 100644 --- a/xine_osd_command.h +++ b/xine_osd_command.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_osd_command.h,v 1.12 2008-04-14 19:58:50 phintuka Exp $ + * $Id: xine_osd_command.h,v 1.13 2008-11-29 22:02:24 phintuka Exp $ * */ @@ -30,7 +30,8 @@ typedef enum { OSD_Move = 4, /* Change x/y position of already created OSD window */ OSD_Close = 5, /* Close OSD window */ OSD_Set_YUV = 6, /* Create/update OSD window. Data is in YUV420 format. */ - OSD_Commit = 7 /* All OSD areas have been updated, commit changes to display */ + OSD_Commit = 7, /* All OSD areas have been updated, commit changes to display */ + OSD_Flush = 8 /* Flush all pending OSD operations immediately */ } osd_command_id_t; #define OSDFLAG_YUV_CLUT 0x01 /* palette is in YUV format */ |