summaryrefslogtreecommitdiffstats
path: root/config.tests/x11/xvideo/xvideo.cpp
blob: 9d0eef6be95d9576a91bf6a177d8a69b7fa0a16a (plain)
1
2
3
4
5
6
7
8
9
10
#include <X11/extensions/Xv.h>
#include <X11/extensions/Xvlib.h>

int main(int argc, char** argv)
{
    unsigned int count = 0;
    XvAdaptorInfo *adaptors = 0;
    XvQueryAdaptors(0, 0, &count, &adaptors);
    return 0;
}