X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fgtk2%2Fproducer_pixbuf.c;h=81255d737760ec16005caff735365ce2e600c414;hb=a0f5ab7bd6445ba7a3e5a366bcb893a31dce34c7;hp=8a1d3a3060756ddce4f6b30754e993d35ca97e96;hpb=8691b6464c35a77ae001b9843891a90dd9fd3d50;p=melted diff --git a/src/modules/gtk2/producer_pixbuf.c b/src/modules/gtk2/producer_pixbuf.c index 8a1d3a3..81255d7 100644 --- a/src/modules/gtk2/producer_pixbuf.c +++ b/src/modules/gtk2/producer_pixbuf.c @@ -250,7 +250,7 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i { GdkPixbuf *temp = pixbuf; GdkPixbuf *scaled = gdk_pixbuf_scale_simple( pixbuf, - (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 54.0/59.0), + (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 45.0/48.0), gdk_pixbuf_get_height( pixbuf ), GDK_INTERP_HYPER ); pixbuf = scaled; g_object_unref( temp ); @@ -259,7 +259,7 @@ static int producer_get_frame( mlt_producer producer, mlt_frame_ptr frame, int i { GdkPixbuf *temp = pixbuf; GdkPixbuf *scaled = gdk_pixbuf_scale_simple( pixbuf, - (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 11.0/10.0 ), + (gint) ( (float) gdk_pixbuf_get_width( pixbuf ) * 9.0/8.0 ), gdk_pixbuf_get_height( pixbuf ), GDK_INTERP_HYPER ); pixbuf = scaled; g_object_unref( temp );