diff options
author | phintuka <phintuka> | 2008-11-19 22:53:04 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-19 22:53:04 +0000 |
commit | 678e1c03562cff861fe60748576293392278f87e (patch) | |
tree | b2443db8a3fc8731d702c2fbaba861efa09e8cce | |
parent | 48f84bb4b9870189254321188f4899efcd5ef7b0 (diff) | |
download | xineliboutput-678e1c03562cff861fe60748576293392278f87e.tar.gz xineliboutput-678e1c03562cff861fe60748576293392278f87e.tar.bz2 |
New file
-rw-r--r-- | vo_props.h | 26 | ||||
-rw-r--r-- | xine/vo_props.h | 26 |
2 files changed, 52 insertions, 0 deletions
diff --git a/vo_props.h b/vo_props.h new file mode 100644 index 00000000..487a2c5f --- /dev/null +++ b/vo_props.h @@ -0,0 +1,26 @@ +/* + * vo_props.h: Extended video-out capabilities and properties + * + * See the main source file 'xineliboutput.c' for copyright information and + * how to reach the author. + * + * $Id: vo_props.h,v 1.1 2008-11-19 22:51:39 phintuka Exp $ + * + */ + +#ifndef XINELIBOUTPUT_VO_PROPS_H_ +#define XINELIBOUTPUT_VO_PROPS_H_ + + +/* output can scale OSD */ +#define VO_CAP_OSDSCALING 0x01000000 + +/* enable/disable OSD scaling */ +#define VO_PROP_OSD_SCALING 0x1001 +/* OSD width */ +#define VO_PROP_OSD_WIDTH 0x1002 +/* OSD height */ +#define VO_PROP_OSD_HEIGHT 0x1003 + + +#endif /* XINELIBOUTPUT_VO_PROPS_H_ */ diff --git a/xine/vo_props.h b/xine/vo_props.h new file mode 100644 index 00000000..8cc04632 --- /dev/null +++ b/xine/vo_props.h @@ -0,0 +1,26 @@ +/* + * vo_props.h: Extended video-out capabilities and properties + * + * See the main source file 'xineliboutput.c' for copyright information and + * how to reach the author. + * + * $Id: vo_props.h,v 1.1 2008-11-19 22:53:04 phintuka Exp $ + * + */ + +#ifndef XINELIBOUTPUT_VO_PROPS_H_ +#define XINELIBOUTPUT_VO_PROPS_H_ + + +/* output can scale OSD */ +#define VO_CAP_OSDSCALING 0x01000000 + +/* enable/disable OSD scaling */ +#define VO_PROP_OSD_SCALING 0x1001 +/* OSD width */ +#define VO_PROP_OSD_WIDTH 0x1002 +/* OSD height */ +#define VO_PROP_OSD_HEIGHT 0x1003 + + +#endif /* XINELIBOUTPUT_VO_PROPS_H_ */ |