Commit f10427d0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

omxil: Blacklist nVidia secure codec

parent 0f4b97b0
...@@ -980,6 +980,9 @@ loaded: ...@@ -980,6 +980,9 @@ loaded:
* has got a working OMX.qcom.video.decoder.avc instead though. */ * has got a working OMX.qcom.video.decoder.avc instead though. */
if (!strncmp(p_sys->ppsz_components[i], "OMX.ARICENT.", 12)) if (!strncmp(p_sys->ppsz_components[i], "OMX.ARICENT.", 12))
continue; continue;
/* Some nVidia codec with DRM */
if (!strncmp(p_sys->ppsz_components[i], "OMX.Nvidia.h264.decode.secure", 29))
continue;
#endif #endif
omx_error = InitialiseComponent(p_dec, p_sys->ppsz_components[i], omx_error = InitialiseComponent(p_dec, p_sys->ppsz_components[i],
&p_sys->omx_handle); &p_sys->omx_handle);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment