summaryrefslogtreecommitdiff
path: root/src/libXvMC/subpicture.c
blob: 38d934383342e85603d4c753817515c568e9025b (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include <assert.h>
#include <X11/Xlib.h>
#include <X11/extensions/Xvlib.h>
#include <X11/extensions/XvMC.h>

Status XvMCCreateSubpicture
(
	Display *display,
	XvMCContext *context,
	XvMCSubpicture *subpicture,
	unsigned short width,
	unsigned short height,
	int xvimage_id
)
{
	return BadImplementation;
}

Status XvMCClearSubpicture
(
	Display *display,
	XvMCSubpicture *subpicture,
	short x,
	short y,
	unsigned short width,
	unsigned short height,
	unsigned int color
)
{
	return BadImplementation;
}

Status XvMCCompositeSubpicture
(
	Display *display,
	XvMCSubpicture *subpicture,
	XvImage *image,
	short srcx,
	short srcy,
	unsigned short width,
	unsigned short height,
	short dstx,
	short dsty
)
{
	return BadImplementation;
}

Status XvMCDestroySubpicture(Display *display, XvMCSubpicture *subpicture)
{
	return BadImplementation;
}

Status XvMCSetSubpicturePalette(Display *display, XvMCSubpicture *subpicture, unsigned char *palette)
{
	return BadImplementation;
}

Status XvMCBlendSubpicture
(
	Display *display,
	XvMCSurface *target_surface,
	XvMCSubpicture *subpicture,
	short subx,
	short suby,
	unsigned short subw,
	unsigned short subh,
	short surfx,
	short surfy,
	unsigned short surfw,
	unsigned short surfh
)
{
	return BadImplementation;
}

Status XvMCBlendSubpicture2
(
	Display *display,
	XvMCSurface *source_surface,
	XvMCSurface *target_surface,
	XvMCSubpicture *subpicture,
	short subx,
	short suby,
	unsigned short subw,
	unsigned short subh,
	short surfx,
	short surfy,
	unsigned short surfw,
	unsigned short surfh
)
{
	return BadImplementation;
}

Status XvMCSyncSubpicture(Display *display, XvMCSubpicture *subpicture)
{
	return BadImplementation;
}

Status XvMCFlushSubpicture(Display *display, XvMCSubpicture *subpicture)
{
	return BadImplementation;
}

Status XvMCGetSubpictureStatus(Display *display, XvMCSubpicture *subpicture, int *status)
{
	return BadImplementation;
}