Commit ec30ee5d authored by Martin Storsjö's avatar Martin Storsjö Committed by Jean-Baptiste Kempf

omxil: Ignore OMX.google.* codecs

These are sw codecs, mostly the same ones that earlier were present
with names starting with OMX.PV. They don't work properly with the
vlc omxil client code at the moment. Using them doesn't have any
significant advantage over our own bundled sw codecs.
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
(cherry picked from commit 94d0697d)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 75755f42
......@@ -921,6 +921,9 @@ loaded:
/* ignore OpenCore software codecs */
if (!strncmp(p_sys->ppsz_components[i], "OMX.PV.", 7))
continue;
/* The same sw codecs, renamed in ICS (perhaps also in honeycomb) */
if (!strncmp(p_sys->ppsz_components[i], "OMX.google.", 11))
continue;
#endif
omx_error = InitialiseComponent(p_dec, p_sys->ppsz_components[i],
&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