[Xfce4-commits] <parole:bluesabre/gtk3> Fix aspect ratio.
Sean Davis
noreply at xfce.org
Sun Aug 11 15:16:22 CEST 2013
Updating branch refs/heads/bluesabre/gtk3
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 file changed, 1 insertion(+), 1 deletion(-)
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