* The file scope OpenCL context object (canny_ctx(CL_DEVICE_TYPE_ACCELERATOR)) resulted in constructor for Context called during g_module_open (g_plugin.c) of "/usr/lib/gstreamer-1.0/libgstdsp66.so", leading to OpenCL device initialization and subsequent CMEM error (when CMEM is not installed). The fix is to create the Context object on the stack, along the lines of oclconv_imgproc.
Signed-off-by: Hongmei Gou <[email protected]> --- .../gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb index 6977a47..201e221 100644 --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-dsp66_git.bb @@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=2827f94fc0a1adeff4d9702e97ce2979" SRC_URI = "git://git.ti.com/processor-sdk/gst-plugin-dsp66.git;protocol=git;branch=master" -SRCREV = "0db24f44b49ad673bcebce5d25a63ea41551ebec" +SRCREV = "0abedafadbed693592804f23482a9447d81b2dbf" S = "${WORKDIR}/git" @@ -14,7 +14,7 @@ DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base opencl ti-cgt6x-native clocl-n inherit autotools-brokensep pkgconfig gettext -PR = "r0" +PR = "r1" RDEPENDS_${PN} += " opencl-runtime" -- 1.9.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
