diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-01-12 18:03:10 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-01-12 18:03:10 +0000 |
commit | c84802ffef3ee9248ffe4f757a8f5bdf455faef2 (patch) | |
tree | 781be83b06ca997ada09b12fe19a5473c6392897 | |
parent | 49e3bc6e35e2fc3846a5f5ba9232bbdae665b1cd (diff) |
ffmpegdemux: demote swf demuxer to GST_RANK_NONE
SWF doesn't really make sense in our context, don't pretend
to support it. People should use a dedicated swf player for that.
-rw-r--r-- | ext/ffmpeg/gstffmpegdemux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/ffmpeg/gstffmpegdemux.c b/ext/ffmpeg/gstffmpegdemux.c index 6122a40..82e61c9 100644 --- a/ext/ffmpeg/gstffmpegdemux.c +++ b/ext/ffmpeg/gstffmpegdemux.c @@ -1959,7 +1959,7 @@ gst_ffmpegdemux_register (GstPlugin * plugin) ) register_typefind_func = FALSE; - /* Set the rank of demuxers know to work to MARGINAL. + /* Set the rank of demuxers known to work to MARGINAL. * Set demuxers for which we already have another implementation to NONE * Set All others to NONE*/ if (!strcmp (in_plugin->name, "wsvqa") || @@ -1967,7 +1967,6 @@ gst_ffmpegdemux_register (GstPlugin * plugin) !strcmp (in_plugin->name, "wc3movie") || !strcmp (in_plugin->name, "voc") || !strcmp (in_plugin->name, "tta") || - !strcmp (in_plugin->name, "swf") || !strcmp (in_plugin->name, "sol") || !strcmp (in_plugin->name, "smk") || !strcmp (in_plugin->name, "vmd") || |