diff -r 567bb019e3e3 -r 7e817e7e631c gst_plugins_base/gst-libs/gst/interfaces/tunerchannel.c --- a/gst_plugins_base/gst-libs/gst/interfaces/tunerchannel.c Tue Aug 31 15:30:33 2010 +0300 +++ b/gst_plugins_base/gst-libs/gst/interfaces/tunerchannel.c Wed Sep 01 12:16:41 2010 +0100 @@ -25,24 +25,6 @@ #include "tunerchannel.h" -/** - * SECTION:gsttunerchannel - * @short_description: A channel from an element implementing the #GstTuner - * interface. - * - * - * The #GstTunerChannel object is provided by an element implementing - * the #GstTuner interface. - * - * - * GstTunerChannel provides a name and flags to determine the type and - * capabilities of the channel. If the GST_TUNER_CHANNEL_FREQUENCY flag is - * set, then the channel also information about the minimum and maximum - * frequency, and range of the reported signal strength. - * - * - */ - enum { /* FILL ME */ @@ -96,28 +78,12 @@ parent_class = g_type_class_peek_parent (klass); - /** - * GstTunerChannel::frequency-changed: - * @tunerchannel: The #GstTunerChannel - * @frequency: The new frequency (an unsigned long) - * - * Reports that the current frequency has changed. - */ signals[SIGNAL_FREQUENCY_CHANGED] = g_signal_new ("frequency-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstTunerChannelClass, frequency_changed), NULL, NULL, g_cclosure_marshal_VOID__ULONG, G_TYPE_NONE, 1, G_TYPE_ULONG); - /** - * GstTunerChannel::signal-changed: - * @tunerchannel: The #GstTunerChannel - * @signal: The new signal strength (an integer) - * - * Reports that the signal strength has changed. - * - * See Also: gst_tuner_signal_strength() - */ signals[SIGNAL_SIGNAL_CHANGED] = g_signal_new ("signal-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,