diff options
author | phintuka <phintuka> | 2011-01-16 12:48:44 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2011-01-16 12:48:44 +0000 |
commit | acadaa22bbedbfe3edd6cfb50a48d887cd107853 (patch) | |
tree | a51c4d2f97d30a52919e5e936e3f22e920ef50b4 | |
parent | 09391a5ca20ee66d113e44473401fda376f0e388 (diff) | |
download | xineliboutput-acadaa22bbedbfe3edd6cfb50a48d887cd107853.tar.gz xineliboutput-acadaa22bbedbfe3edd6cfb50a48d887cd107853.tar.bz2 |
Added new OSD commands:
- uncompressed LUT8 and ARGB OSD
- HDMV PG compressed OSD
-rw-r--r-- | xine_osd_command.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xine_osd_command.h b/xine_osd_command.h index 6d932979..c1550116 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.15 2010-03-13 23:32:24 phintuka Exp $ + * $Id: xine_osd_command.h,v 1.16 2011-01-16 12:48:44 phintuka Exp $ * */ @@ -33,6 +33,9 @@ typedef enum { OSD_Commit = 7, /* All OSD areas have been updated, commit changes to display */ OSD_Flush = 8, /* Flush all pending OSD operations immediately */ OSD_VideoWindow = 9, /* Set video window inside OSD */ + OSD_Set_HDMV = 10, /* Create/update OSD window. Data is RLE compressed. */ + OSD_Set_LUT8 = 11, /* Create/update OSD window. Data is uncompressed. */ + OSD_Set_ARGB = 12, /* Create/update OSD window. Data is uncompressed. */ } osd_command_id_t; #define OSDFLAG_YUV_CLUT 0x01 /* palette is in YUV format */ |