gst/playback/gstdecodebin.c: We sometimes need parsers for playback, so add those too.

Original commit message from CVS:
* gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
We sometimes need parsers for playback, so add those too.
This commit is contained in:
Ronald S. Bultje 2004-11-25 20:22:13 +00:00
parent 3d7e0b09a2
commit 051fe366bd
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* 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 <rbultje@ronald.bitfreak.net>
* configure.ac:

View file

@ -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;
}