mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
gstffmpegdec: Don't enable xvmc decoders, we can't support the output
This commit is contained in:
parent
5678ff1ac0
commit
cc4d502d30
1 changed files with 7 additions and 0 deletions
|
@ -2810,6 +2810,13 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
|||
goto next;
|
||||
}
|
||||
|
||||
if (g_str_has_suffix (in_plugin->name, "_xvmc")) {
|
||||
GST_DEBUG
|
||||
("Ignoring XVMC decoder %s. We can't handle this outside of ffmpeg",
|
||||
in_plugin->name);
|
||||
goto next;
|
||||
}
|
||||
|
||||
GST_DEBUG ("Trying plugin %s [%s]", in_plugin->name, in_plugin->long_name);
|
||||
|
||||
/* no codecs for which we're GUARANTEED to have better alternatives */
|
||||
|
|
Loading…
Reference in a new issue