OSDN Git Service

Add vaPutSurfaceBuf to va_backend_tpi.h and va_tpi.c[h], update Android.mk for new...
[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 "va.h"
27 #include "va_backend.h"
28 #include "va_backend_tpi.h"
29 #include "config.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 #ifdef ANDROID
43 #define Drawable unsigned int
44 #endif
45
46 static int vaDisplayIsValid (VADisplay dpy)
47 {
48     VADisplayContextP pDisplayContext = (VADisplayContextP)dpy;
49     return pDisplayContext && (pDisplayContext->vadpy_magic == VA_DISPLAY_MAGIC) && pDisplayContext->vaIsValid(pDisplayContext);
50 }
51
52 /* Wrap a CI (camera imaging) frame as a VA surface to share captured video between camear
53  * and VA encode. With frame_id, VA driver need to call CI interfaces to get the information
54  * of the frame, and to determine if the frame can be wrapped as a VA surface
55  *
56  * Application should make sure the frame is idle before the frame is passed into VA stack
57  * and also a vaSyncSurface should be called before application tries to access the frame
58  * from CI stack
59  */
60 VAStatus vaCreateSurfaceFromCIFrame (
61     VADisplay dpy,
62     unsigned long frame_id,
63     VASurfaceID *surface        /* out */
64 )
65 {
66   VADriverContextP ctx;
67   struct VADriverVTableTPI *tpi;
68   CHECK_DISPLAY(dpy);
69   ctx = CTX(dpy);
70   
71   tpi = ( struct VADriverVTableTPI *)ctx->vtable_tpi;
72   if (tpi && tpi->vaCreateSurfaceFromCIFrame) {
73       return tpi->vaCreateSurfaceFromCIFrame( ctx, frame_id, surface );
74   } else
75       return VA_STATUS_ERROR_UNIMPLEMENTED;
76   
77 }
78
79 /* Wrap a V4L2 buffer as a VA surface, so that V4L2 camera, VA encode
80  * can share the data without copy
81  * The VA driver should query the camera device from v4l2_fd to see
82  * if camera device memory/buffer can be wrapped into a VA surface
83  * Buffer information is passed in by v4l2_fmt and v4l2_buf structure,
84  * VA driver also needs do further check if the buffer can meet encode
85  * hardware requirement, such as dimension, fourcc, stride, etc
86  *
87  * Application should make sure the buffer is idle before the frame into VA stack
88  * and also a vaSyncSurface should be called before application tries to access the frame
89  * from V4L2 stack
90  */
91 VAStatus vaCreateSurfaceFromV4L2Buf(
92     VADisplay dpy,
93     int v4l2_fd,         /* file descriptor of V4L2 device */
94     struct v4l2_format *v4l2_fmt,       /* format of V4L2 */
95     struct v4l2_buffer *v4l2_buf,       /* V4L2 buffer */
96     VASurfaceID *surface               /* out */
97 )
98 {
99   VADriverContextP ctx;
100   struct VADriverVTableTPI *tpi;
101   CHECK_DISPLAY(dpy);
102   ctx = CTX(dpy);
103   
104   tpi = ( struct VADriverVTableTPI *)ctx->vtable_tpi;
105   if (tpi && tpi->vaCreateSurfaceFromV4L2Buf) {
106       return tpi->vaCreateSurfaceFromV4L2Buf( ctx, v4l2_fd, v4l2_fmt, v4l2_buf, surface );
107   } else
108       return VA_STATUS_ERROR_UNIMPLEMENTED;
109 }
110
111 VAStatus vaPutSurfaceBuf (
112     VADisplay dpy,
113     VASurfaceID surface,
114     Drawable draw, /* Android Surface/Window */
115     unsigned char* data,
116     int* data_len,
117     short srcx,
118     short srcy,
119     unsigned short srcw,
120     unsigned short srch,
121     short destx,
122     short desty,
123     unsigned short destw,
124     unsigned short desth,
125     VARectangle *cliprects, /* client supplied clip list */
126     unsigned int number_cliprects, /* number of clip rects in the clip list */
127     unsigned int flags /* de-interlacing flags */
128 )
129 {
130   VADriverContextP ctx;
131   struct VADriverVTableTPI *tpi;
132   CHECK_DISPLAY(dpy);
133   ctx = CTX(dpy);
134   
135   tpi = ( struct VADriverVTableTPI *)ctx->vtable_tpi;
136   if (tpi && tpi->vaPutSurfaceBuf) {
137       return tpi->vaPutSurfaceBuf( ctx, surface, draw, data, data_len, srcx, srcy, srcw, srch,
138                                       destx, desty, destw, desth, cliprects, number_cliprects, flags );
139   } else
140       return VA_STATUS_ERROR_UNIMPLEMENTED;
141 }