From 477cb58640f1bd07317f1b54148338b75cb2b1fa Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Tue, 29 Sep 2009 00:01:59 +0100 Subject: jpegdec: fix 'unused variable' compiler warning when compiling with GST_DISABLE_GST_DEBUG --- ext/jpeg/gstjpegdec.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'ext') diff --git a/ext/jpeg/gstjpegdec.c b/ext/jpeg/gstjpegdec.c index 0f12be76..bb3961d9 100644 --- a/ext/jpeg/gstjpegdec.c +++ b/ext/jpeg/gstjpegdec.c @@ -856,7 +856,6 @@ gst_jpeg_dec_chain (GstPad * pad, GstBuffer * buf) guint img_len, outsize; gint width, height; gint r_h, r_v; - gint i; guint code, hdr_ok; GstClockTime timestamp, duration; @@ -951,10 +950,14 @@ gst_jpeg_dec_chain (GstPad * pad, GstBuffer * buf) dec->cinfo.num_components, dec->cinfo.comps_in_scan); #ifndef GST_DISABLE_GST_DEBUG - for (i = 0; i < dec->cinfo.comps_in_scan; ++i) { - GST_LOG_OBJECT (dec, "[%d] h_samp_factor=%d, v_samp_factor=%d", i, - dec->cinfo.cur_comp_info[i]->h_samp_factor, - dec->cinfo.cur_comp_info[i]->v_samp_factor); + { + gint i; + + for (i = 0; i < dec->cinfo.comps_in_scan; ++i) { + GST_LOG_OBJECT (dec, "[%d] h_samp_factor=%d, v_samp_factor=%d", i, + dec->cinfo.cur_comp_info[i]->h_samp_factor, + dec->cinfo.cur_comp_info[i]->v_samp_factor); + } } #endif -- cgit