blob: 42d2b295441e774c8b943ca4a77a26a64615b07e (
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
|
#ifndef _I915_HWMC_H
#define _I915_HWMC_H
#define FOURCC_XVMC (('C' << 24) + ('M' << 16) + ('V' << 8) + 'X')
#define I915_NUM_XVMC_ATTRIBUTES 0x02
#define I915_XVMC_VALID 0x80000000
/*
* Commands that client submits through XvPutImage:
*/
#define I915_XVMC_COMMAND_DISPLAY 0x00
#define I915_XVMC_COMMAND_UNDISPLAY 0x01
#define I915_XVMC_COMMAND_ATTRIBUTES 0x02
typedef struct
{
INT32 attribute;
INT32 value;
} I915AttrPair;
typedef struct
{
unsigned numAttr;
I915AttrPair attributes[I915_NUM_XVMC_ATTRIBUTES];
} I915XvMCAttrHolder;
typedef struct
{
unsigned command;
unsigned ctxNo;
unsigned srfNo;
unsigned subPicNo;
I915XvMCAttrHolder attrib;
int real_id;
unsigned pad;
} I915XvMCCommandBuffer;
struct hwmc_buffer
{
unsigned handle;
unsigned offset;
unsigned size;
};
typedef struct
{
unsigned ctxno; /* XvMC private context reference number */
drm_context_t drmcontext;
struct hwmc_buffer subcontexts;
struct hwmc_buffer corrdata;/* Correction Data Buffer */
unsigned sarea_size;
unsigned sarea_priv_offset;
unsigned screen;
unsigned depth;
I915XvMCAttrHolder initAttrs;
} I915XvMCCreateContextRec;
typedef struct
{
unsigned srfno;
struct hwmc_buffer srf;
} I915XvMCCreateSurfaceRec;
#endif /* _I915_HWMC_H */
|