CBL-Mariner/SPECS-EXTENDED/libvdpau
Muhammad Falak R Wani 6a493709c8
*.signatures.json: add a newline EOF to files that do not have one (#7147)
This is an automated change & the command used is:
find -name '*.signatures.json' -exec sh -c '[ -n "$(tail -c1 {})" ] && echo >> {}' \;

Reference: https://stackoverflow.com/a/729795
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
2024-01-11 14:58:09 +05:30
..
README [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
baselibs.conf [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
c5a8e7c6c8b4b36a0e4c9a4369404519262a3256.patch [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
e82dc4bdbb0db3ffa8c78275902738eb63aa5ca8.patch [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
libvdpau-rpmlintrc [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
libvdpau.signatures.json *.signatures.json: add a newline EOF to files that do not have one (#7147) 2024-01-11 14:58:09 +05:30
libvdpau.spec [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00
n_UsrEtc.patch [main] Add SPECS-EXTENDED folder and populate with 2159 packages (#1754) 2021-12-13 10:40:12 -08:00

README

DEBUGGING AND TRACING

The VDPAU wrapper library supports tracing VDPAU function calls, and their
parameters. This tracing is controlled by the following environment variables:

VDPAU_TRACE

    Enables tracing. Set to 1 to trace function calls. Set to 2 to trace all
    arguments passed to the function.

VDPAU_TRACE_FILE

    Filename to write traces to. By default, traces are sent to stderr. This
    variable may either contain a plain filename, or a reference to an
    existing open file-descriptor in the format "&N" where N is the file
    descriptor number.


The VDPAU wrapper library is responsible for determining which vendor-specific
driver to load for a given X11 display/screen. At present, it hard-codes
"nvidia" as the driver. The environment variable VDPAU_DRIVER may be set to
override this default. The actual library loaded will be
libvdpau_${VDPAU_DRIVER}.so. Setting VDPAU_DRIVER to "trace" is not advised.