[vlc-commits] OpenMAX IL: do not use Bellagio software implementation

Rémi Denis-Courmont git at videolan.org
Wed Nov 19 20:24:39 CET 2014


vlc/vlc-2.2 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Nov 18 23:22:22 2014 +0200| [9e49901ee3c853d004f3f6c395af9e30d9e2f41d] | committer: Rémi Denis-Courmont

OpenMAX IL: do not use Bellagio software implementation

This wraps libavcodec in a way that is worse that VLC, e.g. without
hardware acceleration.

(cherry picked from commit 298edea2b51a3dc7b39ae33a3c4bbf476f4e3290)

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=9e49901ee3c853d004f3f6c395af9e30d9e2f41d
---

 modules/codec/omxil/omxil_core.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/modules/codec/omxil/omxil_core.c b/modules/codec/omxil/omxil_core.c
index 66ed161..5fb7722 100644
--- a/modules/codec/omxil/omxil_core.c
+++ b/modules/codec/omxil/omxil_core.c
@@ -57,11 +57,12 @@ static const char *ppsz_dll_list[] =
     "libiomx.so", /* Not used when using IOMX, the lib should already be loaded */
 #elif defined(RPI_OMX)
     "/opt/vc/lib/libopenmaxil.so",  /* Broadcom IL core */
-#else
+#elif 1
     "libOMX_Core.so", /* TI OMAP IL core */
     "libOmxCore.so", /* Qualcomm IL core */
-    "libomxil-bellagio.so",  /* Bellagio IL core */
     "libnvomx.so", /* Tegra3 IL core */
+#else
+    "libomxil-bellagio.so",  /* Bellagio IL core reference implementation */
 #endif
     0
 };



More information about the vlc-commits mailing list