OSDN Git Service

720613351d4fcb260d55833a59371aca3d007af2
[android-x86/hardware-intel-common-libva.git] / va / va.h
1 /*
2  * Copyright (c) 2007-2009 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 INTEL 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  * Video Acceleration (VA) API Specification
26  *
27  * Rev. 0.30
28  * <jonathan.bian@intel.com>
29  *
30  * Revision History:
31  * rev 0.10 (12/10/2006 Jonathan Bian) - Initial draft
32  * rev 0.11 (12/15/2006 Jonathan Bian) - Fixed some errors
33  * rev 0.12 (02/05/2007 Jonathan Bian) - Added VC-1 data structures for slice level decode
34  * rev 0.13 (02/28/2007 Jonathan Bian) - Added GetDisplay()
35  * rev 0.14 (04/13/2007 Jonathan Bian) - Fixed MPEG-2 PictureParameter structure, cleaned up a few funcs.
36  * rev 0.15 (04/20/2007 Jonathan Bian) - Overhauled buffer management
37  * rev 0.16 (05/02/2007 Jonathan Bian) - Added error codes and fixed some issues with configuration
38  * rev 0.17 (05/07/2007 Jonathan Bian) - Added H.264/AVC data structures for slice level decode.
39  * rev 0.18 (05/14/2007 Jonathan Bian) - Added data structures for MPEG-4 slice level decode 
40  *                                       and MPEG-2 motion compensation.
41  * rev 0.19 (08/06/2007 Jonathan Bian) - Removed extra type for bitplane data.
42  * rev 0.20 (08/08/2007 Jonathan Bian) - Added missing fields to VC-1 PictureParameter structure.
43  * rev 0.21 (08/20/2007 Jonathan Bian) - Added image and subpicture support.
44  * rev 0.22 (08/27/2007 Jonathan Bian) - Added support for chroma-keying and global alpha.
45  * rev 0.23 (09/11/2007 Jonathan Bian) - Fixed some issues with images and subpictures.
46  * rev 0.24 (09/18/2007 Jonathan Bian) - Added display attributes.
47  * rev 0.25 (10/18/2007 Jonathan Bian) - Changed to use IDs only for some types.
48  * rev 0.26 (11/07/2007 Waldo Bastian) - Change vaCreateBuffer semantics
49  * rev 0.27 (11/19/2007 Matt Sottek)   - Added DeriveImage
50  * rev 0.28 (12/06/2007 Jonathan Bian) - Added new versions of PutImage and AssociateSubpicture 
51  *                                       to enable scaling
52  * rev 0.29 (02/07/2008 Jonathan Bian) - VC1 parameter fixes,
53  *                                       added VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED
54  * rev 0.30 (03/01/2009 Jonathan Bian) - Added encoding support for H.264 BP and MPEG-4 SP and fixes
55  *                                       for ISO C conformance.
56  * rev 0.31 (09/02/2009 Gwenole Beauchesne) - VC-1/H264 fields change for VDPAU and XvBA backend
57  *                                       Application needs to relink with the new library.
58  *
59  * rev 0.31.1 (03/29/2009)              - Data structure for JPEG encode
60  * rev 0.31.2 (01/13/2011 Anthony Pabon)- Added a flag to indicate Subpicture coordinates are screen
61  *                                        screen relative rather than source video relative.
62  * rev 0.32.0 (01/13/2011 Xiang Haihao) - Add profile into VAPictureParameterBufferVC1
63  *                                        update VAAPI to 0.32.0
64  *
65  * Acknowledgements:
66  *  Some concepts borrowed from XvMC and XvImage.
67  *  Waldo Bastian (Intel), Matt Sottek (Intel),  Austin Yuan (Intel), and Gwenole Beauchesne (SDS)
68  *  contributed to various aspects of the API.
69  */
70
71 /**
72  * \file va.h
73  * \brief The Core API
74  *
75  * This file contains the \ref api_core "Core API".
76  */
77
78 #ifndef _VA_H_
79 #define _VA_H_
80
81 #include <stddef.h>
82 #include <stdint.h>
83 #include <va/va_version.h>
84
85 #ifdef __cplusplus
86 extern "C" {
87 #endif
88
89 #ifdef __GNUC__
90 #define va_deprecated __attribute__((deprecated))
91 #if __GNUC__ >= 6
92 #define va_deprecated_enum va_deprecated
93 #else
94 #define va_deprecated_enum
95 #endif
96 #else
97 #define va_deprecated
98 #define va_deprecated_enum
99 #endif
100
101 /**
102  * \mainpage Video Acceleration (VA) API
103  *
104  * \section intro Introduction
105  *
106  * The main motivation for VA-API (Video Acceleration API) is to
107  * enable hardware accelerated video decode and encode at various
108  * entry-points (VLD, IDCT, Motion Compensation etc.) for the
109  * prevailing coding standards today (MPEG-2, MPEG-4 ASP/H.263, MPEG-4
110  * AVC/H.264, VC-1/VMW3, and JPEG, HEVC/H265, VP8, VP9) and video pre/post
111  * processing
112  *
113  * VA-API is split into several modules:
114  * - \ref api_core
115  * - \ref api_enc_xxx (xxx = h264, hevc, jpec, mpeg2, vp8, vp9)
116  * - \ref api_dec_xxx (xxx = hevc, jpec, vp8, vp9)
117  * - \ref api_vpp
118  */
119
120 /**
121  * \defgroup api_core Core API
122  *
123  * @{
124  */
125
126 /**
127 Overview 
128
129 The VA API is intended to provide an interface between a video decode/encode/processing
130 application (client) and a hardware accelerator (server), to off-load 
131 video decode/encode/processing operations from the host to the hardware accelerator at various
132 entry-points.
133
134 The basic operation steps are:
135
136 - Negotiate a mutually acceptable configuration with the server to lock
137   down profile, entrypoints, and other attributes that will not change on 
138   a frame-by-frame basis.
139 - Create a video decode, encode or processing context which represents a
140   "virtualized" hardware device
141 - Get and fill the render buffers with the corresponding data (depending on
142   profiles and entrypoints)
143 - Pass the render buffers to the server to handle the current frame
144
145 Initialization & Configuration Management 
146
147 - Find out supported profiles
148 - Find out entrypoints for a given profile
149 - Find out configuration attributes for a given profile/entrypoint pair
150 - Create a configuration for use by the application
151
152 */
153
154 typedef void* VADisplay;        /* window system dependent */
155
156 typedef int VAStatus;   /** Return status type from functions */
157 /** Values for the return status */
158 #define VA_STATUS_SUCCESS                       0x00000000
159 #define VA_STATUS_ERROR_OPERATION_FAILED        0x00000001
160 #define VA_STATUS_ERROR_ALLOCATION_FAILED       0x00000002
161 #define VA_STATUS_ERROR_INVALID_DISPLAY         0x00000003
162 #define VA_STATUS_ERROR_INVALID_CONFIG          0x00000004
163 #define VA_STATUS_ERROR_INVALID_CONTEXT         0x00000005
164 #define VA_STATUS_ERROR_INVALID_SURFACE         0x00000006
165 #define VA_STATUS_ERROR_INVALID_BUFFER          0x00000007
166 #define VA_STATUS_ERROR_INVALID_IMAGE           0x00000008
167 #define VA_STATUS_ERROR_INVALID_SUBPICTURE      0x00000009
168 #define VA_STATUS_ERROR_ATTR_NOT_SUPPORTED      0x0000000a
169 #define VA_STATUS_ERROR_MAX_NUM_EXCEEDED        0x0000000b
170 #define VA_STATUS_ERROR_UNSUPPORTED_PROFILE     0x0000000c
171 #define VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT  0x0000000d
172 #define VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT   0x0000000e
173 #define VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE  0x0000000f
174 #define VA_STATUS_ERROR_SURFACE_BUSY            0x00000010
175 #define VA_STATUS_ERROR_FLAG_NOT_SUPPORTED      0x00000011
176 #define VA_STATUS_ERROR_INVALID_PARAMETER       0x00000012
177 #define VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED 0x00000013
178 #define VA_STATUS_ERROR_UNIMPLEMENTED           0x00000014
179 #define VA_STATUS_ERROR_SURFACE_IN_DISPLAYING   0x00000015
180 #define VA_STATUS_ERROR_INVALID_IMAGE_FORMAT    0x00000016
181 #define VA_STATUS_ERROR_DECODING_ERROR          0x00000017
182 #define VA_STATUS_ERROR_ENCODING_ERROR          0x00000018
183 /**
184  * \brief An invalid/unsupported value was supplied.
185  *
186  * This is a catch-all error code for invalid or unsupported values.
187  * e.g. value exceeding the valid range, invalid type in the context
188  * of generic attribute values.
189  */
190 #define VA_STATUS_ERROR_INVALID_VALUE           0x00000019
191 /** \brief An unsupported filter was supplied. */
192 #define VA_STATUS_ERROR_UNSUPPORTED_FILTER      0x00000020
193 /** \brief An invalid filter chain was supplied. */
194 #define VA_STATUS_ERROR_INVALID_FILTER_CHAIN    0x00000021
195 /** \brief Indicate HW busy (e.g. run multiple encoding simultaneously). */
196 #define VA_STATUS_ERROR_HW_BUSY                 0x00000022
197 /** \brief An unsupported memory type was supplied. */
198 #define VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE 0x00000024
199 #define VA_STATUS_ERROR_UNKNOWN                 0xFFFFFFFF
200
201 /** De-interlacing flags for vaPutSurface() */
202 #define VA_FRAME_PICTURE        0x00000000 
203 #define VA_TOP_FIELD            0x00000001
204 #define VA_BOTTOM_FIELD         0x00000002
205
206 /**
207  * Enabled the positioning/cropping/blending feature:
208  * 1, specify the video playback position in the isurface
209  * 2, specify the cropping info for video playback
210  * 3, encoded video will blend with background color
211  */
212 #define VA_ENABLE_BLEND         0x00000004 /* video area blend with the constant color */ 
213     
214 /**
215  * Clears the drawable with background color.
216  * for hardware overlay based implementation this flag
217  * can be used to turn off the overlay
218  */
219 #define VA_CLEAR_DRAWABLE       0x00000008
220
221 /** Color space conversion flags for vaPutSurface() */
222 #define VA_SRC_COLOR_MASK       0x000000f0
223 #define VA_SRC_BT601            0x00000010
224 #define VA_SRC_BT709            0x00000020
225 #define VA_SRC_SMPTE_240        0x00000040
226
227 /** Scaling flags for vaPutSurface() */
228 #define VA_FILTER_SCALING_DEFAULT       0x00000000
229 #define VA_FILTER_SCALING_FAST          0x00000100
230 #define VA_FILTER_SCALING_HQ            0x00000200
231 #define VA_FILTER_SCALING_NL_ANAMORPHIC 0x00000300
232 #define VA_FILTER_SCALING_MASK          0x00000f00
233
234 /** Padding size in 4-bytes */
235 #define VA_PADDING_LOW          4
236 #define VA_PADDING_MEDIUM       8
237 #define VA_PADDING_HIGH         16
238 #define VA_PADDING_LARGE        32
239
240 /**
241  * Returns a short english description of error_status
242  */
243 const char *vaErrorStr(VAStatus error_status);
244
245 typedef struct _VARectangle
246 {
247     int16_t x;
248     int16_t y;
249     uint16_t width;
250     uint16_t height;
251 } VARectangle;
252
253 /** \brief Generic motion vector data structure. */
254 typedef struct _VAMotionVector {
255     /** \mv0[0]: horizontal motion vector for past reference */
256     /** \mv0[1]: vertical motion vector for past reference */
257     /** \mv1[0]: horizontal motion vector for future reference */
258     /** \mv1[1]: vertical motion vector for future reference */
259     int16_t  mv0[2];  /* past reference */
260     int16_t  mv1[2];  /* future reference */
261 } VAMotionVector;
262
263 /** Type of a message callback, used for both error and info log. */
264 typedef void (*VAMessageCallback)(void *user_context, const char *message);
265
266 /**
267  * Set the callback for error messages, or NULL for no logging.
268  * Returns the previous one, or NULL if it was disabled.
269  */
270 VAMessageCallback vaSetErrorCallback(VADisplay dpy, VAMessageCallback callback, void *user_context);
271
272 /**
273  * Set the callback for info messages, or NULL for no logging.
274  * Returns the previous one, or NULL if it was disabled.
275  */
276 VAMessageCallback vaSetInfoCallback(VADisplay dpy, VAMessageCallback callback, void *user_context);
277
278 /**
279  * Initialization:
280  * A display must be obtained by calling vaGetDisplay() before calling
281  * vaInitialize() and other functions. This connects the API to the 
282  * native window system.
283  * For X Windows, native_dpy would be from XOpenDisplay()
284  */
285 typedef void* VANativeDisplay;  /* window system dependent */
286
287 int vaDisplayIsValid(VADisplay dpy);
288
289 /**
290  *  Set the override driver name instead of queried driver driver.
291  */
292 VAStatus vaSetDriverName(VADisplay dpy,
293                          char *driver_name
294 );
295
296 /**
297  * Initialize the library 
298  */
299 VAStatus vaInitialize (
300     VADisplay dpy,
301     int *major_version,  /* out */
302     int *minor_version   /* out */
303 );
304
305 /**
306  * After this call, all library internal resources will be cleaned up
307  */ 
308 VAStatus vaTerminate (
309     VADisplay dpy
310 );
311
312 /**
313  * vaQueryVendorString returns a pointer to a zero-terminated string
314  * describing some aspects of the VA implemenation on a specific    
315  * hardware accelerator. The format of the returned string is vendor
316  * specific and at the discretion of the implementer.
317  * e.g. for the Intel GMA500 implementation, an example would be:
318  * "Intel GMA500 - 2.0.0.32L.0005"
319  */
320 const char *vaQueryVendorString (
321     VADisplay dpy
322 );
323
324 typedef int (*VAPrivFunc)(void);
325
326 /**
327  * Return a function pointer given a function name in the library.
328  * This allows private interfaces into the library
329  */ 
330 VAPrivFunc vaGetLibFunc (
331     VADisplay dpy,
332     const char *func
333 );
334
335 /** Currently defined profiles */
336 typedef enum
337 {
338     /** \brief Profile ID used for video processing. */
339     VAProfileNone                       = -1,
340     VAProfileMPEG2Simple                = 0,
341     VAProfileMPEG2Main                  = 1,
342     VAProfileMPEG4Simple                = 2,
343     VAProfileMPEG4AdvancedSimple        = 3,
344     VAProfileMPEG4Main                  = 4,
345     VAProfileH264Baseline va_deprecated_enum = 5,
346     VAProfileH264Main                   = 6,
347     VAProfileH264High                   = 7,
348     VAProfileVC1Simple                  = 8,
349     VAProfileVC1Main                    = 9,
350     VAProfileVC1Advanced                = 10,
351     VAProfileH263Baseline               = 11,
352     VAProfileJPEGBaseline               = 12,
353     VAProfileH264ConstrainedBaseline    = 13,
354     VAProfileVP8Version0_3              = 14,
355     VAProfileH264MultiviewHigh          = 15,
356     VAProfileH264StereoHigh             = 16,
357     VAProfileHEVCMain                   = 17,
358     VAProfileHEVCMain10                 = 18,
359     VAProfileVP9Profile0                = 19,
360     VAProfileVP9Profile1                = 20,
361     VAProfileVP9Profile2                = 21,
362     VAProfileVP9Profile3                = 22
363 } VAProfile;
364
365 /**
366  *  Currently defined entrypoints 
367  */
368 typedef enum
369 {
370     VAEntrypointVLD             = 1,
371     VAEntrypointIZZ             = 2,
372     VAEntrypointIDCT            = 3,
373     VAEntrypointMoComp          = 4,
374     VAEntrypointDeblocking      = 5,
375     VAEntrypointEncSlice        = 6,    /* slice level encode */
376     VAEntrypointEncPicture      = 7,    /* pictuer encode, JPEG, etc */
377     /*
378      * For an implementation that supports a low power/high performance variant
379      * for slice level encode, it can choose to expose the
380      * VAEntrypointEncSliceLP entrypoint. Certain encoding tools may not be
381      * available with this entrypoint (e.g. interlace, MBAFF) and the
382      * application can query the encoding configuration attributes to find
383      * out more details if this entrypoint is supported.
384      */
385     VAEntrypointEncSliceLP      = 8,
386     VAEntrypointVideoProc       = 10,   /**< Video pre/post-processing. */
387     /**
388      * \brief VAEntrypointFEI
389      *
390      * The purpose of FEI (Flexible Encoding Infrastructure) is to allow applications to
391      * have more controls and trade off quality for speed with their own IPs.
392      * The application can optionally provide input to ENC for extra encode control
393      * and get the output from ENC. Application can chose to modify the ENC
394      * output/PAK input during encoding, but the performance impact is significant.
395      *
396      * On top of the existing buffers for normal encode, there will be
397      * one extra input buffer (VAEncMiscParameterFEIFrameControl) and
398      * three extra output buffers (VAEncFEIMVBufferType, VAEncFEIMBModeBufferType
399      * and VAEncFEIDistortionBufferType) for VAEntrypointFEI entry function.
400      * If separate PAK is set, two extra input buffers
401      * (VAEncFEIMVBufferType, VAEncFEIMBModeBufferType) are needed for PAK input.
402      **/
403     VAEntrypointFEI         = 11,
404 } VAEntrypoint;
405
406 /** Currently defined configuration attribute types */
407 typedef enum
408 {
409     VAConfigAttribRTFormat              = 0,
410     VAConfigAttribSpatialResidual       = 1,
411     VAConfigAttribSpatialClipping       = 2,
412     VAConfigAttribIntraResidual         = 3,
413     VAConfigAttribEncryption            = 4,
414     VAConfigAttribRateControl           = 5,
415
416     /** @name Attributes for decoding */
417     /**@{*/
418     /**
419      * \brief Slice Decoding mode. Read/write.
420      *
421      * This attribute determines what mode the driver supports for slice
422      * decoding, through vaGetConfigAttributes(); and what mode the user
423      * will be providing to the driver, through vaCreateConfig(), if the
424      * driver supports those. If this attribute is not set by the user then
425      * it is assumed that VA_DEC_SLICE_MODE_NORMAL mode is used.
426      *
427      * See \c VA_DEC_SLICE_MODE_xxx for the list of slice decoding modes.
428      */
429     VAConfigAttribDecSliceMode          = 6,
430
431     /** @name Attributes for encoding */
432     /**@{*/
433     /**
434      * \brief Packed headers mode. Read/write.
435      *
436      * This attribute determines what packed headers the driver supports,
437      * through vaGetConfigAttributes(); and what packed headers the user
438      * will be providing to the driver, through vaCreateConfig(), if the
439      * driver supports those.
440      *
441      * See \c VA_ENC_PACKED_HEADER_xxx for the list of packed headers.
442      */
443     VAConfigAttribEncPackedHeaders      = 10,
444     /**
445      * \brief Interlaced mode. Read/write.
446      *
447      * This attribute determines what kind of interlaced encoding mode
448      * the driver supports.
449      *
450      * See \c VA_ENC_INTERLACED_xxx for the list of interlaced modes.
451      */
452     VAConfigAttribEncInterlaced         = 11,
453     /**
454      * \brief Maximum number of reference frames. Read-only.
455      *
456      * This attribute determines the maximum number of reference
457      * frames supported for encoding.
458      *
459      * Note: for H.264 encoding, the value represents the maximum number
460      * of reference frames for both the reference picture list 0 (bottom
461      * 16 bits) and the reference picture list 1 (top 16 bits).
462      */
463     VAConfigAttribEncMaxRefFrames       = 13,
464     /**
465      * \brief Maximum number of slices per frame. Read-only.
466      *
467      * This attribute determines the maximum number of slices the
468      * driver can support to encode a single frame.
469      */
470     VAConfigAttribEncMaxSlices          = 14,
471     /**
472      * \brief Slice structure. Read-only.
473      *
474      * This attribute determines slice structures supported by the
475      * driver for encoding. This attribute is a hint to the user so
476      * that he can choose a suitable surface size and how to arrange
477      * the encoding process of multiple slices per frame.
478      *
479      * More specifically, for H.264 encoding, this attribute
480      * determines the range of accepted values to
481      * VAEncSliceParameterBufferH264::macroblock_address and
482      * VAEncSliceParameterBufferH264::num_macroblocks.
483      *
484      * See \c VA_ENC_SLICE_STRUCTURE_xxx for the supported slice
485      * structure types.
486      */
487     VAConfigAttribEncSliceStructure     = 15,
488     /**
489      * \brief Macroblock information. Read-only.
490      *
491      * This attribute determines whether the driver supports extra
492      * encoding information per-macroblock. e.g. QP.
493      *
494      * More specifically, for H.264 encoding, if the driver returns a non-zero
495      * value for this attribute, this means the application can create
496      * additional #VAEncMacroblockParameterBufferH264 buffers referenced
497      * through VAEncSliceParameterBufferH264::macroblock_info.
498      */
499     VAConfigAttribEncMacroblockInfo     = 16,
500     /**
501      * \brief JPEG encoding attribute. Read-only.
502      *
503      * This attribute exposes a number of capabilities of the underlying
504      * JPEG implementation. The attribute value is partitioned into fields as defined in the 
505      * VAConfigAttribValEncJPEG union.
506      */
507     VAConfigAttribEncJPEG             = 20,
508     /**
509      * \brief Encoding quality range attribute. Read-only.
510      *
511      * This attribute conveys whether the driver supports different quality level settings
512      * for encoding. A value less than or equal to 1 means that the encoder only has a single
513      * quality setting, and a value greater than 1 represents the number of quality levels 
514      * that can be configured. e.g. a value of 2 means there are two distinct quality levels. 
515      */
516     VAConfigAttribEncQualityRange     = 21,
517     /**
518      * \brief Encoding skip frame attribute. Read-only.
519      *
520      * This attribute conveys whether the driver supports sending skip frame parameters 
521      * (VAEncMiscParameterTypeSkipFrame) to the encoder's rate control, when the user has 
522      * externally skipped frames. 
523      */
524     VAConfigAttribEncSkipFrame        = 24,
525     /**
526      * \brief Encoding region-of-interest (ROI) attribute. Read-only.
527      *
528      * This attribute conveys whether the driver supports region-of-interest (ROI) encoding,
529      * based on user provided ROI rectangles.  The attribute value is partitioned into fields
530      * as defined in the VAConfigAttribValEncROI union.
531      *
532      * If ROI encoding is supported, the ROI information is passed to the driver using
533      * VAEncMiscParameterTypeROI.
534      */
535     VAConfigAttribEncROI              = 25,
536     /**
537      * \brief Encoding extended rate control attribute. Read-only.
538      *
539      * This attribute conveys whether the driver supports any extended rate control features
540      * The attribute value is partitioned into fields as defined in the
541      * VAConfigAttribValEncRateControlExt union.
542      */
543     VAConfigAttribEncRateControlExt   = 26,
544
545     /**
546      * \brief Encode function type for FEI.
547      *
548      * This attribute conveys whether the driver supports different function types for encode.
549      * It can be VA_FEI_FUNCTION_ENC, VA_FEI_FUNCTION_PAK, or VA_FEI_FUNCTION_ENC_PAK. Currently
550      * it is for FEI entry point only.
551      * Default is VA_FEI_FUNCTION_ENC_PAK.
552      */
553     VAConfigAttribFEIFunctionType     = 32,
554     /**
555      * \brief Maximum number of FEI MV predictors. Read-only.
556      *
557      * This attribute determines the maximum number of MV predictors the driver
558      * can support to encode a single frame. 0 means no MV predictor is supported.
559      * Currently it is for FEI entry point only.
560      */
561     VAConfigAttribFEIMVPredictors     = 33,
562     /**@}*/
563     VAConfigAttribTypeMax
564 } VAConfigAttribType;
565
566 /**
567  * Configuration attributes
568  * If there is more than one value for an attribute, a default
569  * value will be assigned to the attribute if the client does not
570  * specify the attribute when creating a configuration
571  */
572 typedef struct _VAConfigAttrib {
573     VAConfigAttribType type;
574     uint32_t value; /* OR'd flags (bits) for this attribute */
575 } VAConfigAttrib;
576
577 /** attribute value for VAConfigAttribRTFormat */
578 #define VA_RT_FORMAT_YUV420     0x00000001      
579 #define VA_RT_FORMAT_YUV422     0x00000002
580 #define VA_RT_FORMAT_YUV444     0x00000004
581 #define VA_RT_FORMAT_YUV411     0x00000008
582 #define VA_RT_FORMAT_YUV400     0x00000010
583 /** YUV formats with more than 8 bpp */
584 #define VA_RT_FORMAT_YUV420_10BPP       0x00000100
585 /** RGB formats */
586 #define VA_RT_FORMAT_RGB16      0x00010000
587 #define VA_RT_FORMAT_RGB32      0x00020000
588 /* RGBP covers RGBP and BGRP fourcc */ 
589 #define VA_RT_FORMAT_RGBP       0x00100000
590 #define VA_RT_FORMAT_PROTECTED  0x80000000
591
592 /** @name Attribute values for VAConfigAttribRateControl */
593 /**@{*/
594 /** \brief Driver does not support any form of rate control. */
595 #define VA_RC_NONE                      0x00000001
596 /** \brief Constant bitrate. */
597 #define VA_RC_CBR                       0x00000002
598 /** \brief Variable bitrate. */
599 #define VA_RC_VBR                       0x00000004
600 /** \brief Video conference mode. */
601 #define VA_RC_VCM                       0x00000008
602 /** \brief Constant QP. */
603 #define VA_RC_CQP                       0x00000010
604 /** \brief Variable bitrate with peak rate higher than average bitrate. */
605 #define VA_RC_VBR_CONSTRAINED           0x00000020
606 /** \brief Macroblock based rate control.  Per MB control is decided
607  *  internally in the encoder. It may be combined with other RC modes, except CQP. */
608 #define VA_RC_MB                        0x00000080
609
610 /**@}*/
611
612 /** @name Attribute values for VAConfigAttribDecSliceMode */
613 /**@{*/
614 /** \brief Driver supports normal mode for slice decoding */
615 #define VA_DEC_SLICE_MODE_NORMAL       0x00000001
616 /** \brief Driver supports base mode for slice decoding */
617 #define VA_DEC_SLICE_MODE_BASE         0x00000002
618 /**@}*/
619
620 /** @name Attribute values for VAConfigAttribEncPackedHeaders */
621 /**@{*/
622 /** \brief Driver does not support any packed headers mode. */
623 #define VA_ENC_PACKED_HEADER_NONE       0x00000000
624 /**
625  * \brief Driver supports packed sequence headers. e.g. SPS for H.264.
626  *
627  * Application must provide it to driver once this flag is returned through
628  * vaGetConfigAttributes()
629  */
630 #define VA_ENC_PACKED_HEADER_SEQUENCE   0x00000001
631 /**
632  * \brief Driver supports packed picture headers. e.g. PPS for H.264.
633  *
634  * Application must provide it to driver once this falg is returned through
635  * vaGetConfigAttributes()
636  */
637 #define VA_ENC_PACKED_HEADER_PICTURE    0x00000002
638 /**
639  * \brief Driver supports packed slice headers. e.g. slice_header() for H.264.
640  *
641  * Application must provide it to driver once this flag is returned through
642  * vaGetConfigAttributes()
643  */
644 #define VA_ENC_PACKED_HEADER_SLICE      0x00000004
645 /**
646  * \brief Driver supports misc packed headers. e.g. SEI for H.264.
647  *
648  * @deprecated
649  * This is a deprecated packed header flag, All applications can use
650  * \c VA_ENC_PACKED_HEADER_RAW_DATA to pass the corresponding packed
651  * header data buffer to the driver
652  */
653 #define VA_ENC_PACKED_HEADER_MISC       0x00000008
654 /** \brief Driver supports raw packed header, see VAEncPackedHeaderRawData */
655 #define VA_ENC_PACKED_HEADER_RAW_DATA   0x00000010
656 /**@}*/
657
658 /** @name Attribute values for VAConfigAttribEncInterlaced */
659 /**@{*/
660 /** \brief Driver does not support interlaced coding. */
661 #define VA_ENC_INTERLACED_NONE          0x00000000
662 /** \brief Driver supports interlaced frame coding. */
663 #define VA_ENC_INTERLACED_FRAME         0x00000001
664 /** \brief Driver supports interlaced field coding. */
665 #define VA_ENC_INTERLACED_FIELD         0x00000002
666 /** \brief Driver supports macroblock adaptive frame field coding. */
667 #define VA_ENC_INTERLACED_MBAFF         0x00000004
668 /** \brief Driver supports picture adaptive frame field coding. */
669 #define VA_ENC_INTERLACED_PAFF          0x00000008
670 /**@}*/
671
672 /** @name Attribute values for VAConfigAttribEncSliceStructure */
673 /**@{*/
674 /** \brief Driver supports a power-of-two number of rows per slice. */
675 #define VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS        0x00000001
676 /** \brief Driver supports an arbitrary number of macroblocks per slice. */
677 #define VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS    0x00000002
678 /** \brief Dirver support 1 rows  per slice */
679 #define VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS               0x00000004
680 /** \brief Dirver support max encoded slice size per slice */
681 #define VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE           0x00000008
682 /** \brief Driver supports an arbitrary number of rows per slice. */
683 #define VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS           0x00000010
684 /**@}*/
685
686 /** \brief Attribute value for VAConfigAttribEncJPEG */
687 typedef union _VAConfigAttribValEncJPEG {
688     struct {
689         /** \brief set to 1 for arithmatic coding. */
690         uint32_t arithmatic_coding_mode : 1;
691         /** \brief set to 1 for progressive dct. */
692         uint32_t progressive_dct_mode : 1;
693         /** \brief set to 1 for non-interleaved. */
694         uint32_t non_interleaved_mode : 1;
695         /** \brief set to 1 for differential. */
696         uint32_t differential_mode : 1;
697         uint32_t max_num_components : 3;
698         uint32_t max_num_scans : 4;
699         uint32_t max_num_huffman_tables : 3;
700         uint32_t max_num_quantization_tables : 3;
701     } bits;
702     uint32_t value;
703 } VAConfigAttribValEncJPEG;
704
705 /** \brief Attribute value for VAConfigAttribEncROI */
706 typedef union _VAConfigAttribValEncROI {
707     struct {
708         /** \brief The number of ROI regions supported, 0 if ROI is not supported. */
709         uint32_t num_roi_regions                : 8;
710         /**
711          * \brief A flag indicates whether ROI priority is supported
712          *
713          * \ref roi_rc_priority_support equal to 1 specifies the underlying driver supports
714          * ROI priority when VAConfigAttribRateControl != VA_RC_CQP, user can use \c roi_value
715          * in #VAEncROI to set ROI priority. \ref roi_rc_priority_support equal to 0 specifies
716          * the underlying driver doesn't support ROI priority.
717          *
718          * User should ignore \ref roi_rc_priority_support when VAConfigAttribRateControl == VA_RC_CQP
719          * because ROI delta QP is always required when VAConfigAttribRateControl == VA_RC_CQP.
720          */
721         uint32_t roi_rc_priority_support        : 1;
722         /**
723          * \brief A flag indicates whether ROI delta QP is supported
724          *
725          * \ref roi_rc_qp_delta_support equal to 1 specifies the underlying driver supports
726          * ROI delta QP when VAConfigAttribRateControl != VA_RC_CQP, user can use \c roi_value
727          * in #VAEncROI to set ROI delta QP. \ref roi_rc_qp_delta_support equal to 0 specifies
728          * the underlying driver doesn't support ROI delta QP.
729          *
730          * User should ignore \ref roi_rc_qp_delta_support when VAConfigAttribRateControl == VA_RC_CQP
731          * because ROI delta QP is always required when VAConfigAttribRateControl == VA_RC_CQP.
732          */
733         uint32_t roi_rc_qp_delta_support    : 1;
734         uint32_t reserved                   : 22;
735      } bits;
736      uint32_t value;
737 } VAConfigAttribValEncROI;
738
739 /** \brief Attribute value for VAConfigAttribEncRateControlExt */
740 typedef union _VAConfigAttribValEncRateControlExt {
741     struct {
742         /**
743          * \brief The maximum number of temporal layers minus 1
744          *
745          * \ref max_num_temporal_layers_minus1 plus 1 specifies the maximum number of temporal
746          * layers that supported by the underlying driver. \ref max_num_temporal_layers_minus1
747          * equal to 0 implies the underlying driver doesn't support encoding with temporal layer.
748          */
749         uint32_t max_num_temporal_layers_minus1      : 8;
750
751         /**
752          * /brief support temporal layer bit-rate control flag
753          *
754          * \ref temporal_layer_bitrate_control_flag equal to 1 specifies the underlying driver
755          * can support bit-rate control per temporal layer when (#VAConfigAttribRateControl == #VA_RC_CBR ||
756          * #VAConfigAttribRateControl == #VA_RC_VBR).
757          *
758          * The underlying driver must set \ref temporal_layer_bitrate_control_flag to 0 when
759          * \c max_num_temporal_layers_minus1 is equal to 0
760          *
761          * To use bit-rate control per temporal layer, an application must send the right layer
762          * structure via #VAEncMiscParameterTemporalLayerStructure at the beginning of a coded sequence
763          * and then followed by #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate structures
764          * for each layer, using the \c temporal_id field as the layer identifier. Otherwise
765          * the driver doesn't use bitrate control per temporal layer if an application doesn't send the
766          * layer structure via #VAEncMiscParameterTemporalLayerStructure to the driver. The driver returns
767          * VA_STATUS_ERROR_INVALID_PARAMETER if an application sends a wrong layer structure or doesn't send
768          * #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate for each layer.
769          *
770          * The driver will ignore #VAEncMiscParameterTemporalLayerStructure and the \c temporal_id field
771          * in #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate if
772          * \ref temporal_layer_bitrate_control_flag is equal to 0 or #VAConfigAttribRateControl == #VA_RC_CQP
773          */
774         uint32_t temporal_layer_bitrate_control_flag : 1;
775         uint32_t reserved                            : 23;
776     } bits;
777     uint32_t value;
778 } VAConfigAttribValEncRateControlExt;
779
780 /**
781  * if an attribute is not applicable for a given
782  * profile/entrypoint pair, then set the value to the following 
783  */
784 #define VA_ATTRIB_NOT_SUPPORTED 0x80000000
785
786 /** Get maximum number of profiles supported by the implementation */
787 int vaMaxNumProfiles (
788     VADisplay dpy
789 );
790
791 /** Get maximum number of entrypoints supported by the implementation */
792 int vaMaxNumEntrypoints (
793     VADisplay dpy
794 );
795
796 /** Get maximum number of attributs supported by the implementation */
797 int vaMaxNumConfigAttributes (
798     VADisplay dpy
799 );
800
801 /**
802  * Query supported profiles 
803  * The caller must provide a "profile_list" array that can hold at
804  * least vaMaxNumProfile() entries. The actual number of profiles
805  * returned in "profile_list" is returned in "num_profile".
806  */
807 VAStatus vaQueryConfigProfiles (
808     VADisplay dpy,
809     VAProfile *profile_list,    /* out */
810     int *num_profiles           /* out */
811 );
812
813 /**
814  * Query supported entrypoints for a given profile 
815  * The caller must provide an "entrypoint_list" array that can hold at
816  * least vaMaxNumEntrypoints() entries. The actual number of entrypoints 
817  * returned in "entrypoint_list" is returned in "num_entrypoints".
818  */
819 VAStatus vaQueryConfigEntrypoints (
820     VADisplay dpy,
821     VAProfile profile,
822     VAEntrypoint *entrypoint_list,      /* out */
823     int *num_entrypoints                /* out */
824 );
825
826 /**
827  * Get attributes for a given profile/entrypoint pair 
828  * The caller must provide an "attrib_list" with all attributes to be 
829  * retrieved.  Upon return, the attributes in "attrib_list" have been 
830  * updated with their value.  Unknown attributes or attributes that are 
831  * not supported for the given profile/entrypoint pair will have their 
832  * value set to VA_ATTRIB_NOT_SUPPORTED
833  */
834 VAStatus vaGetConfigAttributes (
835     VADisplay dpy,
836     VAProfile profile,
837     VAEntrypoint entrypoint,
838     VAConfigAttrib *attrib_list, /* in/out */
839     int num_attribs
840 );
841
842 /** Generic ID type, can be re-typed for specific implementation */
843 typedef unsigned int VAGenericID;
844
845 typedef VAGenericID VAConfigID;
846
847 /**
848  * Create a configuration for the video decode/encode/processing pipeline
849  * it passes in the attribute list that specifies the attributes it cares 
850  * about, with the rest taking default values.  
851  */
852 VAStatus vaCreateConfig (
853     VADisplay dpy,
854     VAProfile profile, 
855     VAEntrypoint entrypoint, 
856     VAConfigAttrib *attrib_list,
857     int num_attribs,
858     VAConfigID *config_id /* out */
859 );
860
861 /**
862  * Free resources associdated with a given config 
863  */
864 VAStatus vaDestroyConfig (
865     VADisplay dpy,
866     VAConfigID config_id
867 );
868
869 /**
870  * Query all attributes for a given configuration 
871  * The profile of the configuration is returned in "profile"
872  * The entrypoint of the configuration is returned in "entrypoint"
873  * The caller must provide an "attrib_list" array that can hold at least 
874  * vaMaxNumConfigAttributes() entries. The actual number of attributes 
875  * returned in "attrib_list" is returned in "num_attribs"
876  */
877 VAStatus vaQueryConfigAttributes (
878     VADisplay dpy,
879     VAConfigID config_id, 
880     VAProfile *profile,         /* out */
881     VAEntrypoint *entrypoint,   /* out */
882     VAConfigAttrib *attrib_list,/* out */
883     int *num_attribs            /* out */
884 );
885
886
887 /**
888  * Contexts and Surfaces
889  *
890  * Context represents a "virtual" video decode, encode or video processing
891  * pipeline. Surfaces are render targets for a given context. The data in the
892  * surfaces are not accessible to the client except if derived image is supported
893  * and the internal data format of the surface is implementation specific.
894  *
895  * Surfaces are provided as a hint of what surfaces will be used when the context
896  * is created through vaCreateContext(). A surface may be used by different contexts
897  * at the same time as soon as application can make sure the operations are synchronized
898  * between different contexts, e.g. a surface is used as the output of a decode context
899  * and the input of a video process context. Surfaces can only be destroyed after all
900  * contexts using these surfaces have been destroyed.
901  * 
902  * Both contexts and surfaces are identified by unique IDs and its
903  * implementation specific internals are kept opaque to the clients
904  */
905
906 typedef VAGenericID VAContextID;
907
908 typedef VAGenericID VASurfaceID;
909
910 #define VA_INVALID_ID           0xffffffff
911 #define VA_INVALID_SURFACE      VA_INVALID_ID
912
913 /** \brief Generic value types. */
914 typedef enum  {
915     VAGenericValueTypeInteger = 1,      /**< 32-bit signed integer. */
916     VAGenericValueTypeFloat,            /**< 32-bit floating-point value. */
917     VAGenericValueTypePointer,          /**< Generic pointer type */
918     VAGenericValueTypeFunc              /**< Pointer to function */
919 } VAGenericValueType;
920
921 /** \brief Generic function type. */
922 typedef void (*VAGenericFunc)(void);
923
924 /** \brief Generic value. */
925 typedef struct _VAGenericValue {
926     /** \brief Value type. See #VAGenericValueType. */
927     VAGenericValueType  type;
928     /** \brief Value holder. */
929     union {
930         /** \brief 32-bit signed integer. */
931         int32_t             i;
932         /** \brief 32-bit float. */
933         float           f;
934         /** \brief Generic pointer. */
935         void           *p;
936         /** \brief Pointer to function. */
937         VAGenericFunc   fn;
938     }                   value;
939 } VAGenericValue;
940
941 /** @name Surface attribute flags */
942 /**@{*/
943 /** \brief Surface attribute is not supported. */
944 #define VA_SURFACE_ATTRIB_NOT_SUPPORTED 0x00000000
945 /** \brief Surface attribute can be got through vaQuerySurfaceAttributes(). */
946 #define VA_SURFACE_ATTRIB_GETTABLE      0x00000001
947 /** \brief Surface attribute can be set through vaCreateSurfaces(). */
948 #define VA_SURFACE_ATTRIB_SETTABLE      0x00000002
949 /**@}*/
950
951 /** \brief Surface attribute types. */
952 typedef enum {
953     VASurfaceAttribNone = 0,
954     /**
955      * \brief Pixel format (fourcc).
956      *
957      * The value is meaningful as input to vaQuerySurfaceAttributes().
958      * If zero, the driver returns the optimal pixel format for the
959      * specified config. Otherwise, if non-zero, the value represents
960      * a pixel format (FOURCC) that is kept as is on output, if the
961      * driver supports it. Otherwise, the driver sets the value to
962      * zero and drops the \c VA_SURFACE_ATTRIB_SETTABLE flag.
963      */
964     VASurfaceAttribPixelFormat,
965     /** \brief Minimal width in pixels (int, read-only). */
966     VASurfaceAttribMinWidth,
967     /** \brief Maximal width in pixels (int, read-only). */
968     VASurfaceAttribMaxWidth,
969     /** \brief Minimal height in pixels (int, read-only). */
970     VASurfaceAttribMinHeight,
971     /** \brief Maximal height in pixels (int, read-only). */
972     VASurfaceAttribMaxHeight,
973     /** \brief Surface memory type expressed in bit fields (int, read/write). */
974     VASurfaceAttribMemoryType,
975     /** \brief External buffer descriptor (pointer, write). */
976     VASurfaceAttribExternalBufferDescriptor,
977     /** \brief Surface usage hint, gives the driver a hint of intended usage 
978      *  to optimize allocation (e.g. tiling) (int, read/write). */
979     VASurfaceAttribUsageHint,
980     /** \brief Number of surface attributes. */
981     VASurfaceAttribCount
982 } VASurfaceAttribType;
983
984 /** \brief Surface attribute. */
985 typedef struct _VASurfaceAttrib {
986     /** \brief Type. */
987     VASurfaceAttribType type;
988     /** \brief Flags. See "Surface attribute flags". */
989     uint32_t        flags;
990     /** \brief Value. See "Surface attribute types" for the expected types. */
991     VAGenericValue      value;
992 } VASurfaceAttrib;
993
994 /** 
995  * @name VASurfaceAttribMemoryType values in bit fields. 
996  * Bit 0:7 are reserved for generic types, Bit 31:28 are reserved for 
997  * Linux DRM, Bit 23:20 are reserved for Android. DRM and Android specific
998  * types are defined in DRM and Android header files.
999  */
1000 /**@{*/
1001 /** \brief VA memory type (default) is supported. */
1002 #define VA_SURFACE_ATTRIB_MEM_TYPE_VA                   0x00000001
1003 /** \brief V4L2 buffer memory type is supported. */
1004 #define VA_SURFACE_ATTRIB_MEM_TYPE_V4L2                 0x00000002
1005 /** \brief User pointer memory type is supported. */
1006 #define VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR             0x00000004
1007 /**@}*/
1008
1009 /** 
1010  * \brief VASurfaceAttribExternalBuffers structure for 
1011  * the VASurfaceAttribExternalBufferDescriptor attribute.
1012  */
1013 typedef struct _VASurfaceAttribExternalBuffers {
1014     /** \brief pixel format in fourcc. */
1015     uint32_t pixel_format;
1016     /** \brief width in pixels. */
1017     uint32_t width;
1018     /** \brief height in pixels. */
1019     uint32_t height;
1020     /** \brief total size of the buffer in bytes. */
1021     uint32_t data_size;
1022     /** \brief number of planes for planar layout */
1023     uint32_t num_planes;
1024     /** \brief pitch for each plane in bytes */
1025     uint32_t pitches[4];
1026     /** \brief offset for each plane in bytes */
1027     uint32_t offsets[4];
1028     /** \brief buffer handles or user pointers */
1029     uintptr_t *buffers;
1030     /** \brief number of elements in the "buffers" array */
1031     uint32_t num_buffers;
1032     /** \brief flags. See "Surface external buffer descriptor flags". */
1033     uint32_t flags;
1034     /** \brief reserved for passing private data */
1035     void *private_data;
1036 } VASurfaceAttribExternalBuffers;
1037
1038 /** @name VASurfaceAttribExternalBuffers flags */
1039 /**@{*/
1040 /** \brief Enable memory tiling */
1041 #define VA_SURFACE_EXTBUF_DESC_ENABLE_TILING    0x00000001
1042 /** \brief Memory is cacheable */
1043 #define VA_SURFACE_EXTBUF_DESC_CACHED           0x00000002
1044 /** \brief Memory is non-cacheable */
1045 #define VA_SURFACE_EXTBUF_DESC_UNCACHED         0x00000004
1046 /** \brief Memory is write-combined */
1047 #define VA_SURFACE_EXTBUF_DESC_WC               0x00000008
1048 /** \brief Memory is protected */
1049 #define VA_SURFACE_EXTBUF_DESC_PROTECTED        0x80000000
1050
1051 /** @name VASurfaceAttribUsageHint attribute usage hint flags */
1052 /**@{*/
1053 /** \brief Surface usage not indicated. */
1054 #define VA_SURFACE_ATTRIB_USAGE_HINT_GENERIC    0x00000000
1055 /** \brief Surface used by video decoder. */
1056 #define VA_SURFACE_ATTRIB_USAGE_HINT_DECODER    0x00000001
1057 /** \brief Surface used by video encoder. */
1058 #define VA_SURFACE_ATTRIB_USAGE_HINT_ENCODER    0x00000002
1059 /** \brief Surface read by video post-processing. */
1060 #define VA_SURFACE_ATTRIB_USAGE_HINT_VPP_READ   0x00000004
1061 /** \brief Surface written by video post-processing. */
1062 #define VA_SURFACE_ATTRIB_USAGE_HINT_VPP_WRITE  0x00000008
1063 /** \brief Surface used for display. */
1064 #define VA_SURFACE_ATTRIB_USAGE_HINT_DISPLAY    0x00000010
1065
1066 /**@}*/
1067
1068 /**
1069  * \brief Queries surface attributes for the supplied config.
1070  *
1071  * This function queries for all supported attributes for the
1072  * supplied VA @config. In particular, if the underlying hardware
1073  * supports the creation of VA surfaces in various formats, then
1074  * this function will enumerate all pixel formats that are supported.
1075  *
1076  * The \c attrib_list array is allocated by the user and \c
1077  * num_attribs shall be initialized to the number of allocated
1078  * elements in that array. Upon successful return, the actual number
1079  * of attributes will be overwritten into \c num_attribs. Otherwise,
1080  * \c VA_STATUS_ERROR_MAX_NUM_EXCEEDED is returned and \c num_attribs
1081  * is adjusted to the number of elements that would be returned if
1082  * enough space was available.
1083  *
1084  * Note: it is perfectly valid to pass NULL to the \c attrib_list
1085  * argument when vaQuerySurfaceAttributes() is used to determine the
1086  * actual number of elements that need to be allocated.
1087  *
1088  * @param[in] dpy               the VA display
1089  * @param[in] config            the config identifying a codec or a video
1090  *     processing pipeline
1091  * @param[out] attrib_list      the output array of #VASurfaceAttrib elements
1092  * @param[in,out] num_attribs   the number of elements allocated on
1093  *      input, the number of elements actually filled in output
1094  */
1095 VAStatus
1096 vaQuerySurfaceAttributes(
1097     VADisplay           dpy,
1098     VAConfigID          config,
1099     VASurfaceAttrib    *attrib_list,
1100     unsigned int       *num_attribs
1101 );
1102
1103 /**
1104  * \brief Creates an array of surfaces
1105  *
1106  * Creates an array of surfaces. The optional list of attributes shall
1107  * be constructed based on what the underlying hardware could expose
1108  * through vaQuerySurfaceAttributes().
1109  *
1110  * @param[in] dpy               the VA display
1111  * @param[in] format            the desired surface format. See \c VA_RT_FORMAT_*
1112  * @param[in] width             the surface width
1113  * @param[in] height            the surface height
1114  * @param[out] surfaces         the array of newly created surfaces
1115  * @param[in] num_surfaces      the number of surfaces to create
1116  * @param[in] attrib_list       the list of (optional) attributes, or \c NULL
1117  * @param[in] num_attribs       the number of attributes supplied in
1118  *     \c attrib_list, or zero
1119  */
1120 VAStatus
1121 vaCreateSurfaces(
1122     VADisplay           dpy,
1123     unsigned int        format,
1124     unsigned int        width,
1125     unsigned int        height,
1126     VASurfaceID        *surfaces,
1127     unsigned int        num_surfaces,
1128     VASurfaceAttrib    *attrib_list,
1129     unsigned int        num_attribs
1130 );
1131     
1132 /**
1133  * vaDestroySurfaces - Destroy resources associated with surfaces. 
1134  *  Surfaces can only be destroyed after all contexts using these surfaces have been
1135  *  destroyed.  
1136  *  dpy: display
1137  *  surfaces: array of surfaces to destroy
1138  *  num_surfaces: number of surfaces in the array to be destroyed.
1139  */
1140 VAStatus vaDestroySurfaces (
1141     VADisplay dpy,
1142     VASurfaceID *surfaces,
1143     int num_surfaces
1144 );
1145
1146 #define VA_PROGRESSIVE 0x1
1147 /**
1148  * vaCreateContext - Create a context
1149  *  dpy: display
1150  *  config_id: configuration for the context
1151  *  picture_width: coded picture width
1152  *  picture_height: coded picture height
1153  *  flag: any combination of the following:
1154  *    VA_PROGRESSIVE (only progressive frame pictures in the sequence when set)
1155  *  render_targets: a hint for render targets (surfaces) tied to the context
1156  *  num_render_targets: number of render targets in the above array
1157  *  context: created context id upon return
1158  */
1159 VAStatus vaCreateContext (
1160     VADisplay dpy,
1161     VAConfigID config_id,
1162     int picture_width,
1163     int picture_height,
1164     int flag,
1165     VASurfaceID *render_targets,
1166     int num_render_targets,
1167     VAContextID *context                /* out */
1168 );
1169
1170 /**
1171  * vaDestroyContext - Destroy a context 
1172  *  dpy: display
1173  *  context: context to be destroyed
1174  */
1175 VAStatus vaDestroyContext (
1176     VADisplay dpy,
1177     VAContextID context
1178 );
1179
1180 /**
1181  * Buffers 
1182  * Buffers are used to pass various types of data from the
1183  * client to the server. The server maintains a data store
1184  * for each buffer created, and the client idenfies a buffer
1185  * through a unique buffer id assigned by the server.
1186  */
1187
1188 typedef VAGenericID VABufferID;
1189
1190 typedef enum
1191 {
1192     VAPictureParameterBufferType        = 0,
1193     VAIQMatrixBufferType                = 1,
1194     VABitPlaneBufferType                = 2,
1195     VASliceGroupMapBufferType           = 3,
1196     VASliceParameterBufferType          = 4,
1197     VASliceDataBufferType               = 5,
1198     VAMacroblockParameterBufferType     = 6,
1199     VAResidualDataBufferType            = 7,
1200     VADeblockingParameterBufferType     = 8,
1201     VAImageBufferType                   = 9,
1202     VAProtectedSliceDataBufferType      = 10,
1203     VAQMatrixBufferType                 = 11,
1204     VAHuffmanTableBufferType            = 12,
1205     VAProbabilityBufferType             = 13,
1206
1207 /* Following are encode buffer types */
1208     VAEncCodedBufferType                = 21,
1209     VAEncSequenceParameterBufferType    = 22,
1210     VAEncPictureParameterBufferType     = 23,
1211     VAEncSliceParameterBufferType       = 24,
1212     VAEncPackedHeaderParameterBufferType = 25,
1213     VAEncPackedHeaderDataBufferType     = 26,
1214     VAEncMiscParameterBufferType        = 27,
1215     VAEncMacroblockParameterBufferType  = 28,
1216     VAEncMacroblockMapBufferType        = 29,
1217
1218     /**
1219      * \brief Encoding QP buffer
1220      *
1221      * This buffer contains QP per MB for encoding. Currently
1222      * VAEncQPBufferH264 is defined for H.264 encoding, see
1223      * #VAEncQPBufferH264 for details
1224      */
1225     VAEncQPBufferType                   = 30,
1226 /* Following are video processing buffer types */
1227     /**
1228      * \brief Video processing pipeline parameter buffer.
1229      *
1230      * This buffer describes the video processing pipeline. See
1231      * #VAProcPipelineParameterBuffer for details.
1232      */
1233     VAProcPipelineParameterBufferType   = 41,
1234     /**
1235      * \brief Video filter parameter buffer.
1236      *
1237      * This buffer describes the video filter parameters. All buffers
1238      * inherit from #VAProcFilterParameterBufferBase, thus including
1239      * a unique filter buffer type.
1240      *
1241      * The default buffer used by most filters is #VAProcFilterParameterBuffer.
1242      * Filters requiring advanced parameters include, but are not limited to,
1243      * deinterlacing (#VAProcFilterParameterBufferDeinterlacing),
1244      * color balance (#VAProcFilterParameterBufferColorBalance), etc.
1245      */
1246     VAProcFilterParameterBufferType     = 42,
1247     /**
1248      * \brief FEI specific buffer types
1249      */
1250     VAEncFEIMVBufferType                = 43,
1251     VAEncFEIMBCodeBufferType            = 44,
1252     VAEncFEIDistortionBufferType        = 45,
1253     VAEncFEIMBControlBufferType         = 46,
1254     VAEncFEIMVPredictorBufferType       = 47,
1255     VABufferTypeMax
1256 } VABufferType;
1257
1258 typedef enum
1259 {
1260     VAEncMiscParameterTypeFrameRate     = 0,
1261     VAEncMiscParameterTypeRateControl   = 1,
1262     VAEncMiscParameterTypeMaxSliceSize  = 2,
1263     VAEncMiscParameterTypeAIR           = 3,
1264     /** \brief Buffer type used to express a maximum frame size (in bits). */
1265     VAEncMiscParameterTypeMaxFrameSize  = 4,
1266     /** \brief Buffer type used for HRD parameters. */
1267     VAEncMiscParameterTypeHRD           = 5,
1268     VAEncMiscParameterTypeQualityLevel  = 6,
1269     /** \brief Buffer type used for sending skip frame parameters to the encoder's
1270       * rate control, when the user has externally skipped frames. */
1271     VAEncMiscParameterTypeSkipFrame     = 9,
1272     /** \brief Buffer type used for region-of-interest (ROI) parameters. */
1273     VAEncMiscParameterTypeROI           = 10,
1274     /** \brief Buffer type used for temporal layer structure */
1275     VAEncMiscParameterTypeTemporalLayerStructure   = 12,
1276     /** \brief Buffer type used for FEI input frame level parameters */
1277     VAEncMiscParameterTypeFEIFrameControl = 18,
1278 } VAEncMiscParameterType;
1279
1280 /** \brief Packed header type. */
1281 typedef enum {
1282     /** \brief Packed sequence header. */
1283     VAEncPackedHeaderSequence   = 1,
1284     /** \brief Packed picture header. */
1285     VAEncPackedHeaderPicture    = 2,
1286     /** \brief Packed slice header. */
1287     VAEncPackedHeaderSlice      = 3,
1288     /** 
1289      * \brief Packed raw header. 
1290      * 
1291      * Packed raw data header can be used by the client to insert a header  
1292      * into the bitstream data buffer at the point it is passed, the driver 
1293      * will handle the raw packed header based on "has_emulation_bytes" field
1294      * in the packed header parameter structure.
1295      */
1296     VAEncPackedHeaderRawData    = 4,
1297     /**
1298      * \brief Misc packed header. See codec-specific definitions.
1299      *
1300      * @deprecated
1301      * This is a deprecated packed header type. All applications can use
1302      * \c VAEncPackedHeaderRawData to insert a codec-specific packed header
1303      */
1304     VAEncPackedHeaderMiscMask va_deprecated_enum  = 0x80000000,
1305 } VAEncPackedHeaderType;
1306
1307 /** \brief Packed header parameter. */
1308 typedef struct _VAEncPackedHeaderParameterBuffer {
1309     /** Type of the packed header buffer. See #VAEncPackedHeaderType. */
1310     uint32_t                type;
1311     /** \brief Size of the #VAEncPackedHeaderDataBuffer in bits. */
1312     uint32_t                bit_length;
1313     /** \brief Flag: buffer contains start code emulation prevention bytes? */
1314     uint8_t               has_emulation_bytes;
1315
1316     /** \brief Reserved bytes for future use, must be zero */
1317     uint32_t                va_reserved[VA_PADDING_LOW];
1318 } VAEncPackedHeaderParameterBuffer;
1319
1320 /**
1321  *  For application, e.g. set a new bitrate
1322  *    VABufferID buf_id;
1323  *    VAEncMiscParameterBuffer *misc_param;
1324  *    VAEncMiscParameterRateControl *misc_rate_ctrl;
1325  * 
1326  *    vaCreateBuffer(dpy, context, VAEncMiscParameterBufferType,
1327  *              sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),
1328  *              1, NULL, &buf_id);
1329  *
1330  *    vaMapBuffer(dpy,buf_id,(void **)&misc_param);
1331  *    misc_param->type = VAEncMiscParameterTypeRateControl;
1332  *    misc_rate_ctrl= (VAEncMiscParameterRateControl *)misc_param->data;
1333  *    misc_rate_ctrl->bits_per_second = 6400000;
1334  *    vaUnmapBuffer(dpy, buf_id);
1335  *    vaRenderPicture(dpy, context, &buf_id, 1);
1336  */
1337 typedef struct _VAEncMiscParameterBuffer
1338 {
1339     VAEncMiscParameterType type;
1340     uint32_t data[];
1341 } VAEncMiscParameterBuffer;
1342
1343 /** \brief Temporal layer Structure*/
1344 typedef struct _VAEncMiscParameterTemporalLayerStructure
1345 {
1346     /** \brief The number of temporal layers */
1347     uint32_t number_of_layers;
1348     /** \brief The length of the array defining frame layer membership. Should be 1-32 */
1349     uint32_t periodicity;
1350     /**
1351      * \brief The array indicating the layer id for each frame
1352      *
1353      * The layer id for the first frame in a coded sequence is always 0, so layer_id[] specifies the layer
1354      * ids for frames starting from the 2nd frame.
1355      */
1356     uint32_t layer_id[32];
1357
1358     /** \brief Reserved bytes for future use, must be zero */
1359     uint32_t                va_reserved[VA_PADDING_LOW];
1360 } VAEncMiscParameterTemporalLayerStructure;
1361
1362
1363 /** \brief Rate control parameters */
1364 typedef struct _VAEncMiscParameterRateControl
1365 {
1366     /* this is the maximum bit-rate to be constrained by the rate control implementation */
1367     uint32_t bits_per_second;
1368     /* this is the bit-rate the rate control is targeting, as a percentage of the maximum
1369      * bit-rate for example if target_percentage is 95 then the rate control will target
1370      * a bit-rate that is 95% of the maximum bit-rate
1371      */
1372     uint32_t target_percentage;
1373     /* windows size in milliseconds. For example if this is set to 500,
1374      * then the rate control will guarantee the target bit-rate over a 500 ms window
1375      */
1376     uint32_t window_size;
1377     /* initial QP at I frames */
1378     uint32_t initial_qp;
1379     uint32_t min_qp;
1380     uint32_t basic_unit_size;
1381     union
1382     {
1383         struct
1384         {
1385             uint32_t reset : 1;
1386             uint32_t disable_frame_skip : 1; /* Disable frame skip in rate control mode */
1387             uint32_t disable_bit_stuffing : 1; /* Disable bit stuffing in rate control mode */
1388             uint32_t mb_rate_control : 4; /* Control VA_RC_MB 0: default, 1: enable, 2: disable, other: reserved*/
1389             /*
1390              * The temporal layer that the rate control parameters are specified for.
1391              */
1392             uint32_t temporal_id : 8;
1393             /** \brief Reserved for future use, must be zero */
1394             uint32_t reserved : 17;
1395         } bits;
1396         uint32_t value;
1397     } rc_flags;
1398
1399     /** \brief Reserved bytes for future use, must be zero */
1400     uint32_t                va_reserved[VA_PADDING_MEDIUM];
1401 } VAEncMiscParameterRateControl;
1402
1403 typedef struct _VAEncMiscParameterFrameRate
1404 {
1405     /*
1406      * The framerate is specified as a number of frames per second, as a
1407      * fraction.  The denominator of the fraction is given in the top half
1408      * (the high two bytes) of the framerate field, and the numerator is
1409      * given in the bottom half (the low two bytes).
1410      *
1411      * That is:
1412      * denominator = framerate >> 16 & 0xffff;
1413      * numerator   = framerate & 0xffff;
1414      * fps         = numerator / denominator;
1415      *
1416      * For example, if framerate is set to (100 << 16 | 750), this is
1417      * 750 / 100, hence 7.5fps.
1418      *
1419      * If the denominator is zero (the high two bytes are both zero) then
1420      * it takes the value one instead, so the framerate is just the integer
1421      * in the low 2 bytes.
1422      */
1423     uint32_t framerate;
1424     union
1425     {
1426         struct
1427         {
1428             /*
1429              * The temporal id the framerate parameters are specified for.
1430              */
1431             uint32_t temporal_id : 8;
1432             uint32_t reserved : 24;
1433          } bits;
1434          uint32_t value;
1435      } framerate_flags;
1436
1437     /** \brief Reserved bytes for future use, must be zero */
1438     uint32_t                va_reserved[VA_PADDING_LOW];
1439 } VAEncMiscParameterFrameRate;
1440
1441 /**
1442  * Allow a maximum slice size to be specified (in bits).
1443  * The encoder will attempt to make sure that individual slices do not exceed this size
1444  * Or to signal applicate if the slice size exceed this size, see "status" of VACodedBufferSegment
1445  */
1446 typedef struct _VAEncMiscParameterMaxSliceSize
1447 {
1448     uint32_t max_slice_size;
1449
1450     /** \brief Reserved bytes for future use, must be zero */
1451     uint32_t                va_reserved[VA_PADDING_LOW];
1452 } VAEncMiscParameterMaxSliceSize;
1453
1454 typedef struct _VAEncMiscParameterAIR
1455 {
1456     uint32_t air_num_mbs;
1457     uint32_t air_threshold;
1458     uint32_t air_auto; /* if set to 1 then hardware auto-tune the AIR threshold */
1459
1460     /** \brief Reserved bytes for future use, must be zero */
1461     uint32_t                va_reserved[VA_PADDING_LOW];
1462 } VAEncMiscParameterAIR;
1463
1464 typedef struct _VAEncMiscParameterHRD
1465 {
1466     uint32_t initial_buffer_fullness;       /* in bits */
1467     uint32_t buffer_size;                   /* in bits */
1468
1469     /** \brief Reserved bytes for future use, must be zero */
1470     uint32_t                va_reserved[VA_PADDING_LOW];
1471 } VAEncMiscParameterHRD;
1472
1473 /**
1474  * \brief Defines a maximum frame size (in bits).
1475  *
1476  * This misc parameter buffer defines the maximum size of a frame (in
1477  * bits). The encoder will try to make sure that each frame does not
1478  * exceed this size. Otherwise, if the frame size exceeds this size,
1479  * the \c status flag of #VACodedBufferSegment will contain
1480  * #VA_CODED_BUF_STATUS_FRAME_SIZE_OVERFLOW.
1481  */
1482 typedef struct _VAEncMiscParameterBufferMaxFrameSize {
1483     /** \brief Type. Shall be set to #VAEncMiscParameterTypeMaxFrameSize. */
1484     VAEncMiscParameterType      type;
1485     /** \brief Maximum size of a frame (in bits). */
1486     uint32_t                max_frame_size;
1487
1488     /** \brief Reserved bytes for future use, must be zero */
1489     uint32_t                va_reserved[VA_PADDING_LOW];
1490 } VAEncMiscParameterBufferMaxFrameSize;
1491
1492 /**
1493  * \brief Encoding quality level.
1494  *
1495  * The encoding quality could be set through this structure, if the implementation  
1496  * supports multiple quality levels. The quality level set through this structure is 
1497  * persistent over the entire coded sequence, or until a new structure is being sent.
1498  * The quality level range can be queried through the VAConfigAttribEncQualityRange 
1499  * attribute. A lower value means higher quality, and a value of 1 represents the highest 
1500  * quality. The quality level setting is used as a trade-off between quality and speed/power 
1501  * consumption, with higher quality corresponds to lower speed and higher power consumption. 
1502  */
1503 typedef struct _VAEncMiscParameterBufferQualityLevel {
1504     /** \brief Encoding quality level setting. When set to 0, default quality
1505      * level is used.
1506      */
1507     uint32_t                quality_level;
1508
1509     /** \brief Reserved bytes for future use, must be zero */
1510     uint32_t                va_reserved[VA_PADDING_LOW];
1511 } VAEncMiscParameterBufferQualityLevel;
1512
1513 /**
1514  * \brief Encoding skip frame.
1515  *
1516  * The application may choose to skip frames externally to the encoder (e.g. drop completely or 
1517  * code as all skip's). For rate control purposes the encoder will need to know the size and number 
1518  * of skipped frames.  Skip frame(s) indicated through this structure is applicable only to the 
1519  * current frame.  It is allowed for the application to still send in packed headers for the driver to 
1520  * pack, although no frame will be encoded (e.g. for HW to encrypt the frame).  
1521  */
1522 typedef struct _VAEncMiscParameterSkipFrame {
1523     /** \brief Indicates skip frames as below.
1524       * 0: Encode as normal, no skip.
1525       * 1: One or more frames were skipped prior to the current frame, encode the current frame as normal.  
1526       * 2: The current frame is to be skipped, do not encode it but pack/encrypt the packed header contents
1527       *    (all except VAEncPackedHeaderSlice) which could contain actual frame contents (e.g. pack the frame 
1528       *    in VAEncPackedHeaderPicture).  */
1529     uint8_t               skip_frame_flag;
1530     /** \brief The number of frames skipped prior to the current frame.  Valid when skip_frame_flag = 1. */
1531     uint8_t               num_skip_frames;
1532     /** \brief When skip_frame_flag = 1, the size of the skipped frames in bits.   When skip_frame_flag = 2, 
1533       * the size of the current skipped frame that is to be packed/encrypted in bits. */
1534     uint32_t                size_skip_frames;
1535
1536     /** \brief Reserved bytes for future use, must be zero */
1537     uint32_t                va_reserved[VA_PADDING_LOW];
1538 } VAEncMiscParameterSkipFrame;
1539
1540 /**
1541  * \brief Encoding region-of-interest (ROI).
1542  *
1543  * The encoding ROI can be set through VAEncMiscParameterBufferROI, if the implementation
1544  * supports ROI input. The ROI set through this structure is applicable only to the
1545  * current frame or field, so must be sent every frame or field to be applied.  The number of
1546  * supported ROIs can be queried through the VAConfigAttribEncROI.  The encoder will use the
1547  * ROI information to adjust the QP values of the MB's that fall within the ROIs.
1548  */
1549 typedef struct _VAEncROI
1550 {
1551         /** \brief Defines the ROI boundary in pixels, the driver will map it to appropriate
1552          *  codec coding units.  It is relative to frame coordinates for the frame case and
1553          *  to field coordinates for the field case. */
1554         VARectangle     roi_rectangle;
1555         /**
1556          * \brief ROI value
1557          *
1558          * \ref roi_value specifies ROI delta QP or ROI priority.
1559          * --  ROI delta QP is the value that will be added on top of the frame level QP.
1560          * --  ROI priority specifies the priority of a region, it can be positive (more important)
1561          * or negative (less important) values and is compared with non-ROI region (taken as value 0),
1562          * E.g. ROI region with \ref roi_value -3 is less important than the non-ROI region (\ref roi_value
1563          * implied to be 0) which is less important than ROI region with roi_value +2. For overlapping
1564          * regions, the roi_value that is first in the ROI array will have priority.
1565          *
1566          * \ref roi_value always specifes ROI delta QP when VAConfigAttribRateControl == VA_RC_CQP, no matter
1567          * the value of \c roi_value_is_qp_delta in #VAEncMiscParameterBufferROI.
1568          *
1569          * \ref roi_value depends on \c roi_value_is_qp_delta in #VAEncMiscParameterBufferROI when
1570          * VAConfigAttribRateControl != VA_RC_CQP. \ref roi_value specifies ROI_delta QP if \c roi_value_is_qp_delta
1571          * in VAEncMiscParameterBufferROI is 1, otherwise \ref roi_value specifies ROI priority.
1572          */
1573         int8_t            roi_value;
1574 } VAEncROI;
1575
1576 typedef struct _VAEncMiscParameterBufferROI {
1577     /** \brief Number of ROIs being sent.*/
1578     uint32_t        num_roi;
1579
1580     /** \brief Valid when VAConfigAttribRateControl != VA_RC_CQP, then the encoder's
1581      *  rate control will determine actual delta QPs.  Specifies the max/min allowed delta
1582      *  QPs. */
1583     int8_t                max_delta_qp;
1584     int8_t                min_delta_qp;
1585
1586    /** \brief Pointer to a VAEncROI array with num_roi elements.  It is relative to frame
1587      *  coordinates for the frame case and to field coordinates for the field case.*/
1588     VAEncROI            *roi;
1589     union {
1590         struct {
1591             /**
1592              * \brief An indication for roi value.
1593              *
1594              * \ref roi_value_is_qp_delta equal to 1 indicates \c roi_value in #VAEncROI should
1595              * be used as ROI delta QP. \ref roi_value_is_qp_delta equal to 0 indicates \c roi_value
1596              * in #VAEncROI should be used as ROI priority.
1597              *
1598              * \ref roi_value_is_qp_delta is only available when VAConfigAttribRateControl != VA_RC_CQP,
1599              * the setting must comply with \c roi_rc_priority_support and \c roi_rc_qp_delta_support in
1600              * #VAConfigAttribValEncROI. The underlying driver should ignore this field
1601              * when VAConfigAttribRateControl == VA_RC_CQP.
1602              */
1603             uint32_t  roi_value_is_qp_delta    : 1;
1604             uint32_t  reserved                 : 31;
1605         } bits;
1606         uint32_t value;
1607     } roi_flags;
1608
1609     /** \brief Reserved bytes for future use, must be zero */
1610     uint32_t                va_reserved[VA_PADDING_LOW];
1611 } VAEncMiscParameterBufferROI;
1612
1613 /**
1614  * There will be cases where the bitstream buffer will not have enough room to hold
1615  * the data for the entire slice, and the following flags will be used in the slice
1616  * parameter to signal to the server for the possible cases.
1617  * If a slice parameter buffer and slice data buffer pair is sent to the server with 
1618  * the slice data partially in the slice data buffer (BEGIN and MIDDLE cases below), 
1619  * then a slice parameter and data buffer needs to be sent again to complete this slice. 
1620  */
1621 #define VA_SLICE_DATA_FLAG_ALL          0x00    /* whole slice is in the buffer */
1622 #define VA_SLICE_DATA_FLAG_BEGIN        0x01    /* The beginning of the slice is in the buffer but the end if not */
1623 #define VA_SLICE_DATA_FLAG_MIDDLE       0x02    /* Neither beginning nor end of the slice is in the buffer */
1624 #define VA_SLICE_DATA_FLAG_END          0x04    /* end of the slice is in the buffer */
1625
1626 /* Codec-independent Slice Parameter Buffer base */
1627 typedef struct _VASliceParameterBufferBase
1628 {
1629     uint32_t slice_data_size;   /* number of bytes in the slice data buffer for this slice */
1630     uint32_t slice_data_offset; /* the offset to the first byte of slice data */
1631     uint32_t slice_data_flag;   /* see VA_SLICE_DATA_FLAG_XXX definitions */
1632 } VASliceParameterBufferBase;
1633
1634 /**********************************
1635  * JPEG common  data structures
1636  **********************************/
1637 /**
1638  * \brief Huffman table for JPEG decoding.
1639  *
1640  * This structure holds the complete Huffman tables. This is an
1641  * aggregation of all Huffman table (DHT) segments maintained by the
1642  * application. i.e. up to 2 Huffman tables are stored in there for
1643  * baseline profile.
1644  *
1645  * The #load_huffman_table array can be used as a hint to notify the
1646  * VA driver implementation about which table(s) actually changed
1647  * since the last submission of this buffer.
1648  */
1649 typedef struct _VAHuffmanTableBufferJPEGBaseline {
1650     /** \brief Specifies which #huffman_table is valid. */
1651     uint8_t       load_huffman_table[2];
1652     /** \brief Huffman tables indexed by table identifier (Th). */
1653     struct {
1654         /** @name DC table (up to 12 categories) */
1655         /**@{*/
1656         /** \brief Number of Huffman codes of length i + 1 (Li). */
1657         uint8_t   num_dc_codes[16];
1658         /** \brief Value associated with each Huffman code (Vij). */
1659         uint8_t   dc_values[12];
1660         /**@}*/
1661         /** @name AC table (2 special codes + up to 16 * 10 codes) */
1662         /**@{*/
1663         /** \brief Number of Huffman codes of length i + 1 (Li). */
1664         uint8_t   num_ac_codes[16];
1665         /** \brief Value associated with each Huffman code (Vij). */
1666         uint8_t   ac_values[162];
1667         /** \brief Padding to 4-byte boundaries. Must be set to zero. */
1668         uint8_t   pad[2];
1669         /**@}*/
1670     }                   huffman_table[2];
1671
1672     /** \brief Reserved bytes for future use, must be zero */
1673     uint32_t                va_reserved[VA_PADDING_LOW];
1674 } VAHuffmanTableBufferJPEGBaseline;
1675
1676 /****************************
1677  * MPEG-2 data structures
1678  ****************************/
1679  
1680 /* MPEG-2 Picture Parameter Buffer */
1681 /* 
1682  * For each frame or field, and before any slice data, a single
1683  * picture parameter buffer must be send.
1684  */
1685 typedef struct _VAPictureParameterBufferMPEG2
1686 {
1687     uint16_t horizontal_size;
1688     uint16_t vertical_size;
1689     VASurfaceID forward_reference_picture;
1690     VASurfaceID backward_reference_picture;
1691     /* meanings of the following fields are the same as in the standard */
1692     int32_t picture_coding_type;
1693     int32_t f_code; /* pack all four fcode into this */
1694     union {
1695         struct {
1696             uint32_t intra_dc_precision         : 2; 
1697             uint32_t picture_structure          : 2; 
1698             uint32_t top_field_first            : 1; 
1699             uint32_t frame_pred_frame_dct               : 1; 
1700             uint32_t concealment_motion_vectors : 1;
1701             uint32_t q_scale_type                       : 1;
1702             uint32_t intra_vlc_format           : 1;
1703             uint32_t alternate_scan                     : 1;
1704             uint32_t repeat_first_field         : 1;
1705             uint32_t progressive_frame          : 1;
1706             uint32_t is_first_field                     : 1; /* indicate whether the current field
1707                                                               * is the first field for field picture
1708                                                               */
1709         } bits;
1710         uint32_t value;
1711     } picture_coding_extension;
1712
1713     /** \brief Reserved bytes for future use, must be zero */
1714     uint32_t                va_reserved[VA_PADDING_LOW];
1715 } VAPictureParameterBufferMPEG2;
1716
1717 /** MPEG-2 Inverse Quantization Matrix Buffer */
1718 typedef struct _VAIQMatrixBufferMPEG2
1719 {
1720     /** \brief Same as the MPEG-2 bitstream syntax element. */
1721     int32_t load_intra_quantiser_matrix;
1722     /** \brief Same as the MPEG-2 bitstream syntax element. */
1723     int32_t load_non_intra_quantiser_matrix;
1724     /** \brief Same as the MPEG-2 bitstream syntax element. */
1725     int32_t load_chroma_intra_quantiser_matrix;
1726     /** \brief Same as the MPEG-2 bitstream syntax element. */
1727     int32_t load_chroma_non_intra_quantiser_matrix;
1728     /** \brief Luminance intra matrix, in zig-zag scan order. */
1729     uint8_t intra_quantiser_matrix[64];
1730     /** \brief Luminance non-intra matrix, in zig-zag scan order. */
1731     uint8_t non_intra_quantiser_matrix[64];
1732     /** \brief Chroma intra matrix, in zig-zag scan order. */
1733     uint8_t chroma_intra_quantiser_matrix[64];
1734     /** \brief Chroma non-intra matrix, in zig-zag scan order. */
1735     uint8_t chroma_non_intra_quantiser_matrix[64];
1736
1737     /** \brief Reserved bytes for future use, must be zero */
1738     uint32_t                va_reserved[VA_PADDING_LOW];
1739 } VAIQMatrixBufferMPEG2;
1740
1741 /** MPEG-2 Slice Parameter Buffer */
1742 typedef struct _VASliceParameterBufferMPEG2
1743 {
1744     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
1745     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
1746     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
1747     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
1748     uint32_t slice_horizontal_position;
1749     uint32_t slice_vertical_position;
1750     int32_t quantiser_scale_code;
1751     int32_t intra_slice_flag;
1752
1753     /** \brief Reserved bytes for future use, must be zero */
1754     uint32_t                va_reserved[VA_PADDING_LOW];
1755 } VASliceParameterBufferMPEG2;
1756
1757 /** MPEG-2 Macroblock Parameter Buffer */
1758 typedef struct _VAMacroblockParameterBufferMPEG2
1759 {
1760     uint16_t macroblock_address;
1761     /* 
1762      * macroblock_address (in raster scan order)
1763      * top-left: 0
1764      * bottom-right: picture-height-in-mb*picture-width-in-mb - 1
1765      */
1766     uint8_t macroblock_type;  /* see definition below */
1767     union {
1768         struct {
1769             uint32_t frame_motion_type          : 2; 
1770             uint32_t field_motion_type          : 2; 
1771             uint32_t dct_type                   : 1; 
1772         } bits;
1773         uint32_t value;
1774     } macroblock_modes;
1775     uint8_t motion_vertical_field_select; 
1776     /* 
1777      * motion_vertical_field_select:
1778      * see section 6.3.17.2 in the spec
1779      * only the lower 4 bits are used
1780      * bit 0: first vector forward
1781      * bit 1: first vector backward
1782      * bit 2: second vector forward
1783      * bit 3: second vector backward
1784      */
1785     int16_t PMV[2][2][2]; /* see Table 7-7 in the spec */
1786     uint16_t coded_block_pattern;
1787     /* 
1788      * The bitplanes for coded_block_pattern are described 
1789      * in Figure 6.10-12 in the spec
1790      */
1791      
1792     /* Number of skipped macroblocks after this macroblock */
1793     uint16_t num_skipped_macroblocks;
1794
1795     /** \brief Reserved bytes for future use, must be zero */
1796     uint32_t                va_reserved[VA_PADDING_LOW];
1797 } VAMacroblockParameterBufferMPEG2;
1798
1799 /* 
1800  * OR'd flags for macroblock_type (section 6.3.17.1 in the spec)
1801  */
1802 #define VA_MB_TYPE_MOTION_FORWARD       0x02
1803 #define VA_MB_TYPE_MOTION_BACKWARD      0x04
1804 #define VA_MB_TYPE_MOTION_PATTERN       0x08
1805 #define VA_MB_TYPE_MOTION_INTRA         0x10
1806
1807 /**
1808  * MPEG-2 Residual Data Buffer 
1809  * For each macroblock, there wil be 64 shorts (16-bit) in the 
1810  * residual data buffer
1811  */
1812
1813 /****************************
1814  * MPEG-4 Part 2 data structures
1815  ****************************/
1816  
1817 /* MPEG-4 Picture Parameter Buffer */
1818 /* 
1819  * For each frame or field, and before any slice data, a single
1820  * picture parameter buffer must be send.
1821  */
1822 typedef struct _VAPictureParameterBufferMPEG4
1823 {
1824     uint16_t vop_width;
1825     uint16_t vop_height;
1826     VASurfaceID forward_reference_picture;
1827     VASurfaceID backward_reference_picture;
1828     union {
1829         struct {
1830             uint32_t short_video_header         : 1; 
1831             uint32_t chroma_format                      : 2; 
1832             uint32_t interlaced                 : 1; 
1833             uint32_t obmc_disable                       : 1; 
1834             uint32_t sprite_enable                      : 2; 
1835             uint32_t sprite_warping_accuracy    : 2; 
1836             uint32_t quant_type                 : 1; 
1837             uint32_t quarter_sample                     : 1; 
1838             uint32_t data_partitioned           : 1; 
1839             uint32_t reversible_vlc                     : 1; 
1840             uint32_t resync_marker_disable              : 1; 
1841         } bits;
1842         uint32_t value;
1843     } vol_fields;
1844     uint8_t no_of_sprite_warping_points;
1845     int16_t sprite_trajectory_du[3];
1846     int16_t sprite_trajectory_dv[3];
1847     uint8_t quant_precision;
1848     union {
1849         struct {
1850             uint32_t vop_coding_type            : 2; 
1851             uint32_t backward_reference_vop_coding_type : 2; 
1852             uint32_t vop_rounding_type          : 1; 
1853             uint32_t intra_dc_vlc_thr           : 3; 
1854             uint32_t top_field_first            : 1; 
1855             uint32_t alternate_vertical_scan_flag       : 1; 
1856         } bits;
1857         uint32_t value;
1858     } vop_fields;
1859     uint8_t vop_fcode_forward;
1860     uint8_t vop_fcode_backward;
1861     uint16_t vop_time_increment_resolution;
1862     /* short header related */
1863     uint8_t num_gobs_in_vop;
1864     uint8_t num_macroblocks_in_gob;
1865     /* for direct mode prediction */
1866     int16_t TRB;
1867     int16_t TRD;
1868
1869     /** \brief Reserved bytes for future use, must be zero */
1870     uint32_t                va_reserved[VA_PADDING_LOW];
1871 } VAPictureParameterBufferMPEG4;
1872
1873 /** MPEG-4 Inverse Quantization Matrix Buffer */
1874 typedef struct _VAIQMatrixBufferMPEG4
1875 {
1876     /** Same as the MPEG-4:2 bitstream syntax element. */
1877     int32_t load_intra_quant_mat;
1878     /** Same as the MPEG-4:2 bitstream syntax element. */
1879     int32_t load_non_intra_quant_mat;
1880     /** The matrix for intra blocks, in zig-zag scan order. */
1881     uint8_t intra_quant_mat[64];
1882     /** The matrix for non-intra blocks, in zig-zag scan order. */
1883     uint8_t non_intra_quant_mat[64];
1884
1885     /** \brief Reserved bytes for future use, must be zero */
1886     uint32_t                va_reserved[VA_PADDING_LOW];
1887 } VAIQMatrixBufferMPEG4;
1888
1889 /** MPEG-4 Slice Parameter Buffer */
1890 typedef struct _VASliceParameterBufferMPEG4
1891 {
1892     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
1893     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
1894     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
1895     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
1896     uint32_t macroblock_number;
1897     int32_t quant_scale;
1898
1899     /** \brief Reserved bytes for future use, must be zero */
1900     uint32_t                va_reserved[VA_PADDING_LOW];
1901 } VASliceParameterBufferMPEG4;
1902
1903 /**
1904  VC-1 data structures
1905 */
1906
1907 typedef enum   /* see 7.1.1.32 */
1908 {
1909     VAMvMode1Mv                        = 0,
1910     VAMvMode1MvHalfPel                 = 1,
1911     VAMvMode1MvHalfPelBilinear         = 2,
1912     VAMvModeMixedMv                    = 3,
1913     VAMvModeIntensityCompensation      = 4 
1914 } VAMvModeVC1;
1915
1916 /** VC-1 Picture Parameter Buffer */
1917 /* 
1918  * For each picture, and before any slice data, a picture parameter
1919  * buffer must be send. Multiple picture parameter buffers may be
1920  * sent for a single picture. In that case picture parameters will
1921  * apply to all slice data that follow it until a new picture
1922  * parameter buffer is sent.
1923  *
1924  * Notes:
1925  *   pic_quantizer_type should be set to the applicable quantizer
1926  *   type as defined by QUANTIZER (J.1.19) and either
1927  *   PQUANTIZER (7.1.1.8) or PQINDEX (7.1.1.6)
1928  */
1929 typedef struct _VAPictureParameterBufferVC1
1930 {
1931     VASurfaceID forward_reference_picture;
1932     VASurfaceID backward_reference_picture;
1933     /* if out-of-loop post-processing is done on the render
1934        target, then we need to keep the in-loop decoded 
1935        picture as a reference picture */
1936     VASurfaceID inloop_decoded_picture;
1937
1938     /* sequence layer for AP or meta data for SP and MP */
1939     union {
1940         struct {
1941             uint32_t pulldown   : 1; /* SEQUENCE_LAYER::PULLDOWN */
1942             uint32_t interlace  : 1; /* SEQUENCE_LAYER::INTERLACE */
1943             uint32_t tfcntrflag : 1; /* SEQUENCE_LAYER::TFCNTRFLAG */
1944             uint32_t finterpflag        : 1; /* SEQUENCE_LAYER::FINTERPFLAG */
1945             uint32_t psf                : 1; /* SEQUENCE_LAYER::PSF */
1946             uint32_t multires   : 1; /* METADATA::MULTIRES */
1947             uint32_t overlap    : 1; /* METADATA::OVERLAP */
1948             uint32_t syncmarker : 1; /* METADATA::SYNCMARKER */
1949             uint32_t rangered   : 1; /* METADATA::RANGERED */
1950             uint32_t max_b_frames       : 3; /* METADATA::MAXBFRAMES */
1951             uint32_t profile    : 2; /* SEQUENCE_LAYER::PROFILE or The MSB of METADATA::PROFILE */
1952         } bits;
1953         uint32_t value;
1954     } sequence_fields;
1955
1956     uint16_t coded_width;               /* ENTRY_POINT_LAYER::CODED_WIDTH */
1957     uint16_t coded_height;      /* ENTRY_POINT_LAYER::CODED_HEIGHT */
1958     union {
1959         struct {
1960             uint32_t broken_link        : 1; /* ENTRY_POINT_LAYER::BROKEN_LINK */
1961             uint32_t closed_entry       : 1; /* ENTRY_POINT_LAYER::CLOSED_ENTRY */
1962             uint32_t panscan_flag       : 1; /* ENTRY_POINT_LAYER::PANSCAN_FLAG */
1963             uint32_t loopfilter : 1; /* ENTRY_POINT_LAYER::LOOPFILTER */
1964         } bits;
1965         uint32_t value;
1966     } entrypoint_fields;
1967     uint8_t conditional_overlap_flag; /* ENTRY_POINT_LAYER::CONDOVER */
1968     uint8_t fast_uvmc_flag;     /* ENTRY_POINT_LAYER::FASTUVMC */
1969     union {
1970         struct {
1971             uint32_t luma_flag  : 1; /* ENTRY_POINT_LAYER::RANGE_MAPY_FLAG */
1972             uint32_t luma               : 3; /* ENTRY_POINT_LAYER::RANGE_MAPY */
1973             uint32_t chroma_flag        : 1; /* ENTRY_POINT_LAYER::RANGE_MAPUV_FLAG */
1974             uint32_t chroma             : 3; /* ENTRY_POINT_LAYER::RANGE_MAPUV */
1975         } bits;
1976         uint32_t value;
1977     } range_mapping_fields;
1978
1979     uint8_t b_picture_fraction; /* Index for PICTURE_LAYER::BFRACTION value in Table 40 (7.1.1.14) */
1980     uint8_t cbp_table;          /* PICTURE_LAYER::CBPTAB/ICBPTAB */
1981     uint8_t mb_mode_table;      /* PICTURE_LAYER::MBMODETAB */
1982     uint8_t range_reduction_frame;/* PICTURE_LAYER::RANGEREDFRM */
1983     uint8_t rounding_control;   /* PICTURE_LAYER::RNDCTRL */
1984     uint8_t post_processing;    /* PICTURE_LAYER::POSTPROC */
1985     uint8_t picture_resolution_index;   /* PICTURE_LAYER::RESPIC */
1986     uint8_t luma_scale;         /* PICTURE_LAYER::LUMSCALE */
1987     uint8_t luma_shift;         /* PICTURE_LAYER::LUMSHIFT */
1988
1989     union {
1990         struct {
1991             uint32_t picture_type               : 3; /* PICTURE_LAYER::PTYPE */
1992             uint32_t frame_coding_mode  : 3; /* PICTURE_LAYER::FCM */
1993             uint32_t top_field_first    : 1; /* PICTURE_LAYER::TFF */
1994             uint32_t is_first_field             : 1; /* set to 1 if it is the first field */
1995             uint32_t intensity_compensation     : 1; /* PICTURE_LAYER::INTCOMP */
1996         } bits;
1997         uint32_t value;
1998     } picture_fields;
1999     union {
2000         struct {
2001             uint32_t mv_type_mb : 1;    /* PICTURE::MVTYPEMB */
2002             uint32_t direct_mb  : 1;    /* PICTURE::DIRECTMB */
2003             uint32_t skip_mb    : 1;    /* PICTURE::SKIPMB */
2004             uint32_t field_tx   : 1;    /* PICTURE::FIELDTX */
2005             uint32_t forward_mb : 1;    /* PICTURE::FORWARDMB */
2006             uint32_t ac_pred    : 1;    /* PICTURE::ACPRED */
2007             uint32_t overflags  : 1;    /* PICTURE::OVERFLAGS */
2008         } flags;
2009         uint32_t value;
2010     } raw_coding;
2011     union {
2012         struct {
2013             uint32_t bp_mv_type_mb   : 1;    /* PICTURE::MVTYPEMB */
2014             uint32_t bp_direct_mb    : 1;    /* PICTURE::DIRECTMB */
2015             uint32_t bp_skip_mb      : 1;    /* PICTURE::SKIPMB */  
2016             uint32_t bp_field_tx     : 1;    /* PICTURE::FIELDTX */ 
2017             uint32_t bp_forward_mb   : 1;    /* PICTURE::FORWARDMB */
2018             uint32_t bp_ac_pred      : 1;    /* PICTURE::ACPRED */   
2019             uint32_t bp_overflags    : 1;    /* PICTURE::OVERFLAGS */
2020         } flags;
2021         uint32_t value;
2022     } bitplane_present; /* signal what bitplane is being passed via the bitplane buffer */
2023     union {
2024         struct {
2025             uint32_t reference_distance_flag : 1;/* PICTURE_LAYER::REFDIST_FLAG */
2026             uint32_t reference_distance : 5;/* PICTURE_LAYER::REFDIST */
2027             uint32_t num_reference_pictures: 1;/* PICTURE_LAYER::NUMREF */
2028             uint32_t reference_field_pic_indicator      : 1;/* PICTURE_LAYER::REFFIELD */
2029         } bits;
2030         uint32_t value;
2031     } reference_fields;
2032     union {
2033         struct {
2034             uint32_t mv_mode            : 3; /* PICTURE_LAYER::MVMODE */
2035             uint32_t mv_mode2           : 3; /* PICTURE_LAYER::MVMODE2 */
2036             uint32_t mv_table           : 3; /* PICTURE_LAYER::MVTAB/IMVTAB */
2037             uint32_t two_mv_block_pattern_table: 2; /* PICTURE_LAYER::2MVBPTAB */
2038             uint32_t four_mv_switch             : 1; /* PICTURE_LAYER::4MVSWITCH */
2039             uint32_t four_mv_block_pattern_table : 2; /* PICTURE_LAYER::4MVBPTAB */
2040             uint32_t extended_mv_flag   : 1; /* ENTRY_POINT_LAYER::EXTENDED_MV */
2041             uint32_t extended_mv_range  : 2; /* PICTURE_LAYER::MVRANGE */
2042             uint32_t extended_dmv_flag  : 1; /* ENTRY_POINT_LAYER::EXTENDED_DMV */
2043             uint32_t extended_dmv_range : 2; /* PICTURE_LAYER::DMVRANGE */
2044         } bits;
2045         uint32_t value;
2046     } mv_fields;
2047     union {
2048         struct {
2049             uint32_t dquant     : 2;    /* ENTRY_POINT_LAYER::DQUANT */
2050             uint32_t quantizer     : 2;         /* ENTRY_POINT_LAYER::QUANTIZER */
2051             uint32_t half_qp    : 1;    /* PICTURE_LAYER::HALFQP */
2052             uint32_t pic_quantizer_scale : 5;/* PICTURE_LAYER::PQUANT */
2053             uint32_t pic_quantizer_type : 1;/* PICTURE_LAYER::PQUANTIZER */
2054             uint32_t dq_frame   : 1;    /* VOPDQUANT::DQUANTFRM */
2055             uint32_t dq_profile : 2;    /* VOPDQUANT::DQPROFILE */
2056             uint32_t dq_sb_edge : 2;    /* VOPDQUANT::DQSBEDGE */
2057             uint32_t dq_db_edge         : 2;    /* VOPDQUANT::DQDBEDGE */
2058             uint32_t dq_binary_level : 1;       /* VOPDQUANT::DQBILEVEL */
2059             uint32_t alt_pic_quantizer : 5;/* VOPDQUANT::ALTPQUANT */
2060         } bits;
2061         uint32_t value;
2062     } pic_quantizer_fields;
2063     union {
2064         struct {
2065             uint32_t variable_sized_transform_flag      : 1;/* ENTRY_POINT_LAYER::VSTRANSFORM */
2066             uint32_t mb_level_transform_type_flag       : 1;/* PICTURE_LAYER::TTMBF */
2067             uint32_t frame_level_transform_type : 2;/* PICTURE_LAYER::TTFRM */
2068             uint32_t transform_ac_codingset_idx1        : 2;/* PICTURE_LAYER::TRANSACFRM */
2069             uint32_t transform_ac_codingset_idx2        : 2;/* PICTURE_LAYER::TRANSACFRM2 */
2070             uint32_t intra_transform_dc_table   : 1;/* PICTURE_LAYER::TRANSDCTAB */
2071         } bits;
2072         uint32_t value;
2073     } transform_fields;
2074
2075     uint8_t luma_scale2;                  /* PICTURE_LAYER::LUMSCALE2 */
2076     uint8_t luma_shift2;                  /* PICTURE_LAYER::LUMSHIFT2 */
2077     uint8_t intensity_compensation_field; /* Index for PICTURE_LAYER::INTCOMPFIELD value in Table 109 (9.1.1.48) */
2078
2079     /** \brief Reserved bytes for future use, must be zero */
2080     uint32_t                va_reserved[VA_PADDING_MEDIUM - 1];
2081 } VAPictureParameterBufferVC1;
2082
2083 /** VC-1 Bitplane Buffer
2084 There will be at most three bitplanes coded in any picture header. To send 
2085 the bitplane data more efficiently, each byte is divided in two nibbles, with
2086 each nibble carrying three bitplanes for one macroblock.  The following table
2087 shows the bitplane data arrangement within each nibble based on the picture
2088 type.
2089
2090 Picture Type    Bit3            Bit2            Bit1            Bit0
2091 I or BI                         OVERFLAGS       ACPRED          FIELDTX
2092 P                               MYTYPEMB        SKIPMB          DIRECTMB
2093 B                               FORWARDMB       SKIPMB          DIRECTMB
2094
2095 Within each byte, the lower nibble is for the first MB and the upper nibble is 
2096 for the second MB.  E.g. the lower nibble of the first byte in the bitplane
2097 buffer is for Macroblock #1 and the upper nibble of the first byte is for 
2098 Macroblock #2 in the first row.
2099 */
2100
2101 /* VC-1 Slice Parameter Buffer */
2102 typedef struct _VASliceParameterBufferVC1
2103 {
2104     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
2105     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
2106     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
2107     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
2108     uint32_t slice_vertical_position;
2109
2110     /** \brief Reserved bytes for future use, must be zero */
2111     uint32_t                va_reserved[VA_PADDING_LOW];
2112 } VASliceParameterBufferVC1;
2113
2114 /* VC-1 Slice Data Buffer */
2115 /* 
2116 This is simplely a buffer containing raw bit-stream bytes 
2117 */
2118
2119 /****************************
2120  * H.264/AVC data structures
2121  ****************************/
2122
2123 typedef struct _VAPictureH264
2124 {
2125     VASurfaceID picture_id;
2126     uint32_t frame_idx;
2127     uint32_t flags;
2128     int32_t TopFieldOrderCnt;
2129     int32_t BottomFieldOrderCnt;
2130
2131     /** \brief Reserved bytes for future use, must be zero */
2132     uint32_t                va_reserved[VA_PADDING_LOW];
2133 } VAPictureH264;
2134 /* flags in VAPictureH264 could be OR of the following */
2135 #define VA_PICTURE_H264_INVALID                 0x00000001
2136 #define VA_PICTURE_H264_TOP_FIELD               0x00000002
2137 #define VA_PICTURE_H264_BOTTOM_FIELD            0x00000004
2138 #define VA_PICTURE_H264_SHORT_TERM_REFERENCE    0x00000008
2139 #define VA_PICTURE_H264_LONG_TERM_REFERENCE     0x00000010
2140
2141 /** H.264 Picture Parameter Buffer */
2142 /* 
2143  * For each picture, and before any slice data, a single
2144  * picture parameter buffer must be send.
2145  */
2146 typedef struct _VAPictureParameterBufferH264
2147 {
2148     VAPictureH264 CurrPic;
2149     VAPictureH264 ReferenceFrames[16];  /* in DPB */
2150     uint16_t picture_width_in_mbs_minus1;
2151     uint16_t picture_height_in_mbs_minus1;
2152     uint8_t bit_depth_luma_minus8;
2153     uint8_t bit_depth_chroma_minus8;
2154     uint8_t num_ref_frames;
2155     union {
2156         struct {
2157             uint32_t chroma_format_idc                  : 2; 
2158             uint32_t residual_colour_transform_flag             : 1; /* Renamed to separate_colour_plane_flag in newer standard versions. */
2159             uint32_t gaps_in_frame_num_value_allowed_flag       : 1; 
2160             uint32_t frame_mbs_only_flag                        : 1; 
2161             uint32_t mb_adaptive_frame_field_flag               : 1; 
2162             uint32_t direct_8x8_inference_flag          : 1; 
2163             uint32_t MinLumaBiPredSize8x8                       : 1; /* see A.3.3.2 */
2164             uint32_t log2_max_frame_num_minus4          : 4;
2165             uint32_t pic_order_cnt_type                 : 2;
2166             uint32_t log2_max_pic_order_cnt_lsb_minus4  : 4;
2167             uint32_t delta_pic_order_always_zero_flag   : 1;
2168         } bits;
2169         uint32_t value;
2170     } seq_fields;
2171     // FMO is not supported.
2172     va_deprecated uint8_t num_slice_groups_minus1;
2173     va_deprecated uint8_t slice_group_map_type;
2174     va_deprecated uint16_t slice_group_change_rate_minus1;
2175     int8_t pic_init_qp_minus26;
2176     int8_t pic_init_qs_minus26;
2177     int8_t chroma_qp_index_offset;
2178     int8_t second_chroma_qp_index_offset;
2179     union {
2180         struct {
2181             uint32_t entropy_coding_mode_flag   : 1;
2182             uint32_t weighted_pred_flag         : 1;
2183             uint32_t weighted_bipred_idc                : 2;
2184             uint32_t transform_8x8_mode_flag    : 1;
2185             uint32_t field_pic_flag                     : 1;
2186             uint32_t constrained_intra_pred_flag        : 1;
2187             uint32_t pic_order_present_flag                     : 1; /* Renamed to bottom_field_pic_order_in_frame_present_flag in newer standard versions. */
2188             uint32_t deblocking_filter_control_present_flag : 1;
2189             uint32_t redundant_pic_cnt_present_flag             : 1;
2190             uint32_t reference_pic_flag                 : 1; /* nal_ref_idc != 0 */
2191         } bits;
2192         uint32_t value;
2193     } pic_fields;
2194     uint16_t frame_num;
2195
2196     /** \brief Reserved bytes for future use, must be zero */
2197     uint32_t                va_reserved[VA_PADDING_MEDIUM];
2198 } VAPictureParameterBufferH264;
2199
2200 /** H.264 Inverse Quantization Matrix Buffer */
2201 typedef struct _VAIQMatrixBufferH264
2202 {
2203     /** \brief 4x4 scaling list, in raster scan order. */
2204     uint8_t ScalingList4x4[6][16];
2205     /** \brief 8x8 scaling list, in raster scan order. */
2206     uint8_t ScalingList8x8[2][64];
2207
2208     /** \brief Reserved bytes for future use, must be zero */
2209     uint32_t                va_reserved[VA_PADDING_LOW];
2210 } VAIQMatrixBufferH264;
2211
2212 /** H.264 Slice Parameter Buffer */
2213 typedef struct _VASliceParameterBufferH264
2214 {
2215     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
2216     /** \brief Byte offset to the NAL Header Unit for this slice. */
2217     uint32_t slice_data_offset;
2218     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
2219     /**
2220      * \brief Bit offset from NAL Header Unit to the begining of slice_data().
2221      *
2222      * This bit offset is relative to and includes the NAL unit byte
2223      * and represents the number of bits parsed in the slice_header()
2224      * after the removal of any emulation prevention bytes in
2225      * there. However, the slice data buffer passed to the hardware is
2226      * the original bitstream, thus including any emulation prevention
2227      * bytes.
2228      */
2229     uint16_t slice_data_bit_offset;
2230     uint16_t first_mb_in_slice;
2231     uint8_t slice_type;
2232     uint8_t direct_spatial_mv_pred_flag;
2233     /**
2234      * H264/AVC syntax element
2235      *
2236      * if num_ref_idx_active_override_flag equals 0, host decoder should
2237      * set its value to num_ref_idx_l0_default_active_minus1.
2238      */
2239     uint8_t num_ref_idx_l0_active_minus1;
2240     /**
2241      * H264/AVC syntax element
2242      *
2243      * if num_ref_idx_active_override_flag equals 0, host decoder should
2244      * set its value to num_ref_idx_l1_default_active_minus1.
2245      */
2246     uint8_t num_ref_idx_l1_active_minus1;
2247     uint8_t cabac_init_idc;
2248     int8_t slice_qp_delta;
2249     uint8_t disable_deblocking_filter_idc;
2250     int8_t slice_alpha_c0_offset_div2;
2251     int8_t slice_beta_offset_div2;
2252     VAPictureH264 RefPicList0[32];      /* See 8.2.4.2 */
2253     VAPictureH264 RefPicList1[32];      /* See 8.2.4.2 */
2254     uint8_t luma_log2_weight_denom;
2255     uint8_t chroma_log2_weight_denom;
2256     uint8_t luma_weight_l0_flag;
2257     int16_t luma_weight_l0[32];
2258     int16_t luma_offset_l0[32];
2259     uint8_t chroma_weight_l0_flag;
2260     int16_t chroma_weight_l0[32][2];
2261     int16_t chroma_offset_l0[32][2];
2262     uint8_t luma_weight_l1_flag;
2263     int16_t luma_weight_l1[32];
2264     int16_t luma_offset_l1[32];
2265     uint8_t chroma_weight_l1_flag;
2266     int16_t chroma_weight_l1[32][2];
2267     int16_t chroma_offset_l1[32][2];
2268
2269     /** \brief Reserved bytes for future use, must be zero */
2270     uint32_t                va_reserved[VA_PADDING_LOW];
2271 } VASliceParameterBufferH264;
2272
2273 /****************************
2274  * Common encode data structures 
2275  ****************************/
2276 typedef enum
2277 {
2278     VAEncPictureTypeIntra               = 0,
2279     VAEncPictureTypePredictive          = 1,
2280     VAEncPictureTypeBidirectional       = 2,
2281 } VAEncPictureType;
2282
2283 /* Encode Slice Parameter Buffer */
2284 typedef struct _VAEncSliceParameterBuffer
2285 {
2286     uint32_t start_row_number;  /* starting MB row number for this slice */
2287     uint32_t slice_height;      /* slice height measured in MB */
2288     union {
2289         struct {
2290             uint32_t is_intra   : 1;
2291             uint32_t disable_deblocking_filter_idc : 2;
2292             uint32_t uses_long_term_ref         :1;
2293             uint32_t is_long_term_ref           :1;
2294         } bits;
2295         uint32_t value;
2296     } slice_flags;
2297
2298     /** \brief Reserved bytes for future use, must be zero */
2299     uint32_t                va_reserved[VA_PADDING_LOW];
2300 } VAEncSliceParameterBuffer;
2301
2302
2303 /****************************
2304  * H.263 specific encode data structures
2305  ****************************/
2306
2307 typedef struct _VAEncSequenceParameterBufferH263
2308 {
2309     uint32_t intra_period;
2310     uint32_t bits_per_second;
2311     uint32_t frame_rate;
2312     uint32_t initial_qp;
2313     uint32_t min_qp;
2314
2315     /** \brief Reserved bytes for future use, must be zero */
2316     uint32_t                va_reserved[VA_PADDING_LOW];
2317 } VAEncSequenceParameterBufferH263;
2318
2319 typedef struct _VAEncPictureParameterBufferH263
2320 {
2321     VASurfaceID reference_picture;
2322     VASurfaceID reconstructed_picture;
2323     VABufferID coded_buf;
2324     uint16_t picture_width;
2325     uint16_t picture_height;
2326     VAEncPictureType picture_type;
2327
2328     /** \brief Reserved bytes for future use, must be zero */
2329     uint32_t                va_reserved[VA_PADDING_LOW];
2330 } VAEncPictureParameterBufferH263;
2331
2332 /****************************
2333  * MPEG-4 specific encode data structures
2334  ****************************/
2335
2336 typedef struct _VAEncSequenceParameterBufferMPEG4
2337 {
2338     uint8_t profile_and_level_indication;
2339     uint32_t intra_period;
2340     uint32_t video_object_layer_width;
2341     uint32_t video_object_layer_height;
2342     uint32_t vop_time_increment_resolution;
2343     uint32_t fixed_vop_rate;
2344     uint32_t fixed_vop_time_increment;
2345     uint32_t bits_per_second;
2346     uint32_t frame_rate;
2347     uint32_t initial_qp;
2348     uint32_t min_qp;
2349
2350     /** \brief Reserved bytes for future use, must be zero */
2351     uint32_t                va_reserved[VA_PADDING_LOW];
2352 } VAEncSequenceParameterBufferMPEG4;
2353
2354 typedef struct _VAEncPictureParameterBufferMPEG4
2355 {
2356     VASurfaceID reference_picture;
2357     VASurfaceID reconstructed_picture;
2358     VABufferID coded_buf;
2359     uint16_t picture_width;
2360     uint16_t picture_height;
2361     uint32_t modulo_time_base; /* number of 1s */
2362     uint32_t vop_time_increment;
2363     VAEncPictureType picture_type;
2364
2365     /** \brief Reserved bytes for future use, must be zero */
2366     uint32_t                va_reserved[VA_PADDING_LOW];
2367 } VAEncPictureParameterBufferMPEG4;
2368
2369
2370
2371 /** Buffer functions */
2372
2373 /**
2374  * Creates a buffer for "num_elements" elements of "size" bytes and 
2375  * initalize with "data".
2376  * if "data" is null, then the contents of the buffer data store
2377  * are undefined.
2378  * Basically there are two ways to get buffer data to the server side. One is 
2379  * to call vaCreateBuffer() with a non-null "data", which results the data being
2380  * copied to the data store on the server side.  A different method that 
2381  * eliminates this copy is to pass null as "data" when calling vaCreateBuffer(),
2382  * and then use vaMapBuffer() to map the data store from the server side to the
2383  * client address space for access.
2384  * The user must call vaDestroyBuffer() to destroy a buffer.
2385  *  Note: image buffers are created by the library, not the client. Please see 
2386  *        vaCreateImage on how image buffers are managed.
2387  */
2388 VAStatus vaCreateBuffer (
2389     VADisplay dpy,
2390     VAContextID context,
2391     VABufferType type,  /* in */
2392     unsigned int size,  /* in */
2393     unsigned int num_elements, /* in */
2394     void *data,         /* in */
2395     VABufferID *buf_id  /* out */
2396 );
2397
2398 /**
2399  * Convey to the server how many valid elements are in the buffer. 
2400  * e.g. if multiple slice parameters are being held in a single buffer,
2401  * this will communicate to the server the number of slice parameters
2402  * that are valid in the buffer.
2403  */
2404 VAStatus vaBufferSetNumElements (
2405     VADisplay dpy,
2406     VABufferID buf_id,  /* in */
2407     unsigned int num_elements /* in */
2408 );
2409
2410
2411 /**
2412  * device independent data structure for codedbuffer
2413  */
2414
2415 /* 
2416  * FICTURE_AVE_QP(bit7-0): The average Qp value used during this frame
2417  * LARGE_SLICE(bit8):At least one slice in the current frame was large
2418  *              enough for the encoder to attempt to limit its size.
2419  * SLICE_OVERFLOW(bit9): At least one slice in the current frame has
2420  *              exceeded the maximum slice size specified.
2421  * BITRATE_OVERFLOW(bit10): The peak bitrate was exceeded for this frame.
2422  * BITRATE_HIGH(bit11): The frame size got within the safety margin of the maximum size (VCM only)
2423  * AIR_MB_OVER_THRESHOLD: the number of MBs adapted to Intra MB
2424  */
2425 #define VA_CODED_BUF_STATUS_PICTURE_AVE_QP_MASK         0xff
2426 #define VA_CODED_BUF_STATUS_LARGE_SLICE_MASK            0x100
2427 #define VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK         0x200
2428 #define VA_CODED_BUF_STATUS_BITRATE_OVERFLOW            0x400
2429 #define VA_CODED_BUF_STATUS_BITRATE_HIGH                0x800
2430 /**
2431  * \brief The frame has exceeded the maximum requested size.
2432  *
2433  * This flag indicates that the encoded frame size exceeds the value
2434  * specified through a misc parameter buffer of type
2435  * #VAEncMiscParameterTypeMaxFrameSize.
2436  */
2437 #define VA_CODED_BUF_STATUS_FRAME_SIZE_OVERFLOW         0x1000
2438 #define VA_CODED_BUF_STATUS_AIR_MB_OVER_THRESHOLD       0xff0000
2439
2440 /**
2441  * \brief The coded buffer segment contains a single NAL unit. 
2442  *
2443  * This flag indicates that the coded buffer segment contains a
2444  * single NAL unit. This flag might be useful to the user for 
2445  * processing the coded buffer.
2446  */
2447 #define VA_CODED_BUF_STATUS_SINGLE_NALU                 0x10000000      
2448
2449 /**
2450  * \brief Coded buffer segment.
2451  *
2452  * #VACodedBufferSegment is an element of a linked list describing
2453  * some information on the coded buffer. The coded buffer segment
2454  * could contain either a single NAL unit, or more than one NAL unit. 
2455  * It is recommended (but not required) to return a single NAL unit 
2456  * in a coded buffer segment, and the implementation should set the 
2457  * VA_CODED_BUF_STATUS_SINGLE_NALU status flag if that is the case.
2458  */
2459 typedef  struct _VACodedBufferSegment  {
2460     /**
2461      * \brief Size of the data buffer in this segment (in bytes).
2462      */
2463     uint32_t        size;
2464     /** \brief Bit offset into the data buffer where the video data starts. */
2465     uint32_t        bit_offset;
2466     /** \brief Status set by the driver. See \c VA_CODED_BUF_STATUS_*. */
2467     uint32_t        status;
2468     /** \brief Reserved for future use. */
2469     uint32_t        reserved;
2470     /** \brief Pointer to the start of the data buffer. */
2471     void               *buf;
2472     /**
2473      * \brief Pointer to the next #VACodedBufferSegment element,
2474      * or \c NULL if there is none.
2475      */
2476     void               *next;
2477
2478     /** \brief Reserved bytes for future use, must be zero */
2479     uint32_t                va_reserved[VA_PADDING_LOW];
2480 } VACodedBufferSegment;
2481      
2482 /**
2483  * Map data store of the buffer into the client's address space
2484  * vaCreateBuffer() needs to be called with "data" set to NULL before
2485  * calling vaMapBuffer()
2486  *
2487  * if buffer type is VAEncCodedBufferType, pbuf points to link-list of
2488  * VACodedBufferSegment, and the list is terminated if "next" is NULL
2489  */
2490 VAStatus vaMapBuffer (
2491     VADisplay dpy,
2492     VABufferID buf_id,  /* in */
2493     void **pbuf         /* out */
2494 );
2495
2496 /**
2497  * After client making changes to a mapped data store, it needs to
2498  * "Unmap" it to let the server know that the data is ready to be
2499  * consumed by the server
2500  */
2501 VAStatus vaUnmapBuffer (
2502     VADisplay dpy,
2503     VABufferID buf_id   /* in */
2504 );
2505
2506 /**
2507  * After this call, the buffer is deleted and this buffer_id is no longer valid
2508  *
2509  * A buffer can be re-used and sent to the server by another Begin/Render/End
2510  * sequence if vaDestroyBuffer() is not called with this buffer.
2511  *
2512  * Note re-using a shared buffer (e.g. a slice data buffer) between the host and the
2513  * hardware accelerator can result in performance dropping.
2514  */
2515 VAStatus vaDestroyBuffer (
2516     VADisplay dpy,
2517     VABufferID buffer_id
2518 );
2519
2520 /** \brief VA buffer information */
2521 typedef struct {
2522     /** \brief Buffer handle */
2523     uintptr_t           handle;
2524     /** \brief Buffer type (See \ref VABufferType). */
2525     uint32_t            type;
2526     /**
2527      * \brief Buffer memory type (See \ref VASurfaceAttribMemoryType).
2528      *
2529      * On input to vaAcquireBufferHandle(), this field can serve as a hint
2530      * to specify the set of memory types the caller is interested in.
2531      * On successful return from vaAcquireBufferHandle(), the field is
2532      * updated with the best matching memory type.
2533      */
2534     uint32_t            mem_type;
2535     /** \brief Size of the underlying buffer. */
2536     size_t              mem_size;
2537
2538     /** \brief Reserved bytes for future use, must be zero */
2539     uint32_t                va_reserved[VA_PADDING_LOW];
2540 } VABufferInfo;
2541
2542 /**
2543  * \brief Acquires buffer handle for external API usage
2544  *
2545  * Locks the VA buffer object \ref buf_id for external API usage like
2546  * EGL or OpenCL (OCL). This function is a synchronization point. This
2547  * means that any pending operation is guaranteed to be completed
2548  * prior to returning from the function.
2549  *
2550  * If the referenced VA buffer object is the backing store of a VA
2551  * surface, then this function acts as if vaSyncSurface() on the
2552  * parent surface was called first.
2553  *
2554  * The \ref VABufferInfo argument shall be zero'ed on input. On
2555  * successful output, the data structure is filled in with all the
2556  * necessary buffer level implementation details like handle, type,
2557  * memory type and memory size.
2558  *
2559  * Note: the external API implementation, or the application, can
2560  * express the memory types it is interested in by filling in the \ref
2561  * mem_type field accordingly. On successful output, the memory type
2562  * that fits best the request and that was used is updated in the \ref
2563  * VABufferInfo data structure. If none of the supplied memory types
2564  * is supported, then a \ref VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE
2565  * error is returned.
2566  *
2567  * The \ref VABufferInfo data is valid until vaReleaseBufferHandle()
2568  * is called. Besides, no additional operation is allowed on any of
2569  * the buffer parent object until vaReleaseBufferHandle() is called.
2570  * e.g. decoding into a VA surface backed with the supplied VA buffer
2571  * object \ref buf_id would fail with a \ref VA_STATUS_ERROR_SURFACE_BUSY
2572  * error.
2573  *
2574  * Possible errors:
2575  * - \ref VA_STATUS_ERROR_UNIMPLEMENTED: the VA driver implementation
2576  *   does not support this interface
2577  * - \ref VA_STATUS_ERROR_INVALID_DISPLAY: an invalid display was supplied
2578  * - \ref VA_STATUS_ERROR_INVALID_BUFFER: an invalid buffer was supplied
2579  * - \ref VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE: the implementation
2580  *   does not support exporting buffers of the specified type
2581  * - \ref VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE: none of the requested
2582  *   memory types in \ref VABufferInfo.mem_type was supported
2583  *
2584  * @param[in] dpy               the VA display
2585  * @param[in] buf_id            the VA buffer
2586  * @param[in,out] buf_info      the associated VA buffer information
2587  * @return VA_STATUS_SUCCESS if successful
2588  */
2589 VAStatus
2590 vaAcquireBufferHandle(VADisplay dpy, VABufferID buf_id, VABufferInfo *buf_info);
2591
2592 /**
2593  * \brief Releases buffer after usage from external API
2594  *
2595  * Unlocks the VA buffer object \ref buf_id from external API usage like
2596  * EGL or OpenCL (OCL). This function is a synchronization point. This
2597  * means that any pending operation is guaranteed to be completed
2598  * prior to returning from the function.
2599  *
2600  * The \ref VABufferInfo argument shall point to the original data
2601  * structure that was obtained from vaAcquireBufferHandle(), unaltered.
2602  * This is necessary so that the VA driver implementation could
2603  * deallocate any resources that were needed.
2604  *
2605  * In any case, returning from this function invalidates any contents
2606  * in \ref VABufferInfo. i.e. the underlyng buffer handle is no longer
2607  * valid. Therefore, VA driver implementations are free to reset this
2608  * data structure to safe defaults.
2609  *
2610  * Possible errors:
2611  * - \ref VA_STATUS_ERROR_UNIMPLEMENTED: the VA driver implementation
2612  *   does not support this interface
2613  * - \ref VA_STATUS_ERROR_INVALID_DISPLAY: an invalid display was supplied
2614  * - \ref VA_STATUS_ERROR_INVALID_BUFFER: an invalid buffer was supplied
2615  * - \ref VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE: the implementation
2616  *   does not support exporting buffers of the specified type
2617  *
2618  * @param[in] dpy               the VA display
2619  * @param[in] buf_id            the VA buffer
2620  * @return VA_STATUS_SUCCESS if successful
2621  */
2622 VAStatus
2623 vaReleaseBufferHandle(VADisplay dpy, VABufferID buf_id);
2624
2625 /**
2626  * Render (Video Decode/Encode/Processing) Pictures
2627  *
2628  * A picture represents either a frame or a field.
2629  *
2630  * The Begin/Render/End sequence sends the video decode/encode/processing buffers
2631  * to the server
2632  */
2633
2634 /**
2635  * Get ready for a video pipeline
2636  * - decode a picture to a target surface
2637  * - encode a picture from a target surface
2638  * - process a picture to a target surface
2639  */
2640 VAStatus vaBeginPicture (
2641     VADisplay dpy,
2642     VAContextID context,
2643     VASurfaceID render_target
2644 );
2645
2646 /**
2647  * Send video decode, encode or processing buffers to the server.
2648  */
2649 VAStatus vaRenderPicture (
2650     VADisplay dpy,
2651     VAContextID context,
2652     VABufferID *buffers,
2653     int num_buffers
2654 );
2655
2656 /**
2657  * Make the end of rendering for a picture. 
2658  * The server should start processing all pending operations for this 
2659  * surface. This call is non-blocking. The client can start another 
2660  * Begin/Render/End sequence on a different render target.
2661  */
2662 VAStatus vaEndPicture (
2663     VADisplay dpy,
2664     VAContextID context
2665 );
2666
2667 /*
2668
2669 Synchronization 
2670
2671 */
2672
2673 /**
2674  * This function blocks until all pending operations on the render target
2675  * have been completed.  Upon return it is safe to use the render target for a 
2676  * different picture. 
2677  */
2678 VAStatus vaSyncSurface (
2679     VADisplay dpy,
2680     VASurfaceID render_target
2681 );
2682
2683 typedef enum
2684 {
2685     VASurfaceRendering  = 1, /* Rendering in progress */ 
2686     VASurfaceDisplaying = 2, /* Displaying in progress (not safe to render into it) */ 
2687                              /* this status is useful if surface is used as the source */
2688                              /* of an overlay */
2689     VASurfaceReady      = 4, /* not being rendered or displayed */
2690     VASurfaceSkipped    = 8  /* Indicate a skipped frame during encode */
2691 } VASurfaceStatus;
2692
2693 /**
2694  * Find out any pending ops on the render target 
2695  */
2696 VAStatus vaQuerySurfaceStatus (
2697     VADisplay dpy,
2698     VASurfaceID render_target,
2699     VASurfaceStatus *status     /* out */
2700 );
2701
2702 typedef enum
2703 {
2704     VADecodeSliceMissing            = 0,
2705     VADecodeMBError                 = 1,
2706 } VADecodeErrorType;
2707
2708 /**
2709  * Client calls vaQuerySurfaceError with VA_STATUS_ERROR_DECODING_ERROR, server side returns
2710  * an array of structure VASurfaceDecodeMBErrors, and the array is terminated by setting status=-1
2711 */
2712 typedef struct _VASurfaceDecodeMBErrors
2713 {
2714     int32_t status; /* 1 if hardware has returned detailed info below, -1 means this record is invalid */
2715     uint32_t start_mb; /* start mb address with errors */
2716     uint32_t end_mb;  /* end mb address with errors */
2717     VADecodeErrorType decode_error_type;
2718
2719     /** \brief Reserved bytes for future use, must be zero */
2720     uint32_t                va_reserved[VA_PADDING_LOW];
2721 } VASurfaceDecodeMBErrors;
2722
2723 /**
2724  * After the application gets VA_STATUS_ERROR_DECODING_ERROR after calling vaSyncSurface(),
2725  * it can call vaQuerySurfaceError to find out further details on the particular error.
2726  * VA_STATUS_ERROR_DECODING_ERROR should be passed in as "error_status",
2727  * upon the return, error_info will point to an array of _VASurfaceDecodeMBErrors structure,
2728  * which is allocated and filled by libVA with detailed information on the missing or error macroblocks.
2729  * The array is terminated if "status==-1" is detected.
2730  */
2731 VAStatus vaQuerySurfaceError(
2732     VADisplay dpy,
2733     VASurfaceID surface,
2734     VAStatus error_status,
2735     void **error_info
2736 );
2737
2738 /**
2739  * Images and Subpictures
2740  * VAImage is used to either get the surface data to client memory, or 
2741  * to copy image data in client memory to a surface. 
2742  * Both images, subpictures and surfaces follow the same 2D coordinate system where origin 
2743  * is at the upper left corner with positive X to the right and positive Y down
2744  */
2745 #define VA_FOURCC(ch0, ch1, ch2, ch3) \
2746     ((unsigned long)(unsigned char) (ch0) | ((unsigned long)(unsigned char) (ch1) << 8) | \
2747     ((unsigned long)(unsigned char) (ch2) << 16) | ((unsigned long)(unsigned char) (ch3) << 24 ))
2748
2749 /* 
2750  * Pre-defined fourcc codes
2751  */
2752 #define VA_FOURCC_NV12          0x3231564E
2753 #define VA_FOURCC_AI44          0x34344149
2754 #define VA_FOURCC_RGBA          0x41424752
2755 #define VA_FOURCC_RGBX          0x58424752
2756 #define VA_FOURCC_BGRA          0x41524742
2757 #define VA_FOURCC_BGRX          0x58524742
2758 #define VA_FOURCC_ARGB          0x42475241
2759 #define VA_FOURCC_XRGB          0x42475258
2760 #define VA_FOURCC_ABGR          0x52474241
2761 #define VA_FOURCC_XBGR          0x52474258
2762 #define VA_FOURCC_UYVY          0x59565955
2763 #define VA_FOURCC_YUY2          0x32595559
2764 #define VA_FOURCC_AYUV          0x56555941
2765 #define VA_FOURCC_NV11          0x3131564e
2766 #define VA_FOURCC_YV12          0x32315659
2767 #define VA_FOURCC_P208          0x38303250
2768 /* IYUV same as I420, but most user perfer I420, will deprecate it */
2769 #define VA_FOURCC_IYUV          0x56555949
2770 #define VA_FOURCC_I420          0x30323449
2771 #define VA_FOURCC_YV24          0x34325659
2772 #define VA_FOURCC_YV32          0x32335659
2773 #define VA_FOURCC_Y800          0x30303859
2774 #define VA_FOURCC_IMC3          0x33434D49
2775 #define VA_FOURCC_411P          0x50313134
2776 #define VA_FOURCC_422H          0x48323234
2777 #define VA_FOURCC_422V          0x56323234
2778 #define VA_FOURCC_444P          0x50343434
2779 #define VA_FOURCC_RGBP          0x50424752
2780 #define VA_FOURCC_BGRP          0x50524742
2781 #define VA_FOURCC_411R          0x52313134 /* rotated 411P */
2782 /**
2783  * Planar YUV 4:2:2.
2784  * 8-bit Y plane, followed by 8-bit 2x1 subsampled V and U planes
2785  */
2786 #define VA_FOURCC_YV16          0x36315659
2787 /**
2788  * 10-bit and 16-bit Planar YUV 4:2:0. 
2789  */
2790 #define VA_FOURCC_P010          0x30313050
2791 #define VA_FOURCC_P016          0x36313050
2792
2793 /**
2794  * 10-bit Planar YUV 420 and occupy the lower 10-bit.
2795  */
2796 #define VA_FOURCC_I010          0x30313049
2797
2798 /* byte order */
2799 #define VA_LSB_FIRST            1
2800 #define VA_MSB_FIRST            2
2801
2802 typedef struct _VAImageFormat
2803 {
2804     uint32_t    fourcc;
2805     uint32_t    byte_order; /* VA_LSB_FIRST, VA_MSB_FIRST */
2806     uint32_t    bits_per_pixel;
2807     /* for RGB formats */
2808     uint32_t    depth; /* significant bits per pixel */
2809     uint32_t    red_mask;
2810     uint32_t    green_mask;
2811     uint32_t    blue_mask;
2812     uint32_t    alpha_mask;
2813
2814     /** \brief Reserved bytes for future use, must be zero */
2815     uint32_t                va_reserved[VA_PADDING_LOW];
2816 } VAImageFormat;
2817
2818 typedef VAGenericID VAImageID;
2819
2820 typedef struct _VAImage
2821 {
2822     VAImageID           image_id; /* uniquely identify this image */
2823     VAImageFormat       format;
2824     VABufferID          buf;    /* image data buffer */
2825     /*
2826      * Image data will be stored in a buffer of type VAImageBufferType to facilitate
2827      * data store on the server side for optimal performance. The buffer will be 
2828      * created by the CreateImage function, and proper storage allocated based on the image
2829      * size and format. This buffer is managed by the library implementation, and 
2830      * accessed by the client through the buffer Map/Unmap functions.
2831      */
2832     uint16_t    width; 
2833     uint16_t    height;
2834     uint32_t    data_size;
2835     uint32_t    num_planes;     /* can not be greater than 3 */
2836     /* 
2837      * An array indicating the scanline pitch in bytes for each plane.
2838      * Each plane may have a different pitch. Maximum 3 planes for planar formats
2839      */
2840     uint32_t    pitches[3];
2841     /* 
2842      * An array indicating the byte offset from the beginning of the image data 
2843      * to the start of each plane.
2844      */
2845     uint32_t    offsets[3];
2846
2847     /* The following fields are only needed for paletted formats */
2848     int32_t num_palette_entries;   /* set to zero for non-palette images */
2849     /* 
2850      * Each component is one byte and entry_bytes indicates the number of components in 
2851      * each entry (eg. 3 for YUV palette entries). set to zero for non-palette images   
2852      */
2853     int32_t entry_bytes; 
2854     /*
2855      * An array of ascii characters describing the order of the components within the bytes.
2856      * Only entry_bytes characters of the string are used.
2857      */
2858     int8_t component_order[4];
2859
2860     /** \brief Reserved bytes for future use, must be zero */
2861     uint32_t                va_reserved[VA_PADDING_LOW];
2862 } VAImage;
2863
2864 /** Get maximum number of image formats supported by the implementation */
2865 int vaMaxNumImageFormats (
2866     VADisplay dpy
2867 );
2868
2869 /**
2870  * Query supported image formats 
2871  * The caller must provide a "format_list" array that can hold at
2872  * least vaMaxNumImageFormats() entries. The actual number of formats
2873  * returned in "format_list" is returned in "num_formats".
2874  */
2875 VAStatus vaQueryImageFormats (
2876     VADisplay dpy,
2877     VAImageFormat *format_list, /* out */
2878     int *num_formats            /* out */
2879 );
2880
2881 /**
2882  * Create a VAImage structure
2883  * The width and height fields returned in the VAImage structure may get 
2884  * enlarged for some YUV formats. Upon return from this function, 
2885  * image->buf has been created and proper storage allocated by the library. 
2886  * The client can access the image through the Map/Unmap calls.
2887  */
2888 VAStatus vaCreateImage (
2889     VADisplay dpy,
2890     VAImageFormat *format,
2891     int width,
2892     int height,
2893     VAImage *image      /* out */
2894 );
2895
2896 /**
2897  * Should call DestroyImage before destroying the surface it is bound to
2898  */
2899 VAStatus vaDestroyImage (
2900     VADisplay dpy,
2901     VAImageID image
2902 );
2903
2904 VAStatus vaSetImagePalette (
2905     VADisplay dpy,
2906     VAImageID image,
2907     /* 
2908      * pointer to an array holding the palette data.  The size of the array is 
2909      * num_palette_entries * entry_bytes in size.  The order of the components 
2910      * in the palette is described by the component_order in VAImage struct    
2911      */
2912     unsigned char *palette 
2913 );
2914
2915 /**
2916  * Retrive surface data into a VAImage
2917  * Image must be in a format supported by the implementation
2918  */
2919 VAStatus vaGetImage (
2920     VADisplay dpy,
2921     VASurfaceID surface,
2922     int x,      /* coordinates of the upper left source pixel */
2923     int y,
2924     unsigned int width, /* width and height of the region */
2925     unsigned int height,
2926     VAImageID image
2927 );
2928
2929 /**
2930  * Copy data from a VAImage to a surface
2931  * Image must be in a format supported by the implementation
2932  * Returns a VA_STATUS_ERROR_SURFACE_BUSY if the surface
2933  * shouldn't be rendered into when this is called
2934  */
2935 VAStatus vaPutImage (
2936     VADisplay dpy,
2937     VASurfaceID surface,
2938     VAImageID image,
2939     int src_x,
2940     int src_y,
2941     unsigned int src_width,
2942     unsigned int src_height,
2943     int dest_x,
2944     int dest_y,
2945     unsigned int dest_width,
2946     unsigned int dest_height
2947 );
2948
2949 /**
2950  * Derive an VAImage from an existing surface.
2951  * This interface will derive a VAImage and corresponding image buffer from
2952  * an existing VA Surface. The image buffer can then be mapped/unmapped for
2953  * direct CPU access. This operation is only possible on implementations with
2954  * direct rendering capabilities and internal surface formats that can be
2955  * represented with a VAImage. When the operation is not possible this interface
2956  * will return VA_STATUS_ERROR_OPERATION_FAILED. Clients should then fall back
2957  * to using vaCreateImage + vaPutImage to accomplish the same task in an
2958  * indirect manner.
2959  *
2960  * Implementations should only return success when the resulting image buffer
2961  * would be useable with vaMap/Unmap.
2962  *
2963  * When directly accessing a surface special care must be taken to insure
2964  * proper synchronization with the graphics hardware. Clients should call
2965  * vaQuerySurfaceStatus to insure that a surface is not the target of concurrent
2966  * rendering or currently being displayed by an overlay.
2967  *
2968  * Additionally nothing about the contents of a surface should be assumed
2969  * following a vaPutSurface. Implementations are free to modify the surface for
2970  * scaling or subpicture blending within a call to vaPutImage.
2971  *
2972  * Calls to vaPutImage or vaGetImage using the same surface from which the image
2973  * has been derived will return VA_STATUS_ERROR_SURFACE_BUSY. vaPutImage or
2974  * vaGetImage with other surfaces is supported.
2975  *
2976  * An image created with vaDeriveImage should be freed with vaDestroyImage. The
2977  * image and image buffer structures will be destroyed; however, the underlying
2978  * surface will remain unchanged until freed with vaDestroySurfaces.
2979  */
2980 VAStatus vaDeriveImage (
2981     VADisplay dpy,
2982     VASurfaceID surface,
2983     VAImage *image      /* out */
2984 );
2985
2986 /**
2987  * Subpictures 
2988  * Subpicture is a special type of image that can be blended 
2989  * with a surface during vaPutSurface(). Subpicture can be used to render
2990  * DVD sub-titles or closed captioning text etc.  
2991  */
2992
2993 typedef VAGenericID VASubpictureID;
2994
2995 /** Get maximum number of subpicture formats supported by the implementation */
2996 int vaMaxNumSubpictureFormats (
2997     VADisplay dpy
2998 );
2999
3000 /** flags for subpictures */
3001 #define VA_SUBPICTURE_CHROMA_KEYING                     0x0001
3002 #define VA_SUBPICTURE_GLOBAL_ALPHA                      0x0002
3003 #define VA_SUBPICTURE_DESTINATION_IS_SCREEN_COORD       0x0004
3004 /**
3005  * Query supported subpicture formats 
3006  * The caller must provide a "format_list" array that can hold at
3007  * least vaMaxNumSubpictureFormats() entries. The flags arrary holds the flag 
3008  * for each format to indicate additional capabilities for that format. The actual 
3009  * number of formats returned in "format_list" is returned in "num_formats".
3010  *  flags: returned value to indicate addtional capabilities
3011  *         VA_SUBPICTURE_CHROMA_KEYING - supports chroma-keying
3012  *         VA_SUBPICTURE_GLOBAL_ALPHA - supports global alpha
3013  *         VA_SUBPICTURE_DESTINATION_IS_SCREEN_COORD - supports unscaled screen relative subpictures for On Screen Display
3014  */
3015
3016 VAStatus vaQuerySubpictureFormats (
3017     VADisplay dpy,
3018     VAImageFormat *format_list, /* out */
3019     unsigned int *flags,        /* out */
3020     unsigned int *num_formats   /* out */
3021 );
3022
3023 /**
3024  * Subpictures are created with an image associated. 
3025  */
3026 VAStatus vaCreateSubpicture (
3027     VADisplay dpy,
3028     VAImageID image,
3029     VASubpictureID *subpicture  /* out */
3030 );
3031
3032 /**
3033  * Destroy the subpicture before destroying the image it is assocated to
3034  */
3035 VAStatus vaDestroySubpicture (
3036     VADisplay dpy,
3037     VASubpictureID subpicture
3038 );
3039
3040 /**
3041  * Bind an image to the subpicture. This image will now be associated with 
3042  * the subpicture instead of the one at creation.
3043  */
3044 VAStatus vaSetSubpictureImage (
3045     VADisplay dpy,
3046     VASubpictureID subpicture,
3047     VAImageID image
3048 );
3049
3050 /**
3051  * If chromakey is enabled, then the area where the source value falls within
3052  * the chromakey [min, max] range is transparent
3053  * The chromakey component format is the following:
3054  *  For RGB: [0:7] Red [8:15] Blue [16:23] Green   
3055  *  For YUV: [0:7] V [8:15] U [16:23] Y
3056  * The chromakey mask can be used to mask out certain components for chromakey
3057  * comparision
3058  */
3059 VAStatus vaSetSubpictureChromakey (
3060     VADisplay dpy,
3061     VASubpictureID subpicture,
3062     unsigned int chromakey_min,
3063     unsigned int chromakey_max,
3064     unsigned int chromakey_mask
3065 );
3066
3067 /**
3068  * Global alpha value is between 0 and 1. A value of 1 means fully opaque and 
3069  * a value of 0 means fully transparent. If per-pixel alpha is also specified then
3070  * the overall alpha is per-pixel alpha multiplied by the global alpha
3071  */
3072 VAStatus vaSetSubpictureGlobalAlpha (
3073     VADisplay dpy,
3074     VASubpictureID subpicture,
3075     float global_alpha 
3076 );
3077
3078 /**
3079  * vaAssociateSubpicture associates the subpicture with target_surfaces.
3080  * It defines the region mapping between the subpicture and the target  
3081  * surfaces through source and destination rectangles (with the same width and height).
3082  * Both will be displayed at the next call to vaPutSurface.  Additional
3083  * associations before the call to vaPutSurface simply overrides the association.
3084  */
3085 VAStatus vaAssociateSubpicture (
3086     VADisplay dpy,
3087     VASubpictureID subpicture,
3088     VASurfaceID *target_surfaces,
3089     int num_surfaces,
3090     int16_t src_x, /* upper left offset in subpicture */
3091     int16_t src_y,
3092     uint16_t src_width,
3093     uint16_t src_height,
3094     int16_t dest_x, /* upper left offset in surface */
3095     int16_t dest_y,
3096     uint16_t dest_width,
3097     uint16_t dest_height,
3098     /*
3099      * whether to enable chroma-keying, global-alpha, or screen relative mode
3100      * see VA_SUBPICTURE_XXX values
3101      */
3102     uint32_t flags
3103 );
3104
3105 /**
3106  * vaDeassociateSubpicture removes the association of the subpicture with target_surfaces.
3107  */
3108 VAStatus vaDeassociateSubpicture (
3109     VADisplay dpy,
3110     VASubpictureID subpicture,
3111     VASurfaceID *target_surfaces,
3112     int num_surfaces
3113 );
3114
3115 /**
3116  * Display attributes
3117  * Display attributes are used to control things such as contrast, hue, saturation,
3118  * brightness etc. in the rendering process.  The application can query what
3119  * attributes are supported by the driver, and then set the appropriate attributes
3120  * before calling vaPutSurface()
3121  */
3122 /* PowerVR IEP Lite attributes */
3123 typedef enum
3124 {
3125     VADISPLAYATTRIB_BLE_OFF              = 0x00,
3126     VADISPLAYATTRIB_BLE_LOW,
3127     VADISPLAYATTRIB_BLE_MEDIUM,
3128     VADISPLAYATTRIB_BLE_HIGH,
3129     VADISPLAYATTRIB_BLE_NONE,
3130 } VADisplayAttribBLEMode;
3131
3132 /** attribute value for VADisplayAttribRotation   */
3133 #define VA_ROTATION_NONE        0x00000000
3134 #define VA_ROTATION_90          0x00000001
3135 #define VA_ROTATION_180         0x00000002
3136 #define VA_ROTATION_270         0x00000003
3137
3138 /** attribute value for VADisplayAttribOutOfLoopDeblock */
3139 #define VA_OOL_DEBLOCKING_FALSE 0x00000000
3140 #define VA_OOL_DEBLOCKING_TRUE  0x00000001
3141
3142 /** Render mode */
3143 #define VA_RENDER_MODE_UNDEFINED           0
3144 #define VA_RENDER_MODE_LOCAL_OVERLAY       1
3145 #define VA_RENDER_MODE_LOCAL_GPU           2
3146 #define VA_RENDER_MODE_EXTERNAL_OVERLAY    4
3147 #define VA_RENDER_MODE_EXTERNAL_GPU        8
3148
3149 /** Render device */
3150 #define VA_RENDER_DEVICE_UNDEFINED  0
3151 #define VA_RENDER_DEVICE_LOCAL      1
3152 #define VA_RENDER_DEVICE_EXTERNAL   2
3153
3154 /** Currently defined display attribute types */
3155 typedef enum
3156 {
3157     VADisplayAttribBrightness           = 0,
3158     VADisplayAttribContrast             = 1,
3159     VADisplayAttribHue                  = 2,
3160     VADisplayAttribSaturation           = 3,
3161     /* client can specifiy a background color for the target window
3162      * the new feature of video conference,
3163      * the uncovered area of the surface is filled by this color
3164      * also it will blend with the decoded video color
3165      */
3166     VADisplayAttribBackgroundColor      = 4,
3167     /*
3168      * this is a gettable only attribute. For some implementations that use the
3169      * hardware overlay, after PutSurface is called, the surface can not be    
3170      * re-used until after the subsequent PutSurface call. If this is the case 
3171      * then the value for this attribute will be set to 1 so that the client   
3172      * will not attempt to re-use the surface right after returning from a call
3173      * to PutSurface.
3174      *
3175      * Don't use it, use flag VASurfaceDisplaying of vaQuerySurfaceStatus since
3176      * driver may use overlay or GPU alternatively
3177      */
3178     VADisplayAttribDirectSurface       = 5,
3179     VADisplayAttribRotation            = 6,     
3180     VADisplayAttribOutofLoopDeblock    = 7,
3181
3182     /* PowerVR IEP Lite specific attributes */
3183     VADisplayAttribBLEBlackMode        = 8,
3184     VADisplayAttribBLEWhiteMode        = 9,
3185     VADisplayAttribBlueStretch         = 10,
3186     VADisplayAttribSkinColorCorrection = 11,
3187     /*
3188      * For type VADisplayAttribCSCMatrix, "value" field is a pointer to the color
3189      * conversion matrix. Each element in the matrix is float-point
3190      */
3191     VADisplayAttribCSCMatrix           = 12,
3192     /* specify the constant color used to blend with video surface
3193      * Cd = Cv*Cc*Ac + Cb *(1 - Ac) C means the constant RGB
3194      *      d: the final color to overwrite into the frame buffer 
3195      *      v: decoded video after color conversion, 
3196      *      c: video color specified by VADisplayAttribBlendColor
3197      *      b: background color of the drawable
3198      */
3199     VADisplayAttribBlendColor          = 13,
3200     /*
3201      * Indicate driver to skip painting color key or not.
3202      * only applicable if the render is overlay
3203      */
3204     VADisplayAttribOverlayAutoPaintColorKey   = 14,
3205     /*
3206      * customized overlay color key, the format is RGB888
3207      * [23:16] = Red, [15:08] = Green, [07:00] = Blue.
3208      */
3209     VADisplayAttribOverlayColorKey      = 15,
3210     /*
3211      * The hint for the implementation of vaPutSurface
3212      * normally, the driver could use an overlay or GPU to render the surface on the screen
3213      * this flag provides APP the flexibity to switch the render dynamically
3214      */
3215     VADisplayAttribRenderMode           = 16,
3216     /*
3217      * specify if vaPutSurface needs to render into specified monitors
3218      * one example is that one external monitor (e.g. HDMI) is enabled, 
3219      * but the window manager is not aware of it, and there is no associated drawable
3220      */
3221     VADisplayAttribRenderDevice        = 17,
3222     /*
3223      * specify vaPutSurface render area if there is no drawable on the monitor
3224      */
3225     VADisplayAttribRenderRect          = 18,
3226 } VADisplayAttribType;
3227
3228 /* flags for VADisplayAttribute */
3229 #define VA_DISPLAY_ATTRIB_NOT_SUPPORTED 0x0000
3230 #define VA_DISPLAY_ATTRIB_GETTABLE      0x0001
3231 #define VA_DISPLAY_ATTRIB_SETTABLE      0x0002
3232
3233 typedef struct _VADisplayAttribute
3234 {
3235     VADisplayAttribType type;
3236     int32_t min_value;
3237     int32_t max_value;
3238     int32_t value;      /* used by the set/get attribute functions */
3239 /* flags can be VA_DISPLAY_ATTRIB_GETTABLE or VA_DISPLAY_ATTRIB_SETTABLE or OR'd together */
3240     uint32_t flags;
3241
3242     /** \brief Reserved bytes for future use, must be zero */
3243     uint32_t                va_reserved[VA_PADDING_LOW];
3244 } VADisplayAttribute;
3245
3246 /** Get maximum number of display attributs supported by the implementation */
3247 int vaMaxNumDisplayAttributes (
3248     VADisplay dpy
3249 );
3250
3251 /**
3252  * Query display attributes 
3253  * The caller must provide a "attr_list" array that can hold at
3254  * least vaMaxNumDisplayAttributes() entries. The actual number of attributes
3255  * returned in "attr_list" is returned in "num_attributes".
3256  */
3257 VAStatus vaQueryDisplayAttributes (
3258     VADisplay dpy,
3259     VADisplayAttribute *attr_list,      /* out */
3260     int *num_attributes                 /* out */
3261 );
3262
3263 /**
3264  * Get display attributes 
3265  * This function returns the current attribute values in "attr_list".
3266  * Only attributes returned with VA_DISPLAY_ATTRIB_GETTABLE set in the "flags" field
3267  * from vaQueryDisplayAttributes() can have their values retrieved.  
3268  */
3269 VAStatus vaGetDisplayAttributes (
3270     VADisplay dpy,
3271     VADisplayAttribute *attr_list,      /* in/out */
3272     int num_attributes
3273 );
3274
3275 /**
3276  * Set display attributes 
3277  * Only attributes returned with VA_DISPLAY_ATTRIB_SETTABLE set in the "flags" field
3278  * from vaQueryDisplayAttributes() can be set.  If the attribute is not settable or 
3279  * the value is out of range, the function returns VA_STATUS_ERROR_ATTR_NOT_SUPPORTED
3280  */
3281 VAStatus vaSetDisplayAttributes (
3282     VADisplay dpy,
3283     VADisplayAttribute *attr_list,
3284     int num_attributes
3285 );
3286
3287 /****************************
3288  * HEVC data structures
3289  ****************************/
3290 /** 
3291  * \brief Description of picture properties of those in DPB surfaces.
3292  *
3293  * If only progressive scan is supported, each surface contains one whole 
3294  * frame picture.
3295  * Otherwise, each surface contains two fields of whole picture.
3296  * In this case, two entries of ReferenceFrames[] may share same picture_id
3297  * value.
3298  */
3299 typedef struct _VAPictureHEVC
3300 {
3301     /** \brief reconstructed picture buffer surface index 
3302      * invalid when taking value VA_INVALID_SURFACE.
3303      */
3304     VASurfaceID             picture_id;
3305     /** \brief picture order count. 
3306      * in HEVC, POCs for top and bottom fields of same picture should
3307      * take different values.
3308      */
3309     int32_t                 pic_order_cnt;
3310     /* described below */
3311     uint32_t                flags;
3312
3313     /** \brief Reserved bytes for future use, must be zero */
3314     uint32_t                va_reserved[VA_PADDING_LOW];
3315 } VAPictureHEVC;
3316
3317 /* flags in VAPictureHEVC could be OR of the following */
3318 #define VA_PICTURE_HEVC_INVALID                 0x00000001
3319 /** \brief indication of interlace scan picture. 
3320  * should take same value for all the pictures in sequence.
3321  */ 
3322 #define VA_PICTURE_HEVC_FIELD_PIC               0x00000002
3323 /** \brief polarity of the field picture.
3324  * top field takes even lines of buffer surface.
3325  * bottom field takes odd lines of buffer surface.
3326  */
3327 #define VA_PICTURE_HEVC_BOTTOM_FIELD            0x00000004
3328 /** \brief Long term reference picture */
3329 #define VA_PICTURE_HEVC_LONG_TERM_REFERENCE     0x00000008
3330 /**
3331  * VA_PICTURE_HEVC_RPS_ST_CURR_BEFORE, VA_PICTURE_HEVC_RPS_ST_CURR_AFTER
3332  * and VA_PICTURE_HEVC_RPS_LT_CURR of any picture in ReferenceFrames[] should 
3333  * be exclusive. No more than one of them can be set for any picture.
3334  * Sum of NumPocStCurrBefore, NumPocStCurrAfter and NumPocLtCurr
3335  * equals NumPocTotalCurr, which should be equal to or smaller than 8.
3336  * Application should provide valid values for both short format and long format.
3337  * The pictures in DPB with any of these three flags turned on are referred by
3338  * the current picture.
3339  */
3340 /** \brief RefPicSetStCurrBefore of HEVC spec variable 
3341  * Number of ReferenceFrames[] entries with this bit set equals 
3342  * NumPocStCurrBefore.
3343  */
3344 #define VA_PICTURE_HEVC_RPS_ST_CURR_BEFORE      0x00000010
3345 /** \brief RefPicSetStCurrAfter of HEVC spec variable
3346  * Number of ReferenceFrames[] entries with this bit set equals 
3347  * NumPocStCurrAfter.
3348  */
3349 #define VA_PICTURE_HEVC_RPS_ST_CURR_AFTER       0x00000020
3350 /** \brief RefPicSetLtCurr of HEVC spec variable
3351  * Number of ReferenceFrames[] entries with this bit set equals 
3352  * NumPocLtCurr.
3353  */
3354 #define VA_PICTURE_HEVC_RPS_LT_CURR             0x00000040
3355
3356 #include <va/va_dec_hevc.h>
3357 #include <va/va_dec_jpeg.h>
3358 #include <va/va_dec_vp8.h>
3359 #include <va/va_dec_vp9.h>
3360 #include <va/va_enc_hevc.h>
3361 #include <va/va_enc_h264.h>
3362 #include <va/va_enc_jpeg.h>
3363 #include <va/va_enc_mpeg2.h>
3364 #include <va/va_enc_vp8.h>
3365 #include <va/va_enc_vp9.h>
3366 #include <va/va_fei.h>
3367 #include <va/va_fei_h264.h>
3368 #include <va/va_vpp.h>
3369
3370 /**@}*/
3371
3372 #ifdef __cplusplus
3373 }
3374 #endif
3375
3376 #endif /* _VA_H_ */