f4a3dc04bfb8a34e7587124d3adb42a91604ea55
[mesa.git] / src / gallium / state_trackers / vdpau / device.c
1 /**************************************************************************
2 *
3 * Copyright 2010 Younes Manton og Thomas Balling Sørensen.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "pipe/p_compiler.h"
29
30 #include "util/u_memory.h"
31 #include "util/u_debug.h"
32
33 #include "vl_winsys.h"
34
35 #include "vdpau_private.h"
36
37 /**
38 * Create a VdpDevice object for use with X11.
39 */
40 PUBLIC VdpStatus
41 vdp_imp_device_create_x11(Display *display, int screen, VdpDevice *device,
42 VdpGetProcAddress **get_proc_address)
43 {
44 struct pipe_screen *pscreen;
45 vlVdpDevice *dev = NULL;
46 VdpStatus ret;
47
48 if (!(display && device && get_proc_address))
49 return VDP_STATUS_INVALID_POINTER;
50
51 if (!vlCreateHTAB()) {
52 ret = VDP_STATUS_RESOURCES;
53 goto no_htab;
54 }
55
56 dev = CALLOC(1, sizeof(vlVdpDevice));
57 if (!dev) {
58 ret = VDP_STATUS_RESOURCES;
59 goto no_dev;
60 }
61
62 dev->vscreen = vl_screen_create(display, screen);
63 if (!dev->vscreen) {
64 ret = VDP_STATUS_RESOURCES;
65 goto no_vscreen;
66 }
67
68 pscreen = dev->vscreen->pscreen;
69 dev->context = pscreen->context_create(pscreen, dev->vscreen);
70 if (!dev->context) {
71 ret = VDP_STATUS_RESOURCES;
72 goto no_context;
73 }
74
75 *device = vlAddDataHTAB(dev);
76 if (*device == 0) {
77 ret = VDP_STATUS_ERROR;
78 goto no_handle;
79 }
80
81 vl_compositor_init(&dev->compositor, dev->context);
82
83 *get_proc_address = &vlVdpGetProcAddress;
84
85 return VDP_STATUS_OK;
86
87 no_handle:
88 /* Destroy vscreen */
89 no_context:
90 vl_screen_destroy(dev->vscreen);
91 no_vscreen:
92 FREE(dev);
93 no_dev:
94 vlDestroyHTAB();
95 no_htab:
96 return ret;
97 }
98
99 /**
100 * Create a VdpPresentationQueueTarget for use with X11.
101 */
102 PUBLIC VdpStatus
103 vlVdpPresentationQueueTargetCreateX11(VdpDevice device, Drawable drawable,
104 VdpPresentationQueueTarget *target)
105 {
106 vlVdpPresentationQueueTarget *pqt;
107 VdpStatus ret;
108
109 if (!drawable)
110 return VDP_STATUS_INVALID_HANDLE;
111
112 vlVdpDevice *dev = vlGetDataHTAB(device);
113 if (!dev)
114 return VDP_STATUS_INVALID_HANDLE;
115
116 pqt = CALLOC(1, sizeof(vlVdpPresentationQueue));
117 if (!pqt)
118 return VDP_STATUS_RESOURCES;
119
120 pqt->device = dev;
121 pqt->drawable = drawable;
122
123 *target = vlAddDataHTAB(pqt);
124 if (*target == 0) {
125 ret = VDP_STATUS_ERROR;
126 goto no_handle;
127 }
128
129 return VDP_STATUS_OK;
130
131 no_handle:
132 FREE(pqt);
133 return ret;
134 }
135
136 /**
137 * Destroy a VdpPresentationQueueTarget.
138 */
139 VdpStatus
140 vlVdpPresentationQueueTargetDestroy(VdpPresentationQueueTarget presentation_queue_target)
141 {
142 vlVdpPresentationQueueTarget *pqt;
143
144 pqt = vlGetDataHTAB(presentation_queue_target);
145 if (!pqt)
146 return VDP_STATUS_INVALID_HANDLE;
147
148 vlRemoveDataHTAB(presentation_queue_target);
149 FREE(pqt);
150
151 return VDP_STATUS_OK;
152 }
153
154 /**
155 * Destroy a VdpDevice.
156 */
157 VdpStatus
158 vlVdpDeviceDestroy(VdpDevice device)
159 {
160 vlVdpDevice *dev = vlGetDataHTAB(device);
161 if (!dev)
162 return VDP_STATUS_INVALID_HANDLE;
163
164 vl_compositor_cleanup(&dev->compositor);
165 dev->context->destroy(dev->context);
166 vl_screen_destroy(dev->vscreen);
167
168 FREE(dev);
169 vlDestroyHTAB();
170
171 return VDP_STATUS_OK;
172 }
173
174 /**
175 * Retrieve a VDPAU function pointer.
176 */
177 VdpStatus
178 vlVdpGetProcAddress(VdpDevice device, VdpFuncId function_id, void **function_pointer)
179 {
180 vlVdpDevice *dev = vlGetDataHTAB(device);
181 if (!dev)
182 return VDP_STATUS_INVALID_HANDLE;
183
184 if (!function_pointer)
185 return VDP_STATUS_INVALID_POINTER;
186
187 if (!vlGetFuncFTAB(function_id, function_pointer))
188 return VDP_STATUS_INVALID_FUNC_ID;
189
190 VDPAU_MSG(VDPAU_TRACE, "[VDPAU] Got proc adress %p for id %d\n", *function_pointer, function_id);
191
192 return VDP_STATUS_OK;
193 }
194
195 #define _ERROR_TYPE(TYPE,STRING) case TYPE: return STRING;
196
197 /**
198 * Retrieve a string describing an error code.
199 */
200 char const *
201 vlVdpGetErrorString (VdpStatus status)
202 {
203 switch (status) {
204 _ERROR_TYPE(VDP_STATUS_OK,"The operation completed successfully; no error.");
205 _ERROR_TYPE(VDP_STATUS_NO_IMPLEMENTATION,"No backend implementation could be loaded.");
206 _ERROR_TYPE(VDP_STATUS_DISPLAY_PREEMPTED,"The display was preempted, or a fatal error occurred. The application must re-initialize VDPAU.");
207 _ERROR_TYPE(VDP_STATUS_INVALID_HANDLE,"An invalid handle value was provided. Either the handle does not exist at all, or refers to an object of an incorrect type.");
208 _ERROR_TYPE(VDP_STATUS_INVALID_POINTER,"An invalid pointer was provided. Typically, this means that a NULL pointer was provided for an 'output' parameter.");
209 _ERROR_TYPE(VDP_STATUS_INVALID_CHROMA_TYPE,"An invalid/unsupported VdpChromaType value was supplied.");
210 _ERROR_TYPE(VDP_STATUS_INVALID_Y_CB_CR_FORMAT,"An invalid/unsupported VdpYCbCrFormat value was supplied.");
211 _ERROR_TYPE(VDP_STATUS_INVALID_RGBA_FORMAT,"An invalid/unsupported VdpRGBAFormat value was supplied.");
212 _ERROR_TYPE(VDP_STATUS_INVALID_INDEXED_FORMAT,"An invalid/unsupported VdpIndexedFormat value was supplied.");
213 _ERROR_TYPE(VDP_STATUS_INVALID_COLOR_STANDARD,"An invalid/unsupported VdpColorStandard value was supplied.");
214 _ERROR_TYPE(VDP_STATUS_INVALID_COLOR_TABLE_FORMAT,"An invalid/unsupported VdpColorTableFormat value was supplied.");
215 _ERROR_TYPE(VDP_STATUS_INVALID_BLEND_FACTOR,"An invalid/unsupported VdpOutputSurfaceRenderBlendFactor value was supplied.");
216 _ERROR_TYPE(VDP_STATUS_INVALID_BLEND_EQUATION,"An invalid/unsupported VdpOutputSurfaceRenderBlendEquation value was supplied.");
217 _ERROR_TYPE(VDP_STATUS_INVALID_FLAG,"An invalid/unsupported flag value/combination was supplied.");
218 _ERROR_TYPE(VDP_STATUS_INVALID_DECODER_PROFILE,"An invalid/unsupported VdpDecoderProfile value was supplied.");
219 _ERROR_TYPE(VDP_STATUS_INVALID_VIDEO_MIXER_FEATURE,"An invalid/unsupported VdpVideoMixerFeature value was supplied.");
220 _ERROR_TYPE(VDP_STATUS_INVALID_VIDEO_MIXER_PARAMETER,"An invalid/unsupported VdpVideoMixerParameter value was supplied.");
221 _ERROR_TYPE(VDP_STATUS_INVALID_VIDEO_MIXER_ATTRIBUTE,"An invalid/unsupported VdpVideoMixerAttribute value was supplied.");
222 _ERROR_TYPE(VDP_STATUS_INVALID_VIDEO_MIXER_PICTURE_STRUCTURE,"An invalid/unsupported VdpVideoMixerPictureStructure value was supplied.");
223 _ERROR_TYPE(VDP_STATUS_INVALID_FUNC_ID,"An invalid/unsupported VdpFuncId value was supplied.");
224 _ERROR_TYPE(VDP_STATUS_INVALID_SIZE,"The size of a supplied object does not match the object it is being used with.\
225 For example, a VdpVideoMixer is configured to process VdpVideoSurface objects of a specific size.\
226 If presented with a VdpVideoSurface of a different size, this error will be raised.");
227 _ERROR_TYPE(VDP_STATUS_INVALID_VALUE,"An invalid/unsupported value was supplied.\
228 This is a catch-all error code for values of type other than those with a specific error code.");
229 _ERROR_TYPE(VDP_STATUS_INVALID_STRUCT_VERSION,"An invalid/unsupported structure version was specified in a versioned structure. \
230 This implies that the implementation is older than the header file the application was built against.");
231 _ERROR_TYPE(VDP_STATUS_RESOURCES,"The system does not have enough resources to complete the requested operation at this time.");
232 _ERROR_TYPE(VDP_STATUS_HANDLE_DEVICE_MISMATCH,"The set of handles supplied are not all related to the same VdpDevice.When performing operations \
233 that operate on multiple surfaces, such as VdpOutputSurfaceRenderOutputSurface or VdpVideoMixerRender, \
234 all supplied surfaces must have been created within the context of the same VdpDevice object. \
235 This error is raised if they were not.");
236 _ERROR_TYPE(VDP_STATUS_ERROR,"A catch-all error, used when no other error code applies.");
237 default: return "Unknown Error";
238 }
239 }