[Xfce4-commits] <parole:master> Fix aspect ratio.

Sean Davis noreply at xfce.org
Sat Feb 23 03:28:01 CET 2013


Updating branch refs/heads/master
         to 844c4856108f16587378b993b452cb6e7a38f321 (commit)
       from 8120bece1176444dd841aefa4202a23eca1928b4 (commit)

commit 844c4856108f16587378b993b452cb6e7a38f321
Author: Tijl Coosemans <tijl at coosemans.org>
Date:   Fri Feb 22 20:49:01 2013 +0100

    Fix aspect ratio.
    
    Signed-off-by: Sean Davis <smd.seandavis at gmail.com>

 src/gst/parole-gst.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index 47f41a3..1e5689e 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -359,7 +359,7 @@ parole_gst_get_video_output_size (ParoleGst *gst, gint *ret_w, gint *ret_h)
 		    else 
 		    {
 			*ret_w = (guint) gst_util_uint64_scale (video_h, dar_n, dar_d);
-			*ret_h = video_w;
+			*ret_h = video_h;
 		    }
 		    TRACE ("Got best video size %dx%d fraction, %d/%d\n", *ret_w, *ret_h, disp_par_n, disp_par_d);
 		}


More information about the Xfce4-commits mailing list