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/video_out/video_out_aa.c | |
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/video_out/video_out_aa.c')
-rw-r--r-- | src/video_out/video_out_aa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c index a96d089d7..52b67f65a 100644 --- a/src/video_out/video_out_aa.c +++ b/src/video_out/video_out_aa.c @@ -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_aa.c,v 1.11 2001/07/24 12:57:30 guenter Exp $ + * $Id: video_out_aa.c,v 1.12 2001/09/26 17:19:49 jkeil Exp $ * * video_out_aa.c, ascii-art output plugin for xine * @@ -249,7 +249,7 @@ static int aa_set_property (vo_driver_t *this_gen, aa_driver_t *this = (aa_driver_t*) this_gen; if ( property == VO_PROP_ASPECT_RATIO) { - if (value>ASPECT_DVB) + if (value>=NUM_ASPECT_RATIOS) value = ASPECT_AUTO; this->user_ratio = value; |