opusenc: Remove g_warnings() for the deprecated audio property
authorSebastian Dröge <sebastian@centricular.com>
Wed, 18 Feb 2015 15:41:25 +0000 (17:41 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 18 Feb 2015 15:47:50 +0000 (17:47 +0200)
Otherwise there are g_warnings() already when just using gst-inspect or
dumping a pipeline graph.

ext/opus/gstopusenc.c

index 3413a09..603fad8 100644 (file)
@@ -981,8 +981,6 @@ gst_opus_enc_get_property (GObject * object, guint prop_id, GValue * value,
 
   switch (prop_id) {
     case PROP_AUDIO:
-      g_warning
-          ("opusenc's audio property is obsolete, use audio-type instead");
       g_value_set_boolean (value,
           enc->audio_type == OPUS_APPLICATION_AUDIO ? TRUE : FALSE);
       break;
@@ -1046,8 +1044,6 @@ gst_opus_enc_set_property (GObject * object, guint prop_id,
 
   switch (prop_id) {
     case PROP_AUDIO:
-      g_warning
-          ("opusenc's audio property is obsolete, use audio-type instead");
       enc->audio_type =
           g_value_get_boolean (value) ? OPUS_APPLICATION_AUDIO :
           OPUS_APPLICATION_VOIP;