diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-27 19:19:39 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-27 19:19:39 +0000 |
commit | db3d769d1bee0dcf374c62796df7179a2f568998 (patch) | |
tree | 0bfd2e14aafdc166e481f4777e7fe56f250f0326 | |
parent | a6a97361031e2aceafc43e7d2b708047608fef27 (diff) | |
download | xine-lib-db3d769d1bee0dcf374c62796df7179a2f568998.tar.gz xine-lib-db3d769d1bee0dcf374c62796df7179a2f568998.tar.bz2 |
fix typo (thanks to Zoltán Böszörményi for making me notice it ;)
CVS patchset: 2530
CVS date: 2002/08/27 19:19:39
-rw-r--r-- | src/dxr3/video_out_dxr3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/video_out_dxr3.c b/src/dxr3/video_out_dxr3.c index 7650eaab4..d8643ecf3 100644 --- a/src/dxr3/video_out_dxr3.c +++ b/src/dxr3/video_out_dxr3.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_dxr3.c,v 1.51 2002/08/17 14:30:10 mroi Exp $ + * $Id: video_out_dxr3.c,v 1.52 2002/08/27 19:19:39 mroi Exp $ */ /* mpeg1 encoding video out plugin for the dxr3. @@ -749,7 +749,7 @@ static void dxr3_display_frame(vo_driver_t *this_gen, vo_frame_t *frame_gen) } } if (frame->aspect != this->aspect) - dxr3_set_property(this_gen, VO_PROP_ASPECT_RATIO, frame->vo_frame.ratio); + dxr3_set_property(this_gen, VO_PROP_ASPECT_RATIO, frame->aspect); if (frame->pan_scan && !this->pan_scan) { dxr3_set_property(this_gen, VO_PROP_ZOOM_X, 1); this->pan_scan = 1; |