diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2001-09-26 17:19:48 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2001-09-26 17:19:48 +0000 |
commit | b49089c65f7cfa2293cb432606d0ac13cb9353f3 (patch) | |
tree | fcf5d3ccdc06a1e46a6917d5344cc83a9e490102 /include | |
parent | 105564c9ce5bea7587776e8cf39b2a3681b6d573 (diff) | |
download | xine-lib-b49089c65f7cfa2293cb432606d0ac13cb9353f3.tar.gz xine-lib-b49089c65f7cfa2293cb432606d0ac13cb9353f3.tar.bz2 |
- Trying to fix video window size for mpeg streams with
aspect_ratio_information==1 ("square source pels")
- Add aspect_ratio_information==4 (2.21:1)
- Aspect ratio switching ('a' key) now cycles through "square source pels", too.
CVS patchset: 698
CVS date: 2001/09/26 17:19:48
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.tmpl.in | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in index e088a505e..9a804c30f 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.41 2001/09/16 23:13:45 f1rmb Exp $ + * $Id: xine.h.tmpl.in,v 1.42 2001/09/26 17:19:48 jkeil Exp $ * */ @@ -317,6 +317,18 @@ int xine_check_version(int major, int minor, int sub); * \sa VO_PROP_ASPECT_RATIO */ #define ASPECT_DVB 3 +/** + * \def ASPECT_SQUARE + * Set aspect ration to square pels. + * \sa VO_PROP_ASPECT_RATIO + */ +#define ASPECT_SQUARE 4 +/** + * \def NUM_ASPECT_RATIOS + * Number of aspect ratios supported for VO_PROP_ASPECT_RATIO property. + * \sa VO_PROP_ASPECT_RATIO + */ +#define NUM_ASPECT_RATIOS 5 /** @} end of video_ratio */ |