File: bug-script

package info (click to toggle)
libvdpau 1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: cpp: 4,870; ansic: 1,806; makefile: 38; sh: 26
file content (28 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

exec >&3

if [ -z "$VDPAU_DRIVER" ]; then
	echo "VDPAU_DRIVER is not set"
else
	echo "VDPAU_DRIVER is set to '$VDPAU_DRIVER'"
fi
if [ -z "$VDPAU_DRIVER_PATH" ]; then
	echo "VDPAU_DRIVER_PATH is not set"
else
	echo "VDPAU_DRIVER_PATH is set to '$VDPAU_DRIVER_PATH'"
fi
echo

if [ -x /usr/bin/vdpauinfo ]; then
	echo "vdpauinfo:"
	/usr/bin/vdpauinfo 2>&1
else
	echo "vdpauinfo is not installed"
fi
echo

echo "available drivers:"
ls -la /usr/lib*/vdpau/libvdpau_* /usr/lib/*/vdpau/libvdpau_* "$VDPAU_DRIVER_PATH"/libvdpau_* 2>/dev/null

exit 0