From: Vincent Penquerc'h Date: Wed, 5 Oct 2011 14:47:06 +0000 (+0100) Subject: opusenc: use debug level for debug info, not error X-Git-Tag: 1.10.4~478^2~117^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca14e2e0617f466aef588adb5b3cebec80a2d7a2;p=platform%2Fupstream%2Fgst-plugins-base.git opusenc: use debug level for debug info, not error https://bugzilla.gnome.org/show_bug.cgi?id=660999 --- diff --git a/ext/opus/gstopusenc.c b/ext/opus/gstopusenc.c index 9fc3075..f25cbca 100644 --- a/ext/opus/gstopusenc.c +++ b/ext/opus/gstopusenc.c @@ -270,7 +270,7 @@ gst_opus_enc_sink_setcaps (GstPad * pad, GstCaps * caps) gst_caps_unref (otherpadcaps); } - GST_ERROR_OBJECT (pad, "channels=%d rate=%d frame-size=%d", + GST_DEBUG_OBJECT (pad, "channels=%d rate=%d frame-size=%d", enc->n_channels, enc->sample_rate, enc->frame_size); switch (enc->frame_size) { case 2: @@ -296,7 +296,7 @@ gst_opus_enc_sink_setcaps (GstPad * pad, GstCaps * caps) return FALSE; break; } - GST_ERROR ("frame_samples %d", enc->frame_samples); + GST_DEBUG_OBJECT (pad, "frame_samples %d", enc->frame_samples); gst_opus_enc_setup (enc);