diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-16 22:43:24 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-02-16 22:43:24 +0000 |
commit | f030f9e939d8949d43a6a4c11fc1e7c16617ca8d (patch) | |
tree | 75216b2ea75f8ca2a12c6960571ea8a03e216d93 /include | |
parent | 0068b2d4877b794ed7112e4c49ee0deb214193d2 (diff) | |
download | xine-lib-f030f9e939d8949d43a6a4c11fc1e7c16617ca8d.tar.gz xine-lib-f030f9e939d8949d43a6a4c11fc1e7c16617ca8d.tar.bz2 |
beginning of video_out_driver changes
- driver will ask gui for output size on every frame
- shm driver has a seperate yuv2rgb converter instance for every frame
- all drivers disabled except xshm, until they're fixed
I'm planning to introduce a queue of video_out_events in video_out.c,
so events are delivered by video_out_loop which means that all driver
functions are called from the same thread (no locking necessary, should
help the opengl driver)
CVS patchset: 1499
CVS date: 2002/02/16 22:43:24
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index a6eeeaf2d..33cb03340 100644 --- a/include/xine.h.tmpl.in +++ b/include/xine.h.tmpl.in @@ -28,7 +28,7 @@ \endverbatim */ /* - * $Id: xine.h.tmpl.in,v 1.80 2002/02/12 23:31:32 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.81 2002/02/16 22:43:24 guenter Exp $ * */ @@ -198,20 +198,15 @@ int xine_check_version(int major, int minor, int sub); */ #define VO_CAP_COPIES_IMAGE 0x00000001 /** - * \def VO_CAP_RGB - * driver can handle 24bit rgb pictures - */ -#define VO_CAP_RGB 0x00000002 -/** * \def VO_CAP_YV12 * driver can handle YUV 4:2:0 pictures */ -#define VO_CAP_YV12 0x00000004 +#define VO_CAP_YV12 0x00000002 /** * \def VO_CAP_YUY2 * driver can handle YUY2 pictures */ -#define VO_CAP_YUY2 0x00000008 +#define VO_CAP_YUY2 0x00000004 /** * \def VO_CAP_HUE * Driver can set HUE value. |