diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:23:21 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:23:21 +0000 |
commit | fa19bf6548378144d233d9cd3b898b98c97f3748 (patch) | |
tree | 4cce70023b7f3a49783144ad4aa4218c3c86631b | |
parent | 7b9cc203fc17e946c0d99dd7e6bc042179920897 (diff) | |
download | xine-lib-fa19bf6548378144d233d9cd3b898b98c97f3748.tar.gz xine-lib-fa19bf6548378144d233d9cd3b898b98c97f3748.tar.bz2 |
another zoom patch from Thibaut MATTERN
CVS patchset: 1534
CVS date: 2002/03/01 09:23:21
-rw-r--r-- | src/video_out/video_out_xv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c index 6a5138850..35669a342 100644 --- a/src/video_out/video_out_xv.c +++ b/src/video_out/video_out_xv.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_xv.c,v 1.102 2002/02/28 18:32:57 guenter Exp $ + * $Id: video_out_xv.c,v 1.103 2002/03/01 09:23:21 guenter Exp $ * * video_out_xv.c, X11 video extension interface for xine * @@ -615,7 +615,7 @@ static void xv_compute_ideal_size (xv_driver_t *this) { * aspect ratio */ - image_ratio = (double) this->displayed_width / (double) this->displayed_height; + image_ratio = (double) this->delivered_width / (double) this->delivered_height; switch (this->props[VO_PROP_ASPECT_RATIO].value) { case ASPECT_AUTO: |