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

omxil: Skip OMX.SEC.WMV.Decoder

This one doesn't seem to work for either VC1 or WMV3 at the moment
(on Android 4.1.2 on Galaxy S3), while OMX.SEC.vc1.dec works (for
both codecs).
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a8e6ff47
......@@ -1009,6 +1009,9 @@ loaded:
/* Some nVidia codec with DRM */
if (!strncmp(p_sys->ppsz_components[i], "OMX.Nvidia.h264.decode.secure", 29))
continue;
/* Use VC1 decoder for WMV3 for now */
if (!strcmp(p_sys->ppsz_components[i], "OMX.SEC.WMV.Decoder"))
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