blob: 674524b8b820874239eb14296298aed2ba65e085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <assert.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xvlib.h>
#include <X11/extensions/XvMC.h>
XvAttribute* XvMCQueryAttributes(Display *display, XvMCContext *context, int *number)
{
return NULL;
}
Status XvMCSetAttribute(Display *display, XvMCContext *context, Atom attribute, int value)
{
return BadImplementation;
}
Status XvMCGetAttribute(Display *display, XvMCContext *context, Atom attribute, int *value)
{
return BadImplementation;
}
|