diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-02-12 16:45:06 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-02-12 16:45:06 +0000 |
commit | aeca8fd1cf6fe1ee9db910a6d8f1acce5d74c912 (patch) | |
tree | 3e63f59f9813c42fd6aa5c7dec09088d34679c1b | |
parent | a9a8fdfe8fb0b5f3d6f9d395822452a4b5a01385 (diff) | |
download | xine-lib-aeca8fd1cf6fe1ee9db910a6d8f1acce5d74c912.tar.gz xine-lib-aeca8fd1cf6fe1ee9db910a6d8f1acce5d74c912.tar.bz2 |
Add missing VO_CAPs.
CVS patchset: 1495
CVS date: 2002/02/12 16:45:06
-rw-r--r-- | include/xine.h.tmpl.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index e7bd3f90e..eeec00784 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.78 2002/02/06 10:57:15 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.79 2002/02/12 16:45:06 f1rmb Exp $ * */ @@ -192,6 +192,27 @@ int xine_check_version(int major, int minor, int sub); * @{ */ /** + * \def VO_CAP_COPIES_IMAGEE + * driver copies image (i.e. converts it to rgb buffers + * in the private fields of image buffer) + */ +#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 +/** + * \def VO_CAP_YUY2 + * driver can handle YUY2 pictures + */ +#define VO_CAP_YUY2 0x00000008 +/** * \def VO_CAP_HUE * Driver can set HUE value. */ |