diff --git a/ChangeLog b/ChangeLog index 1ff39fe7ba..34df79b403 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-25 Ronald S. Bultje + + * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter): + We sometimes need parsers for playback, so add those too. + 2004-11-25 Ronald S. Bultje * configure.ac: diff --git a/gst/playback/gstdecodebin.c b/gst/playback/gstdecodebin.c index 9c16bcea59..f9a3ba57eb 100644 --- a/gst/playback/gstdecodebin.c +++ b/gst/playback/gstdecodebin.c @@ -242,7 +242,8 @@ gst_decode_bin_factory_filter (GstPluginFeature * feature, klass = gst_element_factory_get_klass (GST_ELEMENT_FACTORY (feature)); /* only demuxers and decoders can play */ - if (strstr (klass, "Demux") == NULL && strstr (klass, "Decoder") == NULL) { + if (strstr (klass, "Demux") == NULL && + strstr (klass, "Decoder") == NULL && strstr (klass, "Parse") == NULL) { return FALSE; }