I'm trying to compile mplayer on F12 and I've encountered a problem.  I've installed the vdpau packages from the F12 repositories, but when I try to configure mplayer with vdpau support it indicates there is no support for it.  Here is the test program from the configure script.<br>
<br>#include <vdpau/vdpau_x11.h><br>int main(void) {<br>    (void) vdp_device_create_x11(0, 0, 0, 0);<br>    return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }<br><br>The compiles fine:<br><br>gcc -o vdp vdp.c -lvdpau<br>
<br>but when you run it you get:<br><br>./vdp<br>Failed to open VDPAU backend libvdpau_nvidia.so: cannot open shared object file: No such file or directory<br><br>Running<br><br>ldd ./vdp<br><br>shows:<br><br>    linux-vdso.so.1 =>  (0x00007fffb0dff000)<br>
    libvdpau.so.1 => /usr/lib64/libvdpau.so.1 (0x00007fb918e84000)<br>    libc.so.6 => /lib64/libc.so.6 (0x0000003fa8400000)<br>    libdl.so.2 => /lib64/libdl.so.2 (0x0000003fa8800000)<br>    /lib64/ld-linux-x86-64.so.2 (0x0000003fa8000000)<br>
<br>there is no reference to libvdpau_nvidia.so.<br><br>A search of the repositories shows no matches for this library.<br><br>Any ideas what I'm missing?<br><br>Paolo<br>