mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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:
parent
7dd3df72a1
commit
5ad0d8bfee
2 changed files with 11 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue