mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Don't try to use the NVidia DRM codecs
This commit is contained in:
parent
31f0f163bd
commit
f3682a0a6b
1 changed files with 7 additions and 0 deletions
|
@ -1675,6 +1675,13 @@ scan_codecs (GstPlugin * plugin)
|
|||
valid_codec = FALSE;
|
||||
goto next_codec;
|
||||
}
|
||||
|
||||
if (g_str_has_suffix (name_str, ".secure")) {
|
||||
GST_INFO ("Skipping DRM codec '%s'", name_str);
|
||||
valid_codec = FALSE;
|
||||
goto next_codec;
|
||||
}
|
||||
|
||||
/* FIXME: Non-Google codecs usually just don't work and hang forever
|
||||
* or crash when not used from a process that started the Java
|
||||
* VM via the non-public AndroidRuntime class. Can we somehow
|
||||
|
|
Loading…
Reference in a new issue