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 /src/xine-engine/video_out.h | |
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 'src/xine-engine/video_out.h')
-rw-r--r-- | src/xine-engine/video_out.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/video_out.h b/src/xine-engine/video_out.h index 087f177a3..48e85e56b 100644 --- a/src/xine-engine/video_out.h +++ b/src/xine-engine/video_out.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.h,v 1.21 2001/09/26 01:18:19 guenter Exp $ + * $Id: video_out.h,v 1.22 2001/09/26 17:19:49 jkeil Exp $ * * * xine version of video_out.h @@ -192,6 +192,8 @@ struct vo_instance_s { #define ASPECT_ANAMORPHIC 1 /* 16:9 */ #define ASPECT_FULL 2 /* 4:3 */ #define ASPECT_DVB 3 /* 1:2 */ +#define ASPECT_SQUARE 4 /* square pels */ +#define NUM_ASPECT_RATIOS 5 /* get_frame flags */ |