diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-17 10:32:45 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-17 10:32:45 +0000 |
commit | 186e9b1e42f4fd1669fdef2573a99691cd4f97f6 (patch) | |
tree | bbfeed7a6f3d3a8b4dc679d99e0db17e5f5cb2ef | |
parent | 564a6fb15ca31e3b9470e0687ff4f15f2fa92094 (diff) | |
download | xine-lib-186e9b1e42f4fd1669fdef2573a99691cd4f97f6.tar.gz xine-lib-186e9b1e42f4fd1669fdef2573a99691cd4f97f6.tar.bz2 |
be a bit more tolerant
CVS patchset: 2678
CVS date: 2002/09/17 10:32:45
-rw-r--r-- | src/xine-engine/vo_scale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/vo_scale.c b/src/xine-engine/vo_scale.c index 624e1a37f..cfb9b1869 100644 --- a/src/xine-engine/vo_scale.c +++ b/src/xine-engine/vo_scale.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: vo_scale.c,v 1.12 2002/09/16 13:17:49 mroi Exp $ + * $Id: vo_scale.c,v 1.13 2002/09/17 10:32:45 mroi Exp $ * * Contains common code to calculate video scaling parameters. * In short, it will map frame dimensions to screen/window size. @@ -99,7 +99,7 @@ void vo_scale_compute_ideal_size (vo_scale_t *this) { assert (this->gui_pixel_aspect != 0.0); if (fabs (this->video_pixel_aspect / this->gui_pixel_aspect - 1.0) - < 0.005) { + < 0.01) { this->video_pixel_aspect = this->gui_pixel_aspect; } |