va_backend.h 10.6 KB
Newer Older
root's avatar
root committed
1
/*
Waldo Bastian's avatar
Waldo Bastian committed
2
 * Copyright (c) 2007 Intel Corporation. All Rights Reserved.
root's avatar
root committed
3
 *
Waldo Bastian's avatar
Waldo Bastian committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

/*
 * Video Decode Acceleration -Backend API
root's avatar
root committed
27 28 29 30 31
 */

#ifndef _VA_BACKEND_H_
#define _VA_BACKEND_H_

32
#ifdef IN_LIBVA
root's avatar
root committed
33
#include "va.h"
Austin Yuan's avatar
Austin Yuan committed
34
#include "X11/va_x11.h"
35 36
#else
#include <va/va.h>
Ren, Zhaohan's avatar
Ren, Zhaohan committed
37
#include <va/va_x11.h>
38
#endif
root's avatar
root committed
39 40

#include <stdlib.h>
41
#include <linux/videodev2.h>
root's avatar
root committed
42

Waldo Bastian's avatar
Waldo Bastian committed
43

root's avatar
root committed
44
typedef struct VADriverContext *VADriverContextP;
45
typedef struct VADisplayContext *VADisplayContextP;
root's avatar
root committed
46

Waldo Bastian's avatar
Waldo Bastian committed
47
struct VADriverVTable
root's avatar
root committed
48
{
Waldo Bastian's avatar
Waldo Bastian committed
49
	VAStatus (*vaTerminate) ( VADriverContextP ctx );
root's avatar
root committed
50

Waldo Bastian's avatar
Waldo Bastian committed
51
	VAStatus (*vaQueryConfigProfiles) (
root's avatar
root committed
52 53 54 55 56
		VADriverContextP ctx,
		VAProfile *profile_list,	/* out */
		int *num_profiles			/* out */
	);

root's avatar
root committed
57
	VAStatus (*vaQueryConfigEntrypoints) (
root's avatar
root committed
58 59 60 61 62 63
		VADriverContextP ctx,
		VAProfile profile,
		VAEntrypoint  *entrypoint_list,	/* out */
		int *num_entrypoints			/* out */
	);

64
	VAStatus (*vaGetConfigAttributes) (
root's avatar
root committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
		VADriverContextP ctx,
		VAProfile profile,
		VAEntrypoint entrypoint,
		VAConfigAttrib *attrib_list,	/* in/out */
		int num_attribs
	);

	VAStatus (*vaCreateConfig) (
		VADriverContextP ctx,
		VAProfile profile, 
		VAEntrypoint entrypoint, 
		VAConfigAttrib *attrib_list,
		int num_attribs,
		VAConfigID *config_id		/* out */
	);

Waldo Bastian's avatar
Waldo Bastian committed
81 82 83 84 85
	VAStatus (*vaDestroyConfig) (
		VADriverContextP ctx,
		VAConfigID config_id
	);

86
	VAStatus (*vaQueryConfigAttributes) (
root's avatar
root committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100
		VADriverContextP ctx,
		VAConfigID config_id, 
		VAProfile *profile,		/* out */
		VAEntrypoint *entrypoint, 	/* out */
		VAConfigAttrib *attrib_list,	/* out */
		int *num_attribs		/* out */
	);

	VAStatus (*vaCreateSurfaces) (
		VADriverContextP ctx,
		int width,
		int height,
		int format,
		int num_surfaces,
Waldo Bastian's avatar
Waldo Bastian committed
101
		VASurfaceID *surfaces		/* out */
root's avatar
root committed
102 103
	);

Waldo Bastian's avatar
Waldo Bastian committed
104
	VAStatus (*vaDestroySurfaces) (
root's avatar
root committed
105
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
106
		VASurfaceID *surface_list,
root's avatar
root committed
107 108 109 110 111 112 113 114 115
		int num_surfaces
	);

	VAStatus (*vaCreateContext) (
		VADriverContextP ctx,
		VAConfigID config_id,
		int picture_width,
		int picture_height,
		int flag,
Waldo Bastian's avatar
Waldo Bastian committed
116
		VASurfaceID *render_targets,
root's avatar
root committed
117
		int num_render_targets,
Waldo Bastian's avatar
Waldo Bastian committed
118
		VAContextID *context		/* out */
root's avatar
root committed
119 120 121 122
	);

	VAStatus (*vaDestroyContext) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
123
		VAContextID context
root's avatar
root committed
124 125 126 127
	);

	VAStatus (*vaCreateBuffer) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
128 129 130
		VAContextID context,		/* in */
		VABufferType type,		/* in */
		unsigned int size,		/* in */
131
		unsigned int num_elements,	/* in */
Waldo Bastian's avatar
Waldo Bastian committed
132 133
		void *data,			/* in */
		VABufferID *buf_id		/* out */
root's avatar
root committed
134 135 136 137 138
	);

	VAStatus (*vaBufferSetNumElements) (
		VADriverContextP ctx,
		VABufferID buf_id,	/* in */
139
		unsigned int num_elements	/* in */
root's avatar
root committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	);

	VAStatus (*vaMapBuffer) (
		VADriverContextP ctx,
		VABufferID buf_id,	/* in */
		void **pbuf         /* out */
	);

	VAStatus (*vaUnmapBuffer) (
		VADriverContextP ctx,
		VABufferID buf_id	/* in */
	);

	VAStatus (*vaDestroyBuffer) (
		VADriverContextP ctx,
		VABufferID buffer_id
	);

	VAStatus (*vaBeginPicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
160 161
		VAContextID context,
		VASurfaceID render_target
root's avatar
root committed
162 163 164 165
	);

	VAStatus (*vaRenderPicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
166
		VAContextID context,
root's avatar
root committed
167 168 169 170 171 172
		VABufferID *buffers,
		int num_buffers
	);

	VAStatus (*vaEndPicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
173
		VAContextID context
root's avatar
root committed
174 175 176 177
	);

	VAStatus (*vaSyncSurface) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
178 179
		VAContextID context,
		VASurfaceID render_target
root's avatar
root committed
180 181 182 183
	);

	VAStatus (*vaQuerySurfaceStatus) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
184
		VASurfaceID render_target,
root's avatar
root committed
185 186 187 188 189
		VASurfaceStatus *status	/* out */
	);

	VAStatus (*vaPutSurface) (
    		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
190
		VASurfaceID surface,
root's avatar
root committed
191 192 193 194 195 196 197 198 199
		Drawable draw, /* X Drawable */
		short srcx,
		short srcy,
		unsigned short srcw,
		unsigned short srch,
		short destx,
		short desty,
		unsigned short destw,
		unsigned short desth,
root's avatar
root committed
200 201
		VARectangle *cliprects, /* client supplied clip list */
		unsigned int number_cliprects, /* number of clip rects in the clip list */
Waldo Bastian's avatar
Waldo Bastian committed
202
		unsigned int flags /* de-interlacing flags */
root's avatar
root committed
203 204
	);

root's avatar
root committed
205 206 207 208 209 210 211 212 213 214 215 216 217 218
	VAStatus (*vaQueryImageFormats) (
		VADriverContextP ctx,
		VAImageFormat *format_list,        /* out */
		int *num_formats           /* out */
	);

	VAStatus (*vaCreateImage) (
		VADriverContextP ctx,
		VAImageFormat *format,
		int width,
		int height,
		VAImage *image     /* out */
	);

Waldo Bastian's avatar
Waldo Bastian committed
219 220 221 222 223 224
	VAStatus (*vaDeriveImage) (
		VADriverContextP ctx,
		VASurfaceID surface,
		VAImage *image     /* out */
	);

root's avatar
root committed
225 226
	VAStatus (*vaDestroyImage) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
227
		VAImageID image
root's avatar
root committed
228
	);
Waldo Bastian's avatar
Waldo Bastian committed
229 230 231 232 233 234 235 236 237 238 239 240
	
	VAStatus (*vaSetImagePalette) (
	        VADriverContextP ctx,
	        VAImageID image,
	        /*
                 * pointer to an array holding the palette data.  The size of the array is
                 * num_palette_entries * entry_bytes in size.  The order of the components
                 * in the palette is described by the component_order in VAImage struct
                 */
                unsigned char *palette
	);
	
root's avatar
root committed
241 242
	VAStatus (*vaGetImage) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
243
		VASurfaceID surface,
root's avatar
root committed
244 245 246 247
		int x,     /* coordinates of the upper left source pixel */
		int y,
		unsigned int width, /* width and height of the region */
		unsigned int height,
Waldo Bastian's avatar
Waldo Bastian committed
248
		VAImageID image
root's avatar
root committed
249 250 251 252
	);

	VAStatus (*vaPutImage) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
253 254
		VASurfaceID surface,
		VAImageID image,
root's avatar
root committed
255 256 257 258 259 260 261 262
		int src_x,
		int src_y,
		unsigned int width,
		unsigned int height,
		int dest_x,
		int dest_y 
	);

Waldo Bastian's avatar
Waldo Bastian committed
263 264 265 266 267 268 269 270 271 272 273 274 275 276
	VAStatus (*vaPutImage2) (
		VADriverContextP ctx,
		VASurfaceID surface,
		VAImageID image,
		int src_x,
		int src_y,
		unsigned int src_width,
		unsigned int src_height,
		int dest_x,
		int dest_y,
		unsigned int dest_width,
		unsigned int dest_height
	);

root's avatar
root committed
277 278 279 280 281 282 283 284 285
	VAStatus (*vaQuerySubpictureFormats) (
		VADriverContextP ctx,
		VAImageFormat *format_list,        /* out */
		unsigned int *flags,       /* out */
		unsigned int *num_formats  /* out */
	);

	VAStatus (*vaCreateSubpicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
286 287
		VAImageID image,
		VASubpictureID *subpicture   /* out */
root's avatar
root committed
288 289 290 291
	);

	VAStatus (*vaDestroySubpicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
292
		VASubpictureID subpicture
root's avatar
root committed
293 294
	);

Austin Yuan's avatar
Austin Yuan committed
295 296
        VAStatus (*vaSetSubpictureImage) (
                VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
297 298
                VASubpictureID subpicture,
                VAImageID image
Austin Yuan's avatar
Austin Yuan committed
299 300
        );
        
root's avatar
root committed
301 302
	VAStatus (*vaSetSubpictureChromakey) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
303
		VASubpictureID subpicture,
root's avatar
root committed
304
		unsigned int chromakey_min,
Waldo Bastian's avatar
Waldo Bastian committed
305 306
		unsigned int chromakey_max,
		unsigned int chromakey_mask
root's avatar
root committed
307 308 309 310
	);

	VAStatus (*vaSetSubpictureGlobalAlpha) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
311
		VASubpictureID subpicture,
root's avatar
root committed
312 313 314 315 316
		float global_alpha 
	);

	VAStatus (*vaAssociateSubpicture) (
		VADriverContextP ctx,
Waldo Bastian's avatar
Waldo Bastian committed
317 318 319
		VASubpictureID subpicture,
		VASurfaceID *target_surfaces,
		int num_surfaces,
root's avatar
root committed
320 321 322 323 324 325 326 327 328 329 330 331 332
		short src_x, /* upper left offset in subpicture */
		short src_y,
		short dest_x, /* upper left offset in surface */
		short dest_y,
		unsigned short width,
		unsigned short height,
		/*
		 * whether to enable chroma-keying or global-alpha
		 * see VA_SUBPICTURE_XXX values
		 */
		unsigned int flags
	);

Waldo Bastian's avatar
Waldo Bastian committed
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
	VAStatus (*vaAssociateSubpicture2) (
		VADriverContextP ctx,
		VASubpictureID subpicture,
		VASurfaceID *target_surfaces,
		int num_surfaces,
		short src_x, /* upper left offset in subpicture */
		short src_y,
		unsigned short src_width,
		unsigned short src_height,
		short dest_x, /* upper left offset in surface */
		short dest_y,
		unsigned short dest_width,
		unsigned short dest_height,
		/*
		 * whether to enable chroma-keying or global-alpha
		 * see VA_SUBPICTURE_XXX values
		 */
		unsigned int flags
	);

Waldo Bastian's avatar
Waldo Bastian committed
353 354 355 356 357 358 359
	VAStatus (*vaDeassociateSubpicture) (
		VADriverContextP ctx,
		VASubpictureID subpicture,
		VASurfaceID *target_surfaces,
		int num_surfaces
	);

Waldo Bastian's avatar
Waldo Bastian committed
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
	VAStatus (*vaQueryDisplayAttributes) (
		VADriverContextP ctx,
		VADisplayAttribute *attr_list,	/* out */
		int *num_attributes		/* out */
        );

	VAStatus (*vaGetDisplayAttributes) (
		VADriverContextP ctx,
		VADisplayAttribute *attr_list,	/* in/out */
		int num_attributes
        );
        
        VAStatus (*vaSetDisplayAttributes) (
		VADriverContextP ctx,
                VADisplayAttribute *attr_list,
                int num_attributes
        );

378 379
        /* device specific */
	VAStatus (*vaCreateSurfaceFromCIFrame) (
root's avatar
root committed
380
		VADriverContextP ctx,
381 382
		unsigned long frame_id,
		VASurfaceID *surface		/* out */
root's avatar
root committed
383
	);
384 385
    
    
386 387 388 389 390 391
        VAStatus (*vaCreateSurfaceFromV4L2Buf) (
		VADriverContextP ctx,
                int v4l2_fd,         /* file descriptor of V4L2 device */
                struct v4l2_format *v4l2_fmt,       /* format of V4L2 */
                struct v4l2_buffer *v4l2_buf,       /* V4L2 buffer */
                VASurfaceID *surface	           /* out */
392
        );
393 394 395 396 397 398 399 400 401 402 403 404 405
    
        VAStatus (*vaCopySurfaceToBuffer) (
		VADriverContextP ctx,
                VASurfaceID surface,
                unsigned int *fourcc, /* out  for follow argument */
                unsigned int *luma_stride,
                unsigned int *chroma_u_stride,
                unsigned int *chroma_v_stride,
                unsigned int *luma_offset,
                unsigned int *chroma_u_offset,
                unsigned int *chroma_v_offset,
                void **buffer
        );
Waldo Bastian's avatar
Waldo Bastian committed
406 407 408 409
};

struct VADriverContext
{
410
    void *old_pNext;			/* preserved for binary compatibility */
Waldo Bastian's avatar
Waldo Bastian committed
411 412 413 414 415 416

    void *pDriverData;
    struct VADriverVTable vtable;

    Display *x11_dpy;
    int x11_screen;
Austin Yuan's avatar
Austin Yuan committed
417
    int dri2;
Waldo Bastian's avatar
Waldo Bastian committed
418 419 420 421 422 423 424 425 426 427 428
    int version_major;
    int version_minor;
    int max_profiles;
    int max_entrypoints;
    int max_attributes;
    int max_image_formats;
    int max_subpic_formats;
    int max_display_attributes;
    const char *str_vendor;

    void *handle;			/* dlopen handle */
root's avatar
root committed
429 430
};

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
struct VADisplayContext
{
    VADisplayContextP pNext;
    VADriverContextP pDriverContext;

    int (*vaIsValid) (
	VADisplayContextP ctx
    );

    void (*vaDestroy) (
	VADisplayContextP ctx
    );

    VAStatus (*vaGetDriverName) (
	VADisplayContextP ctx,
	char **driver_name
    );
};

root's avatar
root committed
450 451 452 453 454 455
typedef VAStatus (*VADriverInit) (
    VADriverContextP driver_context
);


#endif /* _VA_BACKEND_H_ */