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:
parent
3d7e0b09a2
commit
051fe366bd
@ -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>
|
2004-11-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
@ -242,7 +242,8 @@ gst_decode_bin_factory_filter (GstPluginFeature * feature,
|
|||||||
|
|
||||||
klass = gst_element_factory_get_klass (GST_ELEMENT_FACTORY (feature));
|
klass = gst_element_factory_get_klass (GST_ELEMENT_FACTORY (feature));
|
||||||
/* only demuxers and decoders can play */
|
/* 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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user