mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
avviddec: Don't expose NVIDIA CUVID decoder
It's not working without further changes on our side, like all hardware decoders in ffmpeg.
This commit is contained in:
parent
1038ae2327
commit
15a17f3f8d
1 changed files with 7 additions and 0 deletions
|
@ -2307,6 +2307,13 @@ gst_ffmpegviddec_register (GstPlugin * plugin)
|
||||||
goto next;
|
goto next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (g_str_has_suffix (in_plugin->name, "_cuvid")) {
|
||||||
|
GST_DEBUG
|
||||||
|
("Ignoring CUVID 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);
|
GST_DEBUG ("Trying plugin %s [%s]", in_plugin->name, in_plugin->long_name);
|
||||||
|
|
||||||
/* no codecs for which we're GUARANTEED to have better alternatives */
|
/* no codecs for which we're GUARANTEED to have better alternatives */
|
||||||
|
|
Loading…
Reference in a new issue