OSDN Git Service

Bump wayland-client dependency to 1.11.0
[android-x86/hardware-intel-common-libva.git] / va / va_tpi.c
1 /*
2  * Copyright (c) 2007 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 #define _GNU_SOURCE 1
26 #include "sysdeps.h"
27 #include "va.h"
28 #include "va_backend.h"
29 #include "va_backend_tpi.h"
30
31 #include <assert.h>
32 #include <stdarg.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <dlfcn.h>
37 #include <unistd.h>
38
39 #define CTX(dpy) (((VADisplayContextP)dpy)->pDriverContext)
40 #define CHECK_DISPLAY(dpy) if( !vaDisplayIsValid(dpy) ) { return VA_STATUS_ERROR_INVALID_DISPLAY; }
41
42
43 /*
44  * Create surfaces with special inputs/requirements
45  */
46 VAStatus vaCreateSurfacesWithAttribute (
47         VADisplay dpy,
48         int width,
49         int height,
50         int format,
51         int num_surfaces,
52         VASurfaceID *surfaces,       /* out */
53         VASurfaceAttributeTPI *attribute_tpi
54 )
55 {
56   VADriverContextP ctx;
57   struct VADriverVTableTPI *tpi;
58   CHECK_DISPLAY(dpy);
59   ctx = CTX(dpy);
60
61   tpi = (struct VADriverVTableTPI *)ctx->vtable_tpi;
62   if (tpi && tpi->vaCreateSurfacesWithAttribute) {
63       return tpi->vaCreateSurfacesWithAttribute( ctx, width, height, format, num_surfaces, surfaces, attribute_tpi);
64   } else
65       return VA_STATUS_ERROR_UNIMPLEMENTED;
66 }
67
68
69 VAStatus vaPutSurfaceBuf (
70     VADisplay dpy,
71     VASurfaceID surface,
72     unsigned char* data,
73     int* data_len,
74     short srcx,
75     short srcy,
76     unsigned short srcw,
77     unsigned short srch,
78     short destx,
79     short desty,
80     unsigned short destw,
81     unsigned short desth,
82     VARectangle *cliprects, /* client supplied clip list */
83     unsigned int number_cliprects, /* number of clip rects in the clip list */
84     unsigned int flags /* de-interlacing flags */
85 )
86 {
87   VADriverContextP ctx;
88   struct VADriverVTableTPI *tpi;
89   CHECK_DISPLAY(dpy);
90   ctx = CTX(dpy);
91   
92   tpi = ( struct VADriverVTableTPI *)ctx->vtable_tpi;
93   if (tpi && tpi->vaPutSurfaceBuf) {
94       return tpi->vaPutSurfaceBuf( ctx, surface, data, data_len, srcx, srcy, srcw, srch,
95                                   destx, desty, destw, desth, cliprects, number_cliprects, flags );
96   } else
97       return VA_STATUS_ERROR_UNIMPLEMENTED;
98 }