inter: fix warnings when gst-inspecting interaudio{src,sink}

The channel property isn't implemented, so don't register it.
This commit is contained in:
Tim-Philipp Müller 2012-03-13 20:50:04 +00:00
parent 689bf4d392
commit 7f70d42837
2 changed files with 4 additions and 1 deletions

View file

@ -151,10 +151,12 @@ gst_inter_audio_sink_class_init (GstInterAudioSinkClass * klass)
base_sink_class->unlock_stop =
GST_DEBUG_FUNCPTR (gst_inter_audio_sink_unlock_stop);
#if 0
g_object_class_install_property (gobject_class, PROP_CHANNEL,
g_param_spec_string ("channel", "Channel",
"Channel name to match inter src and sink elements",
"default", G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
#endif
}
static void

View file

@ -159,11 +159,12 @@ gst_inter_audio_src_class_init (GstInterAudioSrcClass * klass)
base_src_class->prepare_seek_segment =
GST_DEBUG_FUNCPTR (gst_inter_audio_src_prepare_seek_segment);
#if 0
g_object_class_install_property (gobject_class, PROP_CHANNEL,
g_param_spec_string ("channel", "Channel",
"Channel name to match inter src and sink elements",
"default", G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
#endif
}
static void