Original commit message from CVS:
* gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
* gst/playback/gststreamselector.c:
(gst_stream_selector_set_property):
Comment out broken code that connects to the state-changed signal.
At this point, changing current stream selection is broken, but
stuff like gst-launch playbin current-audio=1 works and filters
to the chosen stream.
+2006-01-16 Jan Schmidt <thaytan@mad.scientist.com>
+
+ * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
+ * gst/playback/gststreamselector.c:
+ (gst_stream_selector_set_property):
+ Comment out broken code that connects to the state-changed signal.
+ At this point, changing current stream selection is broken, but
+ stuff like gst-launch playbin current-audio=1 works and filters
+ to the chosen stream.
+
2006-01-16 Thomas Vander Stichele <thomas at apestaart dot org>
* ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
element = gst_pad_get_parent_element ((GstPad *)
GST_PAD_CAST (stream_info->object));
if (element) {
+#if 0
if (mute) {
g_signal_connect (element, "state-changed",
G_CALLBACK (stream_info_change_state), stream_info);
g_signal_handlers_disconnect_by_func (element,
G_CALLBACK (stream_info_change_state), stream_info);
}
+#endif
gst_object_unref (element);
}
}