#include <vdpau/vdpau_x11.h>
int main(void) {
(void) vdp_device_create_x11(0, 0, 0, 0);
return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
The compiles fine:
gcc -o vdp vdp.c -lvdpau
but when you run it you get:
./vdp
Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory
Running
ldd ./vdp
shows:
linux-vdso.so.1 => (0x00007fffb0dff000)
libvdpau.so.1 => /usr/lib64/libvdpau.so.1 (0x00007fb918e84000)
libc.so.6 => /lib64/libc.so.6 (0x0000003fa8400000)
libdl.so.2 => /lib64/libdl.so.2 (0x0000003fa8800000)
/lib64/ld-linux-x86-64.so.2 (0x0000003fa8000000)
there is no reference to libvdpau_nvidia.so.
A search of the repositories shows no matches for this library.
Any ideas what I'm missing?
Paolo
-- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines