diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-06-11 12:56:39 +0300 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-06-11 12:56:39 +0300 |
commit | 85c5b26db3a65050d350407f96e268c9aaf7fc18 (patch) | |
tree | a5a8e66094813962c9cace9a77afdfa12fe4ddf2 | |
parent | f381f0e5cfc9389c42cb208f7d562fc1d9dd6f0b (diff) | |
download | xine-lib-85c5b26db3a65050d350407f96e268c9aaf7fc18.tar.gz xine-lib-85c5b26db3a65050d350407f96e268c9aaf7fc18.tar.bz2 |
Added VO_PROP_MAX_VIDEO_WIDTH and VO_PROP_MAX_VIDEO_HEIGHT
-rw-r--r-- | include/xine/video_out.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/xine/video_out.h b/include/xine/video_out.h index 5a0401160..1712f5d87 100644 --- a/include/xine/video_out.h +++ b/include/xine/video_out.h @@ -266,7 +266,9 @@ struct xine_video_port_s { #define VO_PROP_NOISE_REDUCTION 25 #define VO_PROP_BUFS_TOTAL 26 /* read-only */ #define VO_PROP_BUFS_FREE 27 /* read-only */ -#define VO_NUM_PROPERTIES 28 +#define VO_PROP_MAX_VIDEO_WIDTH 28 /* read-only */ +#define VO_PROP_MAX_VIDEO_HEIGHT 29 /* read-only */ +#define VO_NUM_PROPERTIES 30 /* number of colors in the overlay palette. Currently limited to 256 at most, because some alphablend functions use an 8-bit index into |