summaryrefslogtreecommitdiffstats
path: root/gtk/src
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-05-04 21:04:32 +0000
committerjstebbins <[email protected]>2009-05-04 21:04:32 +0000
commit75d5f5f6e4064dae500ea3d3b034f3bfbf2393b8 (patch)
treebacb2aa306f229423f5117c0eb457429eca9b74f /gtk/src
parentf0ac9aeb7031f065ef0e99804f725ddc64ca5b02 (diff)
LinGui: arg! and remove debuggin output
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2382 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src')
-rw-r--r--gtk/src/hb-backend.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/src/hb-backend.c b/gtk/src/hb-backend.c
index 46e3e9d3f..64b7bf7be 100644
--- a/gtk/src/hb-backend.c
+++ b/gtk/src/hb-backend.c
@@ -4089,7 +4089,6 @@ ghb_get_preview_image(
c2 = ghb_settings_get_int(settings, "PictureLeftCrop");
c3 = ghb_settings_get_int(settings, "PictureRightCrop");
-printf("dims %dx%d\n", w, h);
gdouble xscale = (gdouble)w / (gdouble)(title->width - c2 - c3);
gdouble yscale = (gdouble)h / (gdouble)(title->height - c0 - c1);
@@ -4128,7 +4127,7 @@ printf("dims %dx%d\n", w, h);
w *= (gdouble)dstWidth / orig_w;
h *= (gdouble)dstHeight / orig_h;
}
- g_message("scaled %d x %d", dstWidth, dstHeight);
+ g_debug("scaled %d x %d", dstWidth, dstHeight);
GdkPixbuf *scaled_preview;
scaled_preview = gdk_pixbuf_scale_simple(preview, dstWidth, dstHeight, GDK_INTERP_HYPER);
if (ghb_settings_get_boolean(settings, "show_crop"))