mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 15:49:54 +00:00
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
2 changed files with 7 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue