mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
gstffmpegdec: Disable vdpau decoders. Fixes #573400
This commit is contained in:
parent
2df7d3e960
commit
59796dd0bc
1 changed files with 13 additions and 0 deletions
|
@ -2558,6 +2558,19 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
|||
goto next;
|
||||
}
|
||||
|
||||
/* No vdpau plugins until we can figure out how to properly use them
|
||||
* outside of ffmpeg. */
|
||||
if (!strcmp (in_plugin->name, "h264_vdpau") ||
|
||||
!strcmp (in_plugin->name, "mpeg_vdpau") ||
|
||||
!strcmp (in_plugin->name, "mpeg1_vdpau") ||
|
||||
!strcmp (in_plugin->name, "vc1_vdpau") ||
|
||||
!strcmp (in_plugin->name, "wmv3_vdpau")) {
|
||||
GST_DEBUG
|
||||
("Ignoring VDPAU 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