diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-10 14:04:41 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-07-10 14:04:41 +0000 |
commit | c636a67577b49a714e4f5919ab1073b79979de37 (patch) | |
tree | 1cb1e305ecf429495665aac23e98d1727ed46d11 /src/video_out/video_out_opengl.c | |
parent | b1fcd11f4bdc65521c4d7b6da7aae7d074f74061 (diff) | |
download | xine-lib-c636a67577b49a714e4f5919ab1073b79979de37.tar.gz xine-lib-c636a67577b49a714e4f5919ab1073b79979de37.tar.bz2 |
handle freshly introduced pan&scan aspect like anamorphic aspect
CVS patchset: 2247
CVS date: 2002/07/10 14:04:41
Diffstat (limited to 'src/video_out/video_out_opengl.c')
-rw-r--r-- | src/video_out/video_out_opengl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 3b554012b..b7d376fbc 100644 --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.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_opengl.c,v 1.12 2002/06/21 19:26:57 miguelfreitas Exp $ + * $Id: video_out_opengl.c,v 1.13 2002/07/10 14:04:41 mroi Exp $ * * video_out_glut.c, glut based OpenGL rendering interface for xine * Matthias Hopf <mat@mshopf.de> @@ -418,6 +418,7 @@ static void opengl_compute_ideal_size (opengl_driver_t *this, case ASPECT_AUTO: switch (ratio_code) { case XINE_ASPECT_RATIO_ANAMORPHIC: /* anamorphic */ + case XINE_ASPECT_RATIO_PAN_SCAN: /* we display pan&scan as widescreen */ desired_ratio = 16.0 /9.0; break; case XINE_ASPECT_RATIO_211_1: /* 2.11:1 */ |