1 /**************************************************************************
2 *
3 * Copyright 2011 Christian König.
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 VMWARE 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 <assert.h>
29
30 #include "pipe/p_screen.h"
31 #include "pipe/p_context.h"
32 #include "pipe/p_state.h"
33
34 #include "util/format/u_format.h"
35 #include "util/u_inlines.h"
36 #include "util/u_sampler.h"
37 #include "util/u_memory.h"
38
39 #include "vl_video_buffer.h"
40
41 const unsigned const_resource_plane_order_YUV[3] = {
42 0,
43 1,
44 2
45 };
46
47 const unsigned const_resource_plane_order_YVU[3] = {
48 0,
49 2,
50 1
51 };
52
53 void
vl_get_video_buffer_formats(struct pipe_screen * screen,enum pipe_format format,enum pipe_format out_format[VL_NUM_COMPONENTS])54 vl_get_video_buffer_formats(struct pipe_screen *screen, enum pipe_format format,
55 enum pipe_format out_format[VL_NUM_COMPONENTS])
56 {
57 unsigned num_planes = util_format_get_num_planes(format);
58 unsigned i;
59
60 for (i = 0; i < num_planes; i++)
61 out_format[i] = util_format_get_plane_format(format, i);
62 for (; i < VL_NUM_COMPONENTS; i++)
63 out_format[i] = PIPE_FORMAT_NONE;
64
65 if (format == PIPE_FORMAT_YUYV)
66 out_format[0] = PIPE_FORMAT_R8G8_R8B8_UNORM;
67 else if (format == PIPE_FORMAT_UYVY)
68 out_format[0] = PIPE_FORMAT_G8R8_B8R8_UNORM;
69 }
70
71 const unsigned *
vl_video_buffer_plane_order(enum pipe_format format)72 vl_video_buffer_plane_order(enum pipe_format format)
73 {
74 switch(format) {
75 case PIPE_FORMAT_YV12:
76 return const_resource_plane_order_YVU;
77
78 case PIPE_FORMAT_NV12:
79 case PIPE_FORMAT_R8G8B8A8_UNORM:
80 case PIPE_FORMAT_B8G8R8A8_UNORM:
81 case PIPE_FORMAT_YUYV:
82 case PIPE_FORMAT_UYVY:
83 case PIPE_FORMAT_P010:
84 case PIPE_FORMAT_P016:
85 return const_resource_plane_order_YUV;
86
87 default:
88 return NULL;
89 }
90 }
91
92 static enum pipe_format
vl_video_buffer_surface_format(enum pipe_format format)93 vl_video_buffer_surface_format(enum pipe_format format)
94 {
95 const struct util_format_description *desc = util_format_description(format);
96
97 /* a subsampled formats can't work as surface use RGBA instead */
98 if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED)
99 return PIPE_FORMAT_R8G8B8A8_UNORM;
100
101 return format;
102 }
103
104 bool
vl_video_buffer_is_format_supported(struct pipe_screen * screen,enum pipe_format format,enum pipe_video_profile profile,enum pipe_video_entrypoint entrypoint)105 vl_video_buffer_is_format_supported(struct pipe_screen *screen,
106 enum pipe_format format,
107 enum pipe_video_profile profile,
108 enum pipe_video_entrypoint entrypoint)
109 {
110 enum pipe_format resource_formats[VL_NUM_COMPONENTS];
111 unsigned i;
112
113 vl_get_video_buffer_formats(screen, format, resource_formats);
114
115 for (i = 0; i < VL_NUM_COMPONENTS; ++i) {
116 enum pipe_format format = resource_formats[i];
117
118 if (format == PIPE_FORMAT_NONE)
119 continue;
120
121 /* we at least need to sample from it */
122 if (!screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, 0, 0, PIPE_BIND_SAMPLER_VIEW))
123 return false;
124
125 format = vl_video_buffer_surface_format(format);
126 if (!screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, 0, 0, PIPE_BIND_RENDER_TARGET))
127 return false;
128 }
129
130 return true;
131 }
132
133 unsigned
vl_video_buffer_max_size(struct pipe_screen * screen)134 vl_video_buffer_max_size(struct pipe_screen *screen)
135 {
136 return screen->get_param(screen, PIPE_CAP_MAX_TEXTURE_2D_SIZE);
137 }
138
139 void
vl_video_buffer_set_associated_data(struct pipe_video_buffer * vbuf,struct pipe_video_codec * vcodec,void * associated_data,void (* destroy_associated_data)(void *))140 vl_video_buffer_set_associated_data(struct pipe_video_buffer *vbuf,
141 struct pipe_video_codec *vcodec,
142 void *associated_data,
143 void (*destroy_associated_data)(void *))
144 {
145 vbuf->codec = vcodec;
146
147 if (vbuf->associated_data == associated_data)
148 return;
149
150 if (vbuf->associated_data)
151 vbuf->destroy_associated_data(vbuf->associated_data);
152
153 vbuf->associated_data = associated_data;
154 vbuf->destroy_associated_data = destroy_associated_data;
155 }
156
157 void *
vl_video_buffer_get_associated_data(struct pipe_video_buffer * vbuf,struct pipe_video_codec * vcodec)158 vl_video_buffer_get_associated_data(struct pipe_video_buffer *vbuf,
159 struct pipe_video_codec *vcodec)
160 {
161 if (vbuf->codec == vcodec)
162 return vbuf->associated_data;
163 else
164 return NULL;
165 }
166
167 void
vl_video_buffer_template(struct pipe_resource * templ,const struct pipe_video_buffer * tmpl,enum pipe_format resource_format,unsigned depth,unsigned array_size,unsigned usage,unsigned plane,enum pipe_video_chroma_format chroma_format)168 vl_video_buffer_template(struct pipe_resource *templ,
169 const struct pipe_video_buffer *tmpl,
170 enum pipe_format resource_format,
171 unsigned depth, unsigned array_size,
172 unsigned usage, unsigned plane,
173 enum pipe_video_chroma_format chroma_format)
174 {
175 unsigned height = tmpl->height;
176
177 memset(templ, 0, sizeof(*templ));
178 if (depth > 1)
179 templ->target = PIPE_TEXTURE_3D;
180 else if (array_size > 1)
181 templ->target = PIPE_TEXTURE_2D_ARRAY;
182 else
183 templ->target = PIPE_TEXTURE_2D;
184 templ->format = resource_format;
185 templ->width0 = tmpl->width;
186 templ->depth0 = depth;
187 templ->array_size = array_size;
188 templ->bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET | tmpl->bind;
189 templ->usage = usage;
190
191 vl_video_buffer_adjust_size(&templ->width0, &height, plane,
192 chroma_format, false);
193 templ->height0 = height;
194 }
195
196 static void
vl_video_buffer_destroy(struct pipe_video_buffer * buffer)197 vl_video_buffer_destroy(struct pipe_video_buffer *buffer)
198 {
199 struct vl_video_buffer *buf = (struct vl_video_buffer *)buffer;
200 unsigned i;
201
202 assert(buf);
203
204 for (i = 0; i < VL_NUM_COMPONENTS; ++i) {
205 pipe_sampler_view_reference(&buf->sampler_view_planes[i], NULL);
206 pipe_sampler_view_reference(&buf->sampler_view_components[i], NULL);
207 pipe_resource_reference(&buf->resources[i], NULL);
208 }
209
210 for (i = 0; i < VL_MAX_SURFACES; ++i)
211 pipe_surface_reference(&buf->surfaces[i], NULL);
212
213 vl_video_buffer_set_associated_data(buffer, NULL, NULL, NULL);
214
215 FREE(buffer);
216 }
217
218 static struct pipe_sampler_view **
vl_video_buffer_sampler_view_planes(struct pipe_video_buffer * buffer)219 vl_video_buffer_sampler_view_planes(struct pipe_video_buffer *buffer)
220 {
221 struct vl_video_buffer *buf = (struct vl_video_buffer *)buffer;
222 struct pipe_sampler_view sv_templ;
223 struct pipe_context *pipe;
224 unsigned i;
225
226 assert(buf);
227
228 pipe = buf->base.context;
229
230 for (i = 0; i < buf->num_planes; ++i ) {
231 if (!buf->sampler_view_planes[i]) {
232 memset(&sv_templ, 0, sizeof(sv_templ));
233 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format);
234
235 if (util_format_get_nr_components(buf->resources[i]->format) == 1)
236 sv_templ.swizzle_r = sv_templ.swizzle_g = sv_templ.swizzle_b = sv_templ.swizzle_a = PIPE_SWIZZLE_X;
237
238 buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ);
239 if (!buf->sampler_view_planes[i])
240 goto error;
241 }
242 }
243
244 return buf->sampler_view_planes;
245
246 error:
247 for (i = 0; i < buf->num_planes; ++i )
248 pipe_sampler_view_reference(&buf->sampler_view_planes[i], NULL);
249
250 return NULL;
251 }
252
253 static struct pipe_sampler_view **
vl_video_buffer_sampler_view_components(struct pipe_video_buffer * buffer)254 vl_video_buffer_sampler_view_components(struct pipe_video_buffer *buffer)
255 {
256 struct vl_video_buffer *buf = (struct vl_video_buffer *)buffer;
257 struct pipe_sampler_view sv_templ;
258 struct pipe_context *pipe;
259 enum pipe_format sampler_format[VL_NUM_COMPONENTS];
260 const unsigned *plane_order;
261 unsigned i, j, component;
262
263 assert(buf);
264
265 pipe = buf->base.context;
266
267 vl_get_video_buffer_formats(pipe->screen, buf->base.buffer_format, sampler_format);
268 plane_order = vl_video_buffer_plane_order(buf->base.buffer_format);
269
270 for (component = 0, i = 0; i < buf->num_planes; ++i ) {
271 struct pipe_resource *res = buf->resources[plane_order[i]];
272 const struct util_format_description *desc = util_format_description(res->format);
273 unsigned nr_components = util_format_get_nr_components(res->format);
274 if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED)
275 nr_components = 3;
276
277 for (j = 0; j < nr_components && component < VL_NUM_COMPONENTS; ++j, ++component) {
278 if (buf->sampler_view_components[component])
279 continue;
280
281 memset(&sv_templ, 0, sizeof(sv_templ));
282 u_sampler_view_default_template(&sv_templ, res, sampler_format[plane_order[i]]);
283 sv_templ.swizzle_r = sv_templ.swizzle_g = sv_templ.swizzle_b = PIPE_SWIZZLE_X + j;
284 sv_templ.swizzle_a = PIPE_SWIZZLE_1;
285 buf->sampler_view_components[component] = pipe->create_sampler_view(pipe, res, &sv_templ);
286 if (!buf->sampler_view_components[component])
287 goto error;
288 }
289 }
290 assert(component == VL_NUM_COMPONENTS);
291
292 return buf->sampler_view_components;
293
294 error:
295 for (i = 0; i < VL_NUM_COMPONENTS; ++i )
296 pipe_sampler_view_reference(&buf->sampler_view_components[i], NULL);
297
298 return NULL;
299 }
300
301 static struct pipe_surface **
vl_video_buffer_surfaces(struct pipe_video_buffer * buffer)302 vl_video_buffer_surfaces(struct pipe_video_buffer *buffer)
303 {
304 struct vl_video_buffer *buf = (struct vl_video_buffer *)buffer;
305 struct pipe_surface surf_templ;
306 struct pipe_context *pipe;
307 unsigned i, j, array_size, surf;
308
309 assert(buf);
310
311 pipe = buf->base.context;
312
313 array_size = buffer->interlaced ? 2 : 1;
314 for (i = 0, surf = 0; i < VL_NUM_COMPONENTS; ++i) {
315 for (j = 0; j < array_size; ++j, ++surf) {
316 assert(surf < VL_MAX_SURFACES);
317
318 if (!buf->resources[i]) {
319 pipe_surface_reference(&buf->surfaces[surf], NULL);
320 continue;
321 }
322
323 if (!buf->surfaces[surf]) {
324 memset(&surf_templ, 0, sizeof(surf_templ));
325 surf_templ.format = vl_video_buffer_surface_format(buf->resources[i]->format);
326 surf_templ.u.tex.first_layer = surf_templ.u.tex.last_layer = j;
327 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[i], &surf_templ);
328 if (!buf->surfaces[surf])
329 goto error;
330 }
331 }
332 }
333
334 return buf->surfaces;
335
336 error:
337 for (i = 0; i < VL_MAX_SURFACES; ++i )
338 pipe_surface_reference(&buf->surfaces[i], NULL);
339
340 return NULL;
341 }
342
343 struct pipe_video_buffer *
vl_video_buffer_create(struct pipe_context * pipe,const struct pipe_video_buffer * tmpl)344 vl_video_buffer_create(struct pipe_context *pipe,
345 const struct pipe_video_buffer *tmpl)
346 {
347 enum pipe_format resource_formats[VL_NUM_COMPONENTS];
348 struct pipe_video_buffer templat, *result;
349 bool pot_buffers;
350
351 assert(pipe);
352 assert(tmpl->width > 0 && tmpl->height > 0);
353
354 pot_buffers = !pipe->screen->get_video_param
355 (
356 pipe->screen,
357 PIPE_VIDEO_PROFILE_UNKNOWN,
358 PIPE_VIDEO_ENTRYPOINT_UNKNOWN,
359 PIPE_VIDEO_CAP_NPOT_TEXTURES
360 );
361
362 vl_get_video_buffer_formats(pipe->screen, tmpl->buffer_format, resource_formats);
363
364 templat = *tmpl;
365 templat.width = pot_buffers ? util_next_power_of_two(tmpl->width)
366 : align(tmpl->width, VL_MACROBLOCK_WIDTH);
367 templat.height = pot_buffers ? util_next_power_of_two(tmpl->height)
368 : align(tmpl->height, VL_MACROBLOCK_HEIGHT);
369
370 if (tmpl->interlaced)
371 templat.height /= 2;
372
373 result = vl_video_buffer_create_ex
374 (
375 pipe, &templat, resource_formats,
376 1, tmpl->interlaced ? 2 : 1, PIPE_USAGE_DEFAULT,
377 pipe_format_to_chroma_format(templat.buffer_format)
378 );
379
380
381 if (result && tmpl->interlaced)
382 result->height *= 2;
383
384 return result;
385 }
386
387 struct pipe_video_buffer *
vl_video_buffer_create_ex(struct pipe_context * pipe,const struct pipe_video_buffer * tmpl,const enum pipe_format resource_formats[VL_NUM_COMPONENTS],unsigned depth,unsigned array_size,unsigned usage,enum pipe_video_chroma_format chroma_format)388 vl_video_buffer_create_ex(struct pipe_context *pipe,
389 const struct pipe_video_buffer *tmpl,
390 const enum pipe_format resource_formats[VL_NUM_COMPONENTS],
391 unsigned depth, unsigned array_size, unsigned usage,
392 enum pipe_video_chroma_format chroma_format)
393 {
394 struct pipe_resource res_tmpl;
395 struct pipe_resource *resources[VL_NUM_COMPONENTS];
396 unsigned i;
397
398 assert(pipe);
399
400 memset(resources, 0, sizeof resources);
401
402 vl_video_buffer_template(&res_tmpl, tmpl, resource_formats[0], depth, array_size,
403 usage, 0, chroma_format);
404 resources[0] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
405 if (!resources[0])
406 goto error;
407
408 if (resource_formats[1] == PIPE_FORMAT_NONE) {
409 assert(resource_formats[2] == PIPE_FORMAT_NONE);
410 return vl_video_buffer_create_ex2(pipe, tmpl, resources);
411 }
412
413 vl_video_buffer_template(&res_tmpl, tmpl, resource_formats[1], depth, array_size,
414 usage, 1, chroma_format);
415 resources[1] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
416 if (!resources[1])
417 goto error;
418
419 if (resource_formats[2] == PIPE_FORMAT_NONE)
420 return vl_video_buffer_create_ex2(pipe, tmpl, resources);
421
422 vl_video_buffer_template(&res_tmpl, tmpl, resource_formats[2], depth, array_size,
423 usage, 2, chroma_format);
424 resources[2] = pipe->screen->resource_create(pipe->screen, &res_tmpl);
425 if (!resources[2])
426 goto error;
427
428 return vl_video_buffer_create_ex2(pipe, tmpl, resources);
429
430 error:
431 for (i = 0; i < VL_NUM_COMPONENTS; ++i)
432 pipe_resource_reference(&resources[i], NULL);
433
434 return NULL;
435 }
436
437 struct pipe_video_buffer *
vl_video_buffer_create_ex2(struct pipe_context * pipe,const struct pipe_video_buffer * tmpl,struct pipe_resource * resources[VL_NUM_COMPONENTS])438 vl_video_buffer_create_ex2(struct pipe_context *pipe,
439 const struct pipe_video_buffer *tmpl,
440 struct pipe_resource *resources[VL_NUM_COMPONENTS])
441 {
442 struct vl_video_buffer *buffer;
443 unsigned i;
444
445 buffer = CALLOC_STRUCT(vl_video_buffer);
446 if (!buffer)
447 return NULL;
448
449 buffer->base = *tmpl;
450 buffer->base.context = pipe;
451 buffer->base.destroy = vl_video_buffer_destroy;
452 buffer->base.get_sampler_view_planes = vl_video_buffer_sampler_view_planes;
453 buffer->base.get_sampler_view_components = vl_video_buffer_sampler_view_components;
454 buffer->base.get_surfaces = vl_video_buffer_surfaces;
455 buffer->num_planes = 0;
456
457 for (i = 0; i < VL_NUM_COMPONENTS; ++i) {
458 buffer->resources[i] = resources[i];
459 if (resources[i])
460 buffer->num_planes++;
461 }
462
463 return &buffer->base;
464 }
465
466 /* Create pipe_video_buffer by using resource_create with planar formats. */
467 struct pipe_video_buffer *
vl_video_buffer_create_as_resource(struct pipe_context * pipe,const struct pipe_video_buffer * tmpl)468 vl_video_buffer_create_as_resource(struct pipe_context *pipe,
469 const struct pipe_video_buffer *tmpl)
470 {
471 struct pipe_resource templ, *resources[VL_NUM_COMPONENTS] = {0};
472 unsigned array_size = tmpl->interlaced ? 2 : 1;
473
474 memset(&templ, 0, sizeof(templ));
475 templ.target = array_size > 1 ? PIPE_TEXTURE_2D_ARRAY : PIPE_TEXTURE_2D;
476 templ.width0 = align(tmpl->width, VL_MACROBLOCK_WIDTH);
477 templ.height0 = align(tmpl->height / array_size, VL_MACROBLOCK_HEIGHT);
478 templ.depth0 = 1;
479 templ.array_size = array_size;
480 templ.bind = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET | tmpl->bind;
481 templ.usage = PIPE_USAGE_DEFAULT;
482
483 if (tmpl->buffer_format == PIPE_FORMAT_YUYV)
484 templ.format = PIPE_FORMAT_R8G8_R8B8_UNORM;
485 else if (tmpl->buffer_format == PIPE_FORMAT_UYVY)
486 templ.format = PIPE_FORMAT_G8R8_B8R8_UNORM;
487 else
488 templ.format = tmpl->buffer_format;
489
490 resources[0] = pipe->screen->resource_create(pipe->screen, &templ);
491 if (!resources[0])
492 return NULL;
493
494 if (resources[0]->next) {
495 pipe_resource_reference(&resources[1], resources[0]->next);
496 if (resources[1]->next)
497 pipe_resource_reference(&resources[2], resources[1]->next);
498 }
499
500 struct pipe_video_buffer vidtemplate = *tmpl;
501 vidtemplate.width = templ.width0;
502 vidtemplate.height = templ.height0 * array_size;
503 return vl_video_buffer_create_ex2(pipe, &vidtemplate, resources);
504 }
505