Hallo,
ich versuche gerade softhddrm auf meinen neuem VDR mit dem Asrock N100M unter Gentoo zum laufen zu bekommen, bekomme aber folgenden Fehler:
vdr: /usr/lib64/vdr/plugins/libvdr-softhddrm.so.5: undefined symbol: vaExportSurfaceHandle
Das Plugin compiliert ohne Fehler. Im Makefile habe ich Folgendes eingestellt:
Code
# what kind of decoder do we make -
# if VAAPI is enabled the pluginname is softhdvaapi
# if CUVID is enabled the pluginname is softhdcuvid
# if DRM is enabled the pluginname is softhddrm
VAAPI ?= 0
CUVID ?= 0
# if you enable DRM then the plugin will only run without X server
# only valid for VAAPI
DRM ?= 1
# use libplacebo -
# available for all decoders but for DRM and VAAPI you need LIBPLACEBO_GL
LIBPLACEBO ?= 1
LIBPLACEBO_GL ?= 1
# use YADIF deint - only available with cuvid
YADIF = 0
Display More
grep -R vaExportSurfaceHandle /usr/include/ bringt mir Folgendes:
Code
/usr/include/va/va.h: * vaExportSurfaceHandle(). */
/usr/include/va/va.h:/** @name vaExportSurfaceHandle() flags
/usr/include/va/va.h:VAStatus vaExportSurfaceHandle(VADisplay dpy,
/usr/include/va/va_backend.h: (*vaExportSurfaceHandle)(
/usr/include/va/va_drmcommon.h: * For export, call vaExportSurfaceHandle() with mem_type set to
Was habe ich übersehen? jojo61 hast Du eine Idee?