OSDN Git Service

Add definition of FOURCC IYUV
[android-x86/hardware-intel-common-libva.git] / src / x11 / va_x11.h
1 /*
2  * Video Decode Acceleration API, X11 specific functions
3  *
4  * Rev. 0.15
5  * <jonathan.bian@intel.com>
6  *
7  * Revision History:
8  * rev 0.1 (12/10/06 Jonathan Bian) - Initial draft
9  * rev 0.11 (12/15/06 Jonathan Bian) - Fixed some errors
10  * rev 0.12 (02/05/07 Jonathan Bian) - Added VC-1 data structures
11  * rev 0.13 (02/28/07 Jonathan Bian) - Added GetDisplay()
12  * rev 0.14 (04/13/07 Jonathan Bian) - Fixed MPEG-2 PictureParameter struct, cleaned up a few funcs.
13  * rev 0.15 (04/20/07 Jonathan Bian) - Overhauled buffer management  
14  *
15  */
16
17 #ifndef _VA_X11_H_
18 #define _VA_X11_H_
19
20 #include <va.h>
21 #include <X11/Xlib.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 /*
28  * Returns a suitable VADisplay for VA API
29  */
30 VADisplay vaGetDisplay (
31     Display *dpy
32 );
33
34 /*
35  * Output rendering
36  * Following is the rendering interface for X windows, 
37  * to get the decode output surface to a X drawable
38  * It basically performs a de-interlacing (if needed), 
39  * color space conversion and scaling to the destination
40  * rectangle
41  */
42
43 /* de-interlace flags for vaPutSurface */
44 #define VA_FRAME_PICTURE        0x00000000 
45 #define VA_TOP_FIELD            0x00000001
46 #define VA_BOTTOM_FIELD         0x00000002
47 /* 
48  * clears the drawable with background color.
49  * for hardware overlay based implementation this flag
50  * can be used to turn off the overlay
51  */
52 #define VA_CLEAR_DRAWABLE       0x00000008 
53
54 VAStatus vaPutSurface (
55     VADisplay dpy,
56     VASurfaceID surface,
57     Drawable draw, /* X Drawable */
58     short srcx,
59     short srcy,
60     unsigned short srcw,
61     unsigned short srch,
62     short destx,
63     short desty,
64     unsigned short destw,
65     unsigned short desth,
66     VARectangle *cliprects, /* client supplied clip list */
67     unsigned int number_cliprects, /* number of clip rects in the clip list */
68     unsigned int flags /* de-interlacing flags */
69 );
70
71 #ifdef __cplusplus
72 }
73 #endif
74
75 #endif /* _VA_X11_H_ */