summaryrefslogtreecommitdiffstats
path: root/video/vdpau_functions.inc
Commit message (Collapse)AuthorAgeFilesLines
* vo_vdpau: allow setting colorkeywm42013-08-171-0/+2
| | | | | | | Formally, this sets the "background color" of the presentation queue. But in practice, this color is also used as colorkey. This commit doesn't change the VDPAU default yet.
* build: fix build with vdpau, simplifywm42013-07-291-0/+41
Instead of generating vdpau_template.c with a Perl script, just include the generated file in git. This is ok because it changes very rarely, and the script is larger than the output it generates. It also simplify the Makefile, and fixes the build. The problem was that transitive dependencies do not work with generated files: there is no dependency information yet when building it the first time. I overlooked this because I didn't delete the .d files for testing (which contained the correct dependencies, but only _after_ a first successful build).