Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
455 lines (408 loc) · 17 KB

File metadata and controls

455 lines (408 loc) · 17 KB
 
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
/***********************************************************
Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
/* $XFree86: xc/include/extensions/Xvlib.h,v 1.3 1999/12/11 19:28:48 mvojkovi Exp $ */
#ifndef XVLIB_H
#define XVLIB_H
/*
** File:
**
** Xvlib.h --- Xv library public header file
**
** Author:
**
** David Carver (Digital Workstation Engineering/Project Athena)
**
** Revisions:
**
** 26.06.91 Carver
** - changed XvFreeAdaptors to XvFreeAdaptorInfo
** - changed XvFreeEncodings to XvFreeEncodingInfo
**
** 11.06.91 Carver
** - changed SetPortControl to SetPortAttribute
** - changed GetPortControl to GetPortAttribute
** - changed QueryBestSize
**
** 05.15.91 Carver
** - version 2.0 upgrade
**
** 01.24.91 Carver
** - version 1.4 upgrade
**
*/
#include <X11/Xfuncproto.h>
Feb 16, 2006
Feb 16, 2006
57
#include "Xv.h"
Mar 5, 2002
Mar 5, 2002
58
#include "SDL_name.h"
May 28, 2006
May 28, 2006
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
typedef struct
{
int numerator;
int denominator;
} SDL_NAME (XvRational);
typedef struct
{
int flags; /* XvGettable, XvSettable */
int min_value;
int max_value;
char *name;
} SDL_NAME (XvAttribute);
typedef struct
{
XvEncodingID encoding_id;
char *name;
unsigned long width;
unsigned long height;
SDL_NAME (XvRational) rate;
unsigned long num_encodings;
} SDL_NAME (XvEncodingInfo);
typedef struct
{
char depth;
unsigned long visual_id;
} SDL_NAME (XvFormat);
typedef struct
{
XvPortID base_id;
unsigned long num_ports;
char type;
char *name;
unsigned long num_formats;
SDL_NAME (XvFormat) * formats;
unsigned long num_adaptors;
} SDL_NAME (XvAdaptorInfo);
typedef struct
{
int type;
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
Drawable drawable; /* drawable */
unsigned long reason; /* what generated this event */
XvPortID port_id; /* what port */
Time time; /* milliseconds */
} SDL_NAME (XvVideoNotifyEvent);
typedef struct
{
int type;
unsigned long serial; /* # of last request processed by server */
Bool send_event; /* true if this came from a SendEvent request */
Display *display; /* Display the event was read from */
XvPortID port_id; /* what port */
Time time; /* milliseconds */
Atom attribute; /* atom that identifies attribute */
long value; /* value of attribute */
} SDL_NAME (XvPortNotifyEvent);
typedef union
{
int type;
SDL_NAME (XvVideoNotifyEvent) xvvideo;
SDL_NAME (XvPortNotifyEvent) xvport;
long pad[24];
} SDL_NAME (XvEvent);
typedef struct
{
int id; /* Unique descriptor for the format */
int type; /* XvRGB, XvYUV */
int byte_order; /* LSBFirst, MSBFirst */
char guid[16]; /* Globally Unique IDentifier */
int bits_per_pixel;
int format; /* XvPacked, XvPlanar */
int num_planes;
/* for RGB formats only */
int depth;
unsigned int red_mask;
unsigned int green_mask;
unsigned int blue_mask;
/* for YUV formats only */
unsigned int y_sample_bits;
unsigned int u_sample_bits;
unsigned int v_sample_bits;
unsigned int horz_y_period;
unsigned int horz_u_period;
unsigned int horz_v_period;
unsigned int vert_y_period;
unsigned int vert_u_period;
unsigned int vert_v_period;
char component_order[32]; /* eg. UYVY */
int scanline_order; /* XvTopToBottom, XvBottomToTop */
} SDL_NAME (XvImageFormatValues);
typedef struct
{
int id;
int width, height;
int data_size; /* bytes */
int num_planes;
int *pitches; /* bytes */
int *offsets; /* bytes */
char *data;
XPointer obdata;
} SDL_NAME (XvImage);
_XFUNCPROTOBEGIN extern int SDL_NAME (XvQueryExtension) (
176
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
177
178
179
180
181
182
183
184
185
186
187
Display *
/* display */ ,
unsigned int *
/* p_version */ ,
unsigned int *
/* p_revision */ ,
unsigned int *
/* p_requestBase */
, unsigned int *
/* p_eventBase */
, unsigned int * /* p_errorBase */
188
#endif
May 28, 2006
May 28, 2006
189
);
May 28, 2006
May 28, 2006
191
extern int SDL_NAME (XvQueryAdaptors) (
192
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
193
194
195
196
Display * /* display */ ,
Window /* window */ ,
unsigned int * /* p_nAdaptors */ ,
SDL_NAME (XvAdaptorInfo) ** /* p_pAdaptors */
197
#endif
May 28, 2006
May 28, 2006
198
);
May 28, 2006
May 28, 2006
200
extern int SDL_NAME (XvQueryEncodings) (
201
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
202
203
204
205
Display * /* display */ ,
XvPortID /* port */ ,
unsigned int * /* p_nEncoding */ ,
SDL_NAME (XvEncodingInfo) ** /* p_pEncoding */
206
#endif
May 28, 2006
May 28, 2006
207
);
May 28, 2006
May 28, 2006
209
extern int SDL_NAME (XvPutVideo) (
210
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
211
212
213
214
215
216
217
218
219
220
221
222
Display * /* display */ ,
XvPortID /* port */ ,
Drawable /* d */ ,
GC /* gc */ ,
int /* vx */ ,
int /* vy */ ,
unsigned int /* vw */ ,
unsigned int /* vh */ ,
int /* dx */ ,
int /* dy */ ,
unsigned int /* dw */ ,
unsigned int /* dh */
223
#endif
May 28, 2006
May 28, 2006
224
);
May 28, 2006
May 28, 2006
226
extern int SDL_NAME (XvPutStill) (
227
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
228
229
230
231
232
233
234
235
236
237
238
239
Display * /* display */ ,
XvPortID /* port */ ,
Drawable /* d */ ,
GC /* gc */ ,
int /* vx */ ,
int /* vy */ ,
unsigned int /* vw */ ,
unsigned int /* vh */ ,
int /* dx */ ,
int /* dy */ ,
unsigned int /* dw */ ,
unsigned int /* dh */
240
#endif
May 28, 2006
May 28, 2006
241
);
May 28, 2006
May 28, 2006
243
extern int SDL_NAME (XvGetVideo) (
244
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
245
246
247
248
249
250
251
252
253
254
255
256
Display * /* display */ ,
XvPortID /* port */ ,
Drawable /* d */ ,
GC /* gc */ ,
int /* vx */ ,
int /* vy */ ,
unsigned int /* vw */ ,
unsigned int /* vh */ ,
int /* dx */ ,
int /* dy */ ,
unsigned int /* dw */ ,
unsigned int /* dh */
257
#endif
May 28, 2006
May 28, 2006
258
);
May 28, 2006
May 28, 2006
260
extern int SDL_NAME (XvGetStill) (
261
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
262
263
264
265
266
267
268
269
270
271
272
273
Display * /* display */ ,
XvPortID /* port */ ,
Drawable /* d */ ,
GC /* gc */ ,
int /* vx */ ,
int /* vy */ ,
unsigned int /* vw */ ,
unsigned int /* vh */ ,
int /* dx */ ,
int /* dy */ ,
unsigned int /* dw */ ,
unsigned int /* dh */
274
#endif
May 28, 2006
May 28, 2006
275
);
May 28, 2006
May 28, 2006
277
extern int SDL_NAME (XvStopVideo) (
278
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
279
280
281
Display * /* display */ ,
XvPortID /* port */ ,
Drawable /* drawable */
282
#endif
May 28, 2006
May 28, 2006
283
);
May 28, 2006
May 28, 2006
285
extern int SDL_NAME (XvGrabPort) (
286
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
287
288
289
Display * /* display */ ,
XvPortID /* port */ ,
Time /* time */
290
#endif
May 28, 2006
May 28, 2006
291
);
May 28, 2006
May 28, 2006
293
extern int SDL_NAME (XvUngrabPort) (
294
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
295
296
297
Display * /* display */ ,
XvPortID /* port */ ,
Time /* time */
298
#endif
May 28, 2006
May 28, 2006
299
);
May 28, 2006
May 28, 2006
301
extern int SDL_NAME (XvSelectVideoNotify) (
302
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
303
304
305
Display * /* display */ ,
Drawable /* drawable */ ,
Bool /* onoff */
306
#endif
May 28, 2006
May 28, 2006
307
);
May 28, 2006
May 28, 2006
309
extern int SDL_NAME (XvSelectPortNotify) (
310
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
311
312
313
Display * /* display */ ,
XvPortID /* port */ ,
Bool /* onoff */
314
#endif
May 28, 2006
May 28, 2006
315
);
May 28, 2006
May 28, 2006
317
extern int SDL_NAME (XvSetPortAttribute) (
318
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
319
320
321
322
Display * /* display */ ,
XvPortID /* port */ ,
Atom /* attribute */ ,
int /* value */
323
#endif
May 28, 2006
May 28, 2006
324
);
May 28, 2006
May 28, 2006
326
extern int SDL_NAME (XvGetPortAttribute) (
327
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
328
329
330
331
Display * /* display */ ,
XvPortID /* port */ ,
Atom /* attribute */ ,
int * /* p_value */
332
#endif
May 28, 2006
May 28, 2006
333
);
May 28, 2006
May 28, 2006
335
extern int SDL_NAME (XvQueryBestSize) (
336
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
337
338
339
340
341
342
343
344
345
Display * /* display */ ,
XvPortID /* port */ ,
Bool /* motion */ ,
unsigned int /* vid_w */ ,
unsigned int /* vid_h */ ,
unsigned int /* drw_w */ ,
unsigned int /* drw_h */ ,
unsigned int * /* p_actual_width */
, unsigned int * /* p_actual_width */
346
#endif
May 28, 2006
May 28, 2006
347
);
May 28, 2006
May 28, 2006
349
350
351
extern
SDL_NAME (XvAttribute) *
SDL_NAME (XvQueryPortAttributes) (
352
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
353
354
355
Display * /* display */ ,
XvPortID /* port */ ,
int * /* number */
356
#endif
May 28, 2006
May 28, 2006
357
);
358
359
May 28, 2006
May 28, 2006
360
extern void SDL_NAME (XvFreeAdaptorInfo) (
361
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
362
SDL_NAME (XvAdaptorInfo) * /* adaptors */
363
#endif
May 28, 2006
May 28, 2006
364
);
May 28, 2006
May 28, 2006
366
extern void SDL_NAME (XvFreeEncodingInfo) (
367
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
368
SDL_NAME (XvEncodingInfo) * /* encodings */
369
#endif
May 28, 2006
May 28, 2006
370
);
371
372
May 28, 2006
May 28, 2006
373
extern SDL_NAME (XvImageFormatValues) * SDL_NAME (XvListImageFormats) (
374
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
375
376
377
378
379
380
381
Display
*
display,
XvPortID
port_id,
int
*count_return
382
#endif
May 28, 2006
May 28, 2006
383
);
May 28, 2006
May 28, 2006
385
extern SDL_NAME (XvImage) * SDL_NAME (XvCreateImage) (
386
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
387
388
389
390
391
392
393
Display *
display,
XvPortID port,
int id,
char *data,
int width,
int height
394
#endif
May 28, 2006
May 28, 2006
395
);
May 28, 2006
May 28, 2006
397
extern int SDL_NAME (XvPutImage) (
398
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
399
400
401
402
403
404
405
406
407
408
409
410
411
Display * display,
XvPortID id,
Drawable d,
GC gc,
SDL_NAME (XvImage) * image,
int src_x,
int src_y,
unsigned int src_w,
unsigned int src_h,
int dest_x,
int dest_y,
unsigned int dest_w,
unsigned int dest_h
412
#endif
May 28, 2006
May 28, 2006
413
);
May 28, 2006
May 28, 2006
415
extern int SDL_NAME (XvShmPutImage) (
416
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
417
418
419
420
421
422
423
424
425
426
427
428
429
430
Display * display,
XvPortID id,
Drawable d,
GC gc,
SDL_NAME (XvImage) * image,
int src_x,
int src_y,
unsigned int src_w,
unsigned int src_h,
int dest_x,
int dest_y,
unsigned int dest_w,
unsigned int dest_h,
Bool send_event
431
#endif
May 28, 2006
May 28, 2006
432
);
433
434
435
#ifdef _XSHM_H_
May 28, 2006
May 28, 2006
436
extern SDL_NAME (XvImage) * SDL_NAME (XvShmCreateImage) (
437
#if NeedFunctionPrototypes
May 28, 2006
May 28, 2006
438
439
440
441
442
443
444
445
446
Display *
display,
XvPortID
port, int id,
char *data,
int width,
int height,
XShmSegmentInfo
* shminfo
447
#endif
May 28, 2006
May 28, 2006
448
);
449
450
451
452
453
454
#endif
_XFUNCPROTOEND
#endif /* XVLIB_H */
May 28, 2006
May 28, 2006
455
/* vi: set ts=4 sw=4 expandtab: */