ext/ffmpeg/gstffmpegdemux.c: register yuv4mpegpipe demuxer with MARGINAL rank to make it also typically available for...

Original commit message from CVS:
Patch by: Mark Nauwelaerts <manauw@skynet.be>
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_register):
register yuv4mpegpipe demuxer with MARGINAL rank to
make it also typically available for auto-plugging. Fixes #399108.
This commit is contained in:
Mark Nauwelaerts 2007-01-26 12:12:31 +00:00 committed by Wim Taymans
parent 7dd3df72a1
commit 5ad0d8bfee
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2007-01-26 Wim Taymans <wim@fluendo.com>
Patch by: Mark Nauwelaerts <manauw@skynet.be>
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_register):
register yuv4mpegpipe demuxer with MARGINAL rank to
make it also typically available for auto-plugging. Fixes #399108.
2007-01-22 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Martin Szulecki <gnomebugzilla at sukimashita com>

View file

@ -1506,7 +1506,9 @@ gst_ffmpegdemux_register (GstPlugin * plugin)
!strcmp (in_plugin->name, "ea") ||
!strcmp (in_plugin->name, "daud") ||
!strcmp (in_plugin->name, "avs") ||
!strcmp (in_plugin->name, "aiff") || !strcmp (in_plugin->name, "4xm"))
!strcmp (in_plugin->name, "aiff") ||
!strcmp (in_plugin->name, "4xm") ||
!strcmp(in_plugin->name, "yuv4mpegpipe"))
rank = GST_RANK_MARGINAL;
else
rank = GST_RANK_NONE;