OSDN Git Service

Refine VA_FOOL, and delete the hard coded clip va_fool_264.h
[android-x86/hardware-intel-common-libva.git] / va / va_fool.h
1 /*
2  * Copyright (c) 2009 Intel Corporation. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25
26 #ifndef VA_FOOL_H
27 #define VA_FOOL_H
28
29 #include <stdio.h>
30
31 void va_FoolInit(VADisplay dpy);
32
33 int va_FoolEnd(VADisplay dpy);
34
35
36 int va_FoolGetFrame(FILE *input_fp, char *frame_buf);
37
38 int va_FoolCodedBuf(VADisplay dpy);
39
40
41 int va_FoolCreateConfig(
42     VADisplay dpy,
43     VAProfile profile, 
44     VAEntrypoint entrypoint, 
45     VAConfigAttrib *attrib_list,
46     int num_attribs,
47     VAConfigID *config_id /* out */
48 );
49
50 int va_FoolCreateSurfaces(
51     VADisplay dpy,
52     int width,
53     int height,
54     int format,
55     int num_surfaces,
56     VASurfaceID *surfaces       /* out */
57 );
58
59 VAStatus va_FoolCreateBuffer (
60     VADisplay dpy,
61     VAContextID context,        /* in */
62     VABufferType type,          /* in */
63     unsigned int size,          /* in */
64     unsigned int num_elements,  /* in */
65     void *data,                 /* in */
66     VABufferID *buf_id          /* out */
67 );
68
69 VAStatus va_FoolMapBuffer (
70     VADisplay dpy,
71     VABufferID buf_id,  /* in */
72     void **pbuf         /* out */
73 );
74
75 int va_FoolBeginPicture(
76     VADisplay dpy,
77     VAContextID context,
78     VASurfaceID render_target
79 );
80
81 int va_FoolRenderPicture(
82     VADisplay dpy,
83     VAContextID context,
84     VABufferID *buffers,
85     int num_buffers
86 );
87
88 int va_FoolEndPicture(
89     VADisplay dpy,
90     VAContextID context
91 );
92
93 VAStatus va_FoolUnmapBuffer (
94     VADisplay dpy,
95     VABufferID buf_id  /* in */
96 );
97
98
99 VAStatus va_FoolQuerySubpictureFormats (
100     VADisplay dpy,
101     VAImageFormat *format_list,
102     unsigned int *flags,
103     unsigned int *num_formats
104 );
105 int va_FoolSyncSurface(
106     VADisplay dpy, 
107     VASurfaceID render_target
108 );
109
110
111
112 #endif