OSDN Git Service

Add new BRC mode AVBR
[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 #if defined(__GNUC__) && !defined(__COVERITY__)
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  * - Encoder (H264, HEVC, JPEG, MPEG2, VP8, VP9)
116  *      - \ref api_enc_h264
117  *      - \ref api_enc_hevc
118  *      - \ref api_enc_jpeg
119  *      - \ref api_enc_mpeg2
120  *      - \ref api_enc_vp8
121  *      - \ref api_enc_vp9
122  * - Decoder (HEVC, JPEG, VP8, VP9)
123  *      - \ref api_dec_hevc
124  *      - \ref api_dec_jpeg
125  *      - \ref api_dec_vp8
126  *      - \ref api_dec_vp9
127  * - \ref api_vpp
128  * - FEI (H264, HEVC)
129  *      - \ref api_fei
130  *      - \ref api_fei_h264
131  *      - \ref api_fei_hevc
132  */
133
134 /**
135  * \defgroup api_core Core API
136  *
137  * @{
138  */
139
140 /**
141 Overview 
142
143 The VA API is intended to provide an interface between a video decode/encode/processing
144 application (client) and a hardware accelerator (server), to off-load 
145 video decode/encode/processing operations from the host to the hardware accelerator at various
146 entry-points.
147
148 The basic operation steps are:
149
150 - Negotiate a mutually acceptable configuration with the server to lock
151   down profile, entrypoints, and other attributes that will not change on 
152   a frame-by-frame basis.
153 - Create a video decode, encode or processing context which represents a
154   "virtualized" hardware device
155 - Get and fill the render buffers with the corresponding data (depending on
156   profiles and entrypoints)
157 - Pass the render buffers to the server to handle the current frame
158
159 Initialization & Configuration Management 
160
161 - Find out supported profiles
162 - Find out entrypoints for a given profile
163 - Find out configuration attributes for a given profile/entrypoint pair
164 - Create a configuration for use by the application
165
166 */
167
168 typedef void* VADisplay;        /* window system dependent */
169
170 typedef int VAStatus;   /** Return status type from functions */
171 /** Values for the return status */
172 #define VA_STATUS_SUCCESS                       0x00000000
173 #define VA_STATUS_ERROR_OPERATION_FAILED        0x00000001
174 #define VA_STATUS_ERROR_ALLOCATION_FAILED       0x00000002
175 #define VA_STATUS_ERROR_INVALID_DISPLAY         0x00000003
176 #define VA_STATUS_ERROR_INVALID_CONFIG          0x00000004
177 #define VA_STATUS_ERROR_INVALID_CONTEXT         0x00000005
178 #define VA_STATUS_ERROR_INVALID_SURFACE         0x00000006
179 #define VA_STATUS_ERROR_INVALID_BUFFER          0x00000007
180 #define VA_STATUS_ERROR_INVALID_IMAGE           0x00000008
181 #define VA_STATUS_ERROR_INVALID_SUBPICTURE      0x00000009
182 #define VA_STATUS_ERROR_ATTR_NOT_SUPPORTED      0x0000000a
183 #define VA_STATUS_ERROR_MAX_NUM_EXCEEDED        0x0000000b
184 #define VA_STATUS_ERROR_UNSUPPORTED_PROFILE     0x0000000c
185 #define VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT  0x0000000d
186 #define VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT   0x0000000e
187 #define VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE  0x0000000f
188 #define VA_STATUS_ERROR_SURFACE_BUSY            0x00000010
189 #define VA_STATUS_ERROR_FLAG_NOT_SUPPORTED      0x00000011
190 #define VA_STATUS_ERROR_INVALID_PARAMETER       0x00000012
191 #define VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED 0x00000013
192 #define VA_STATUS_ERROR_UNIMPLEMENTED           0x00000014
193 #define VA_STATUS_ERROR_SURFACE_IN_DISPLAYING   0x00000015
194 #define VA_STATUS_ERROR_INVALID_IMAGE_FORMAT    0x00000016
195 #define VA_STATUS_ERROR_DECODING_ERROR          0x00000017
196 #define VA_STATUS_ERROR_ENCODING_ERROR          0x00000018
197 /**
198  * \brief An invalid/unsupported value was supplied.
199  *
200  * This is a catch-all error code for invalid or unsupported values.
201  * e.g. value exceeding the valid range, invalid type in the context
202  * of generic attribute values.
203  */
204 #define VA_STATUS_ERROR_INVALID_VALUE           0x00000019
205 /** \brief An unsupported filter was supplied. */
206 #define VA_STATUS_ERROR_UNSUPPORTED_FILTER      0x00000020
207 /** \brief An invalid filter chain was supplied. */
208 #define VA_STATUS_ERROR_INVALID_FILTER_CHAIN    0x00000021
209 /** \brief Indicate HW busy (e.g. run multiple encoding simultaneously). */
210 #define VA_STATUS_ERROR_HW_BUSY                 0x00000022
211 /** \brief An unsupported memory type was supplied. */
212 #define VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE 0x00000024
213 /** \brief Indicate allocated buffer size is not enough for input or output. */
214 #define VA_STATUS_ERROR_NOT_ENOUGH_BUFFER       0x00000025
215 #define VA_STATUS_ERROR_UNKNOWN                 0xFFFFFFFF
216
217 /** De-interlacing flags for vaPutSurface() */
218 #define VA_FRAME_PICTURE        0x00000000 
219 #define VA_TOP_FIELD            0x00000001
220 #define VA_BOTTOM_FIELD         0x00000002
221
222 /**
223  * Enabled the positioning/cropping/blending feature:
224  * 1, specify the video playback position in the isurface
225  * 2, specify the cropping info for video playback
226  * 3, encoded video will blend with background color
227  */
228 #define VA_ENABLE_BLEND         0x00000004 /* video area blend with the constant color */ 
229     
230 /**
231  * Clears the drawable with background color.
232  * for hardware overlay based implementation this flag
233  * can be used to turn off the overlay
234  */
235 #define VA_CLEAR_DRAWABLE       0x00000008
236
237 /** Color space conversion flags for vaPutSurface() */
238 #define VA_SRC_COLOR_MASK       0x000000f0
239 #define VA_SRC_BT601            0x00000010
240 #define VA_SRC_BT709            0x00000020
241 #define VA_SRC_SMPTE_240        0x00000040
242
243 /** Scaling flags for vaPutSurface() */
244 #define VA_FILTER_SCALING_DEFAULT       0x00000000
245 #define VA_FILTER_SCALING_FAST          0x00000100
246 #define VA_FILTER_SCALING_HQ            0x00000200
247 #define VA_FILTER_SCALING_NL_ANAMORPHIC 0x00000300
248 #define VA_FILTER_SCALING_MASK          0x00000f00
249
250 /** Padding size in 4-bytes */
251 #define VA_PADDING_LOW          4
252 #define VA_PADDING_MEDIUM       8
253 #define VA_PADDING_HIGH         16
254 #define VA_PADDING_LARGE        32
255
256 /**
257  * Returns a short english description of error_status
258  */
259 const char *vaErrorStr(VAStatus error_status);
260
261 typedef struct _VARectangle
262 {
263     int16_t x;
264     int16_t y;
265     uint16_t width;
266     uint16_t height;
267 } VARectangle;
268
269 /** \brief Generic motion vector data structure. */
270 typedef struct _VAMotionVector {
271     /** \mv0[0]: horizontal motion vector for past reference */
272     /** \mv0[1]: vertical motion vector for past reference */
273     /** \mv1[0]: horizontal motion vector for future reference */
274     /** \mv1[1]: vertical motion vector for future reference */
275     int16_t  mv0[2];  /* past reference */
276     int16_t  mv1[2];  /* future reference */
277 } VAMotionVector;
278
279 /** Type of a message callback, used for both error and info log. */
280 typedef void (*VAMessageCallback)(void *user_context, const char *message);
281
282 /**
283  * Set the callback for error messages, or NULL for no logging.
284  * Returns the previous one, or NULL if it was disabled.
285  */
286 VAMessageCallback vaSetErrorCallback(VADisplay dpy, VAMessageCallback callback, void *user_context);
287
288 /**
289  * Set the callback for info messages, or NULL for no logging.
290  * Returns the previous one, or NULL if it was disabled.
291  */
292 VAMessageCallback vaSetInfoCallback(VADisplay dpy, VAMessageCallback callback, void *user_context);
293
294 /**
295  * Initialization:
296  * A display must be obtained by calling vaGetDisplay() before calling
297  * vaInitialize() and other functions. This connects the API to the 
298  * native window system.
299  * For X Windows, native_dpy would be from XOpenDisplay()
300  */
301 typedef void* VANativeDisplay;  /* window system dependent */
302
303 int vaDisplayIsValid(VADisplay dpy);
304
305 /**
306  *  Set the override driver name instead of queried driver driver.
307  */
308 VAStatus vaSetDriverName(VADisplay dpy,
309                          char *driver_name
310 );
311
312 /**
313  * Initialize the library 
314  */
315 VAStatus vaInitialize (
316     VADisplay dpy,
317     int *major_version,  /* out */
318     int *minor_version   /* out */
319 );
320
321 /**
322  * After this call, all library internal resources will be cleaned up
323  */ 
324 VAStatus vaTerminate (
325     VADisplay dpy
326 );
327
328 /**
329  * vaQueryVendorString returns a pointer to a zero-terminated string
330  * describing some aspects of the VA implemenation on a specific    
331  * hardware accelerator. The format of the returned string is vendor
332  * specific and at the discretion of the implementer.
333  * e.g. for the Intel GMA500 implementation, an example would be:
334  * "Intel GMA500 - 2.0.0.32L.0005"
335  */
336 const char *vaQueryVendorString (
337     VADisplay dpy
338 );
339
340 typedef int (*VAPrivFunc)(void);
341
342 /**
343  * Return a function pointer given a function name in the library.
344  * This allows private interfaces into the library
345  */ 
346 VAPrivFunc vaGetLibFunc (
347     VADisplay dpy,
348     const char *func
349 );
350
351 /** Currently defined profiles */
352 typedef enum
353 {
354     /** \brief Profile ID used for video processing. */
355     VAProfileNone                       = -1,
356     VAProfileMPEG2Simple                = 0,
357     VAProfileMPEG2Main                  = 1,
358     VAProfileMPEG4Simple                = 2,
359     VAProfileMPEG4AdvancedSimple        = 3,
360     VAProfileMPEG4Main                  = 4,
361     VAProfileH264Baseline va_deprecated_enum = 5,
362     VAProfileH264Main                   = 6,
363     VAProfileH264High                   = 7,
364     VAProfileVC1Simple                  = 8,
365     VAProfileVC1Main                    = 9,
366     VAProfileVC1Advanced                = 10,
367     VAProfileH263Baseline               = 11,
368     VAProfileJPEGBaseline               = 12,
369     VAProfileH264ConstrainedBaseline    = 13,
370     VAProfileVP8Version0_3              = 14,
371     VAProfileH264MultiviewHigh          = 15,
372     VAProfileH264StereoHigh             = 16,
373     VAProfileHEVCMain                   = 17,
374     VAProfileHEVCMain10                 = 18,
375     VAProfileVP9Profile0                = 19,
376     VAProfileVP9Profile1                = 20,
377     VAProfileVP9Profile2                = 21,
378     VAProfileVP9Profile3                = 22,
379     VAProfileHEVCMain12                 = 23,
380     VAProfileHEVCMain422_10             = 24,
381     VAProfileHEVCMain422_12             = 25,
382     VAProfileHEVCMain444                = 26,
383     VAProfileHEVCMain444_10             = 27,
384     VAProfileHEVCMain444_12             = 28,
385     VAProfileHEVCSccMain                = 29,
386     VAProfileHEVCSccMain10              = 30,
387     VAProfileHEVCSccMain444             = 31
388 } VAProfile;
389
390 /**
391  *  Currently defined entrypoints 
392  */
393 typedef enum
394 {
395     VAEntrypointVLD             = 1,
396     VAEntrypointIZZ             = 2,
397     VAEntrypointIDCT            = 3,
398     VAEntrypointMoComp          = 4,
399     VAEntrypointDeblocking      = 5,
400     VAEntrypointEncSlice        = 6,    /* slice level encode */
401     VAEntrypointEncPicture      = 7,    /* pictuer encode, JPEG, etc */
402     /*
403      * For an implementation that supports a low power/high performance variant
404      * for slice level encode, it can choose to expose the
405      * VAEntrypointEncSliceLP entrypoint. Certain encoding tools may not be
406      * available with this entrypoint (e.g. interlace, MBAFF) and the
407      * application can query the encoding configuration attributes to find
408      * out more details if this entrypoint is supported.
409      */
410     VAEntrypointEncSliceLP      = 8,
411     VAEntrypointVideoProc       = 10,   /**< Video pre/post-processing. */
412     /**
413      * \brief VAEntrypointFEI
414      *
415      * The purpose of FEI (Flexible Encoding Infrastructure) is to allow applications to
416      * have more controls and trade off quality for speed with their own IPs.
417      * The application can optionally provide input to ENC for extra encode control
418      * and get the output from ENC. Application can chose to modify the ENC
419      * output/PAK input during encoding, but the performance impact is significant.
420      *
421      * On top of the existing buffers for normal encode, there will be
422      * one extra input buffer (VAEncMiscParameterFEIFrameControl) and
423      * three extra output buffers (VAEncFEIMVBufferType, VAEncFEIMBModeBufferType
424      * and VAEncFEIDistortionBufferType) for VAEntrypointFEI entry function.
425      * If separate PAK is set, two extra input buffers
426      * (VAEncFEIMVBufferType, VAEncFEIMBModeBufferType) are needed for PAK input.
427      **/
428     VAEntrypointFEI         = 11,
429     /**
430      * \brief VAEntrypointStats
431      *
432      * A pre-processing function for getting some statistics and motion vectors is added,
433      * and some extra controls for Encode pipeline are provided. The application can
434      * optionally call the statistics function to get motion vectors and statistics like
435      * variances, distortions before calling Encode function via this entry point.
436      *
437      * Checking whether Statistics is supported can be performed with vaQueryConfigEntrypoints().
438      * If Statistics entry point is supported, then the list of returned entry-points will
439      * include #VAEntrypointStats. Supported pixel format, maximum resolution and statistics
440      * specific attributes can be obtained via normal attribute query. One input buffer
441      * (VAStatsStatisticsParameterBufferType) and one or two output buffers
442      * (VAStatsStatisticsBufferType, VAStatsStatisticsBottomFieldBufferType (for interlace only)
443      * and VAStatsMVBufferType) are needed for this entry point.
444      **/
445     VAEntrypointStats       = 12,
446 } VAEntrypoint;
447
448 /** Currently defined configuration attribute types */
449 typedef enum
450 {
451     VAConfigAttribRTFormat              = 0,
452     VAConfigAttribSpatialResidual       = 1,
453     VAConfigAttribSpatialClipping       = 2,
454     VAConfigAttribIntraResidual         = 3,
455     VAConfigAttribEncryption            = 4,
456     VAConfigAttribRateControl           = 5,
457
458     /** @name Attributes for decoding */
459     /**@{*/
460     /**
461      * \brief Slice Decoding mode. Read/write.
462      *
463      * This attribute determines what mode the driver supports for slice
464      * decoding, through vaGetConfigAttributes(); and what mode the user
465      * will be providing to the driver, through vaCreateConfig(), if the
466      * driver supports those. If this attribute is not set by the user then
467      * it is assumed that VA_DEC_SLICE_MODE_NORMAL mode is used.
468      *
469      * See \c VA_DEC_SLICE_MODE_xxx for the list of slice decoding modes.
470      */
471     VAConfigAttribDecSliceMode          = 6,
472    /**
473      * \brief JPEG decoding attribute. Read-only.
474      *
475      * This attribute exposes a number of capabilities of the underlying
476      * JPEG implementation. The attribute value is partitioned into fields as defined in the
477      * VAConfigAttribValDecJPEG union.
478      */
479     VAConfigAttribDecJPEG             = 7,
480     /**
481      * \brief Decode processing support. Read/write.
482      *
483      * This attribute determines if the driver supports video processing
484      * with decoding using the decoding context in a single call, through
485      * vaGetConfigAttributes(); and if the user may use this feature,
486      * through vaCreateConfig(), if the driver supports the user scenario.
487      * The user will essentially create a regular decode VAContext.  Therefore,
488      * the parameters of vaCreateContext() such as picture_width, picture_height
489      * and render_targets are in relation to the decode output parameters
490      * (not processing output parameters) as normal.
491      * If this attribute is not set by the user then it is assumed that no
492      * extra processing is done after decoding for this decode context.
493      *
494      * Since essentially the application is creating a decoder config and context,
495      * all function calls that take in the config (e.g. vaQuerySurfaceAttributes())
496      * or context are in relation to the decoder, except those video processing
497      * function specified in the next paragraph.
498      *
499      * Once the decode config and context are created, the user must further
500      * query the supported processing filters using vaQueryVideoProcFilters(),
501      * vaQueryVideoProcFilterCaps(), vaQueryVideoProcPipelineCaps() by specifying
502      * the created decode context.  The user must provide processing information
503      * and extra processing output surfaces as "additional_outputs" to the driver
504      * through VAProcPipelineParameterBufferType.  The render_target specified
505      * at vaBeginPicture() time refers to the decode output surface.  The
506      * target surface for the output of processing needs to be a different
507      * surface since the decode process requires the original reconstructed buffer.
508      * The “surface” member of VAProcPipelineParameterBuffer should be set to the
509      * same as “render_target” set in vaBeginPicture(), but the driver may choose
510      * to ignore this parameter.
511      */
512     VAConfigAttribDecProcessing         = 8,
513     /** @name Attributes for encoding */
514     /**@{*/
515     /**
516      * \brief Packed headers mode. Read/write.
517      *
518      * This attribute determines what packed headers the driver supports,
519      * through vaGetConfigAttributes(); and what packed headers the user
520      * will be providing to the driver, through vaCreateConfig(), if the
521      * driver supports those.
522      *
523      * See \c VA_ENC_PACKED_HEADER_xxx for the list of packed headers.
524      */
525     VAConfigAttribEncPackedHeaders      = 10,
526     /**
527      * \brief Interlaced mode. Read/write.
528      *
529      * This attribute determines what kind of interlaced encoding mode
530      * the driver supports.
531      *
532      * See \c VA_ENC_INTERLACED_xxx for the list of interlaced modes.
533      */
534     VAConfigAttribEncInterlaced         = 11,
535     /**
536      * \brief Maximum number of reference frames. Read-only.
537      *
538      * This attribute determines the maximum number of reference
539      * frames supported for encoding.
540      *
541      * Note: for H.264 encoding, the value represents the maximum number
542      * of reference frames for both the reference picture list 0 (bottom
543      * 16 bits) and the reference picture list 1 (top 16 bits).
544      */
545     VAConfigAttribEncMaxRefFrames       = 13,
546     /**
547      * \brief Maximum number of slices per frame. Read-only.
548      *
549      * This attribute determines the maximum number of slices the
550      * driver can support to encode a single frame.
551      */
552     VAConfigAttribEncMaxSlices          = 14,
553     /**
554      * \brief Slice structure. Read-only.
555      *
556      * This attribute determines slice structures supported by the
557      * driver for encoding. This attribute is a hint to the user so
558      * that he can choose a suitable surface size and how to arrange
559      * the encoding process of multiple slices per frame.
560      *
561      * More specifically, for H.264 encoding, this attribute
562      * determines the range of accepted values to
563      * VAEncSliceParameterBufferH264::macroblock_address and
564      * VAEncSliceParameterBufferH264::num_macroblocks.
565      *
566      * See \c VA_ENC_SLICE_STRUCTURE_xxx for the supported slice
567      * structure types.
568      */
569     VAConfigAttribEncSliceStructure     = 15,
570     /**
571      * \brief Macroblock information. Read-only.
572      *
573      * This attribute determines whether the driver supports extra
574      * encoding information per-macroblock. e.g. QP.
575      *
576      * More specifically, for H.264 encoding, if the driver returns a non-zero
577      * value for this attribute, this means the application can create
578      * additional #VAEncMacroblockParameterBufferH264 buffers referenced
579      * through VAEncSliceParameterBufferH264::macroblock_info.
580      */
581     VAConfigAttribEncMacroblockInfo     = 16,
582     /**
583      * \brief Maximum picture width. Read-only.
584      *
585      * This attribute determines the maximum picture width the driver supports
586      * for a given configuration.
587      */
588     VAConfigAttribMaxPictureWidth     = 18,
589     /**
590      * \brief Maximum picture height. Read-only.
591      *
592      * This attribute determines the maximum picture height the driver supports
593      * for a given configuration.
594      */
595     VAConfigAttribMaxPictureHeight    = 19,
596     /**
597      * \brief JPEG encoding attribute. Read-only.
598      *
599      * This attribute exposes a number of capabilities of the underlying
600      * JPEG implementation. The attribute value is partitioned into fields as defined in the 
601      * VAConfigAttribValEncJPEG union.
602      */
603     VAConfigAttribEncJPEG             = 20,
604     /**
605      * \brief Encoding quality range attribute. Read-only.
606      *
607      * This attribute conveys whether the driver supports different quality level settings
608      * for encoding. A value less than or equal to 1 means that the encoder only has a single
609      * quality setting, and a value greater than 1 represents the number of quality levels 
610      * that can be configured. e.g. a value of 2 means there are two distinct quality levels. 
611      */
612     VAConfigAttribEncQualityRange     = 21,
613     /**
614      * \brief Encoding quantization attribute. Read-only.
615      *
616      * This attribute conveys whether the driver supports certain types of quantization methods
617      * for encoding (e.g. trellis). See \c VA_ENC_QUANTIZATION_xxx for the list of quantization methods
618      */
619     VAConfigAttribEncQuantization     = 22,
620     /**
621      * \brief Encoding intra refresh attribute. Read-only.
622      *
623      * This attribute conveys whether the driver supports certain types of intra refresh methods
624      * for encoding (e.g. adaptive intra refresh or rolling intra refresh).
625      * See \c VA_ENC_INTRA_REFRESH_xxx for intra refresh methods
626      */
627     VAConfigAttribEncIntraRefresh     = 23,
628     /**
629      * \brief Encoding skip frame attribute. Read-only.
630      *
631      * This attribute conveys whether the driver supports sending skip frame parameters 
632      * (VAEncMiscParameterTypeSkipFrame) to the encoder's rate control, when the user has 
633      * externally skipped frames. 
634      */
635     VAConfigAttribEncSkipFrame        = 24,
636     /**
637      * \brief Encoding region-of-interest (ROI) attribute. Read-only.
638      *
639      * This attribute conveys whether the driver supports region-of-interest (ROI) encoding,
640      * based on user provided ROI rectangles.  The attribute value is partitioned into fields
641      * as defined in the VAConfigAttribValEncROI union.
642      *
643      * If ROI encoding is supported, the ROI information is passed to the driver using
644      * VAEncMiscParameterTypeROI.
645      */
646     VAConfigAttribEncROI              = 25,
647     /**
648      * \brief Encoding extended rate control attribute. Read-only.
649      *
650      * This attribute conveys whether the driver supports any extended rate control features
651      * The attribute value is partitioned into fields as defined in the
652      * VAConfigAttribValEncRateControlExt union.
653      */
654     VAConfigAttribEncRateControlExt   = 26,
655     /**
656      * \brief Processing rate reporting attribute. Read-only.
657      *
658      * This attribute conveys whether the driver supports reporting of
659      * encode/decode processing rate based on certain set of parameters
660      * (i.e. levels, I frame internvals) for a given configuration.
661      * If this is supported, vaQueryProcessingRate() can be used to get
662      * encode or decode processing rate.
663      * See \c VA_PROCESSING_RATE_xxx for encode/decode processing rate
664      */
665     VAConfigAttribProcessingRate    = 27,
666     /**
667      * \brief Encoding dirty rectangle. Read-only.
668      *
669      * This attribute conveys whether the driver supports dirty rectangle.
670      * encoding, based on user provided ROI rectangles which indicate the rectangular areas
671      * where the content has changed as compared to the previous picture.  The regions of the
672      * picture that are not covered by dirty rect rectangles are assumed to have not changed
673      * compared to the previous picture.  The encoder may do some optimizations based on
674      * this information.  The attribute value returned indicates the number of regions that
675      * are supported.  e.g. A value of 0 means dirty rect encoding is not supported.  If dirty
676      * rect encoding is supported, the ROI information is passed to the driver using
677      * VAEncMiscParameterTypeDirtyRect.
678      */
679      VAConfigAttribEncDirtyRect       = 28,
680     /**
681      * \brief Parallel Rate Control (hierachical B) attribute. Read-only.
682      *
683      * This attribute conveys whether the encoder supports parallel rate control.
684      * It is a integer value 0 - unsupported, > 0 - maximum layer supported.
685      * This is the way when hireachical B frames are encoded, multiple independent B frames
686      * on the same layer may be processed at same time. If supported, app may enable it by
687      * setting enable_parallel_brc in VAEncMiscParameterRateControl,and the number of B frames
688      * per layer per GOP will be passed to driver through VAEncMiscParameterParallelRateControl
689      * structure.Currently three layers are defined.
690      */
691      VAConfigAttribEncParallelRateControl   = 29,
692      /**
693      * \brief Dynamic Scaling Attribute. Read-only.
694      *
695      * This attribute conveys whether encoder is capable to determine dynamic frame
696      * resolutions adaptive to bandwidth utilization and processing power, etc.
697      * It is a boolean value 0 - unsupported, 1 - supported.
698      * If it is supported,for VP9, suggested frame resolution can be retrieved from VACodedBufferVP9Status.
699      */
700      VAConfigAttribEncDynamicScaling        = 30,
701      /**
702      * \brief frame size tolerance support
703      * it indicates the tolerance of frame size
704      */
705      VAConfigAttribFrameSizeToleranceSupport = 31,
706      /**
707      * \brief Encode function type for FEI.
708      *
709      * This attribute conveys whether the driver supports different function types for encode.
710      * It can be VA_FEI_FUNCTION_ENC, VA_FEI_FUNCTION_PAK, or VA_FEI_FUNCTION_ENC_PAK. Currently
711      * it is for FEI entry point only.
712      * Default is VA_FEI_FUNCTION_ENC_PAK.
713      */
714      VAConfigAttribFEIFunctionType     = 32,
715     /**
716      * \brief Maximum number of FEI MV predictors. Read-only.
717      *
718      * This attribute determines the maximum number of MV predictors the driver
719      * can support to encode a single frame. 0 means no MV predictor is supported.
720      * Currently it is for FEI entry point only.
721      */
722     VAConfigAttribFEIMVPredictors     = 33,
723     /**
724      * \brief Statistics attribute. Read-only.
725      *
726      * This attribute exposes a number of capabilities of the VAEntrypointStats entry
727      * point. The attribute value is partitioned into fields as defined in the
728      * VAConfigAttribValStats union. Currently it is for VAEntrypointStats only.
729      */
730     VAConfigAttribStats               = 34,
731      /**
732      * \brief Tile Support Attribute. Read-only.
733      *
734      * This attribute conveys whether encoder is capable to support tiles.
735      * If not supported, the tile related parameters sent to encoder, such as
736      * tiling structure, should be ignored. 0 - unsupported, 1 - supported.
737      */
738      VAConfigAttribEncTileSupport        = 35,
739     /**
740      * \brief whether accept rouding setting from application. Read-only.
741      * This attribute is for encode quality, if it is report,
742      * application can change the rounding setting by VAEncMiscParameterTypeCustomRoundingControl
743      */
744     VAConfigAttribCustomRoundingControl = 36,
745     /**
746      * \brief Encoding QP info block size attribute. Read-only.
747      * This attribute conveys the block sizes that underlying driver
748      * support for QP info for buffer #VAEncQpBuffer.
749      */
750     VAConfigAttribQPBlockSize            = 37,
751     /**@}*/
752     VAConfigAttribTypeMax
753 } VAConfigAttribType;
754
755 /**
756  * Configuration attributes
757  * If there is more than one value for an attribute, a default
758  * value will be assigned to the attribute if the client does not
759  * specify the attribute when creating a configuration
760  */
761 typedef struct _VAConfigAttrib {
762     VAConfigAttribType type;
763     uint32_t value; /* OR'd flags (bits) for this attribute */
764 } VAConfigAttrib;
765
766 /* Attribute values for VAConfigAttribRTFormat. */
767
768 #define VA_RT_FORMAT_YUV420     0x00000001      ///< YUV 4:2:0 8-bit.
769 #define VA_RT_FORMAT_YUV422     0x00000002      ///< YUV 4:2:2 8-bit.
770 #define VA_RT_FORMAT_YUV444     0x00000004      ///< YUV 4:4:4 8-bit.
771 #define VA_RT_FORMAT_YUV411     0x00000008      ///< YUV 4:1:1 8-bit.
772 #define VA_RT_FORMAT_YUV400     0x00000010      ///< Greyscale 8-bit.
773 #define VA_RT_FORMAT_YUV420_10  0x00000100      ///< YUV 4:2:0 10-bit.
774 #define VA_RT_FORMAT_YUV422_10  0x00000200      ///< YUV 4:2:2 10-bit.
775 #define VA_RT_FORMAT_YUV444_10  0x00000400      ///< YUV 4:4:4 10-bit.
776 #define VA_RT_FORMAT_YUV420_12  0x00001000      ///< YUV 4:2:0 12-bit.
777 #define VA_RT_FORMAT_YUV422_12  0x00002000      ///< YUV 4:2:2 12-bit.
778 #define VA_RT_FORMAT_YUV444_12  0x00004000      ///< YUV 4:4:4 12-bit.
779
780 #define VA_RT_FORMAT_RGB16      0x00010000      ///< Packed RGB, 16 bits per pixel.
781 #define VA_RT_FORMAT_RGB32      0x00020000      ///< Packed RGB, 32 bits per pixel, 8 bits per colour sample.
782 #define VA_RT_FORMAT_RGBP       0x00100000      ///< Planar RGB, 8 bits per sample.
783 #define VA_RT_FORMAT_RGB32_10   0x00200000      ///< Packed RGB, 32 bits per pixel, 10 bits per colour sample.
784
785 #define VA_RT_FORMAT_PROTECTED  0x80000000
786
787 #define VA_RT_FORMAT_RGB32_10BPP        VA_RT_FORMAT_RGB32_10   ///< @deprecated use VA_RT_FORMAT_RGB32_10 instead.
788 #define VA_RT_FORMAT_YUV420_10BPP       VA_RT_FORMAT_YUV420_10  ///< @deprecated use VA_RT_FORMAT_YUV420_10 instead.
789
790 /** @name Attribute values for VAConfigAttribRateControl */
791 /**@{*/
792 /** \brief Driver does not support any form of rate control. */
793 #define VA_RC_NONE                      0x00000001
794 /** \brief Constant bitrate. */
795 #define VA_RC_CBR                       0x00000002
796 /** \brief Variable bitrate. */
797 #define VA_RC_VBR                       0x00000004
798 /** \brief Video conference mode. */
799 #define VA_RC_VCM                       0x00000008
800 /** \brief Constant QP. */
801 #define VA_RC_CQP                       0x00000010
802 /** \brief Variable bitrate with peak rate higher than average bitrate. */
803 #define VA_RC_VBR_CONSTRAINED           0x00000020
804 /** \brief Intelligent Constant Quality. Provided an initial ICQ_quality_factor,
805  *  adjusts QP at a frame and MB level based on motion to improve subjective quality. */
806 #define VA_RC_ICQ                       0x00000040
807 /** \brief Macroblock based rate control.  Per MB control is decided
808  *  internally in the encoder. It may be combined with other RC modes, except CQP. */
809 #define VA_RC_MB                        0x00000080
810 /** \brief Constant Frame Size, it is used for small tolerent  */
811 #define VA_RC_CFS                       0x00000100
812 /** \brief Parallel BRC, for hierachical B.
813  *
814  *  For hierachical B, B frames can be refered by other B frames.
815  *  Currently three layers of hierachy are defined:
816  *  B0 - regular B, no reference to other B frames.
817  *  B1 - reference to only I, P and regular B0 frames.
818  *  B2 - reference to any other frames, including B1.
819  *  In Hierachical B structure, B frames on the same layer can be processed
820  *  simultaneously. And BRC would adjust accordingly. This is so called
821  *  Parallel BRC. */
822 #define VA_RC_PARALLEL                  0x00000200
823 /** \brief Quality defined VBR
824  * Use Quality factor to determine the good enough QP for each MB such that
825  * good enough quality can be obtained without waste of bits
826  * for this BRC mode, you must set all legacy VBR parameters
827  * and reuse quality_factor in \c VAEncMiscParameterRateControl
828  * */
829 #define VA_RC_QVBR                      0x00000400
830 /** \brief Average VBR
831  *  Average variable bitrate control algorithm focuses on overall encoding
832  *  quality while meeting the specified target bitrate, within the accuracy
833  *  range, after a convergence period.
834  *  bits_per_second in VAEncMiscParameterRateControl is target bitrate for AVBR.
835  *  Convergence is specified in the unit of frame.
836  *  window_size in VAEncMiscParameterRateControl is equal to convergence for AVBR.
837  *  Accuracy is in the range of [1,100], 1 means one percent, and so on. 
838  *  target_percentage in VAEncMiscParameterRateControl is equal to accuracy for AVBR. */
839 #define VA_RC_AVBR                      0x00000800
840
841 /**@}*/
842
843 /** @name Attribute values for VAConfigAttribDecSliceMode */
844 /**@{*/
845 /** \brief Driver supports normal mode for slice decoding */
846 #define VA_DEC_SLICE_MODE_NORMAL       0x00000001
847 /** \brief Driver supports base mode for slice decoding */
848 #define VA_DEC_SLICE_MODE_BASE         0x00000002
849
850 /** @name Attribute values for VAConfigAttribDecJPEG */
851 /**@{*/
852 typedef union _VAConfigAttribValDecJPEG {
853     struct{
854     /** \brief Set to (1 << VA_ROTATION_xxx) for supported rotation angles. */
855     uint32_t rotation : 4;
856     /** \brief Reserved for future use. */
857     uint32_t reserved : 28;
858     }bits;
859     uint32_t value;
860     uint32_t va_reserved[VA_PADDING_LOW];
861 } VAConfigAttribValDecJPEG;
862 /** @name Attribute values for VAConfigAttribDecProcessing */
863 /**@{*/
864 /** \brief No decoding + processing in a single decoding call. */
865 #define VA_DEC_PROCESSING_NONE     0x00000000
866 /** \brief Decode + processing in a single decoding call. */
867 #define VA_DEC_PROCESSING          0x00000001
868 /**@}*/
869
870 /** @name Attribute values for VAConfigAttribEncPackedHeaders */
871 /**@{*/
872 /** \brief Driver does not support any packed headers mode. */
873 #define VA_ENC_PACKED_HEADER_NONE       0x00000000
874 /**
875  * \brief Driver supports packed sequence headers. e.g. SPS for H.264.
876  *
877  * Application must provide it to driver once this flag is returned through
878  * vaGetConfigAttributes()
879  */
880 #define VA_ENC_PACKED_HEADER_SEQUENCE   0x00000001
881 /**
882  * \brief Driver supports packed picture headers. e.g. PPS for H.264.
883  *
884  * Application must provide it to driver once this falg is returned through
885  * vaGetConfigAttributes()
886  */
887 #define VA_ENC_PACKED_HEADER_PICTURE    0x00000002
888 /**
889  * \brief Driver supports packed slice headers. e.g. slice_header() for H.264.
890  *
891  * Application must provide it to driver once this flag is returned through
892  * vaGetConfigAttributes()
893  */
894 #define VA_ENC_PACKED_HEADER_SLICE      0x00000004
895 /**
896  * \brief Driver supports misc packed headers. e.g. SEI for H.264.
897  *
898  * @deprecated
899  * This is a deprecated packed header flag, All applications can use
900  * \c VA_ENC_PACKED_HEADER_RAW_DATA to pass the corresponding packed
901  * header data buffer to the driver
902  */
903 #define VA_ENC_PACKED_HEADER_MISC       0x00000008
904 /** \brief Driver supports raw packed header, see VAEncPackedHeaderRawData */
905 #define VA_ENC_PACKED_HEADER_RAW_DATA   0x00000010
906 /**@}*/
907
908 /** @name Attribute values for VAConfigAttribEncInterlaced */
909 /**@{*/
910 /** \brief Driver does not support interlaced coding. */
911 #define VA_ENC_INTERLACED_NONE          0x00000000
912 /** \brief Driver supports interlaced frame coding. */
913 #define VA_ENC_INTERLACED_FRAME         0x00000001
914 /** \brief Driver supports interlaced field coding. */
915 #define VA_ENC_INTERLACED_FIELD         0x00000002
916 /** \brief Driver supports macroblock adaptive frame field coding. */
917 #define VA_ENC_INTERLACED_MBAFF         0x00000004
918 /** \brief Driver supports picture adaptive frame field coding. */
919 #define VA_ENC_INTERLACED_PAFF          0x00000008
920 /**@}*/
921
922 /** @name Attribute values for VAConfigAttribEncSliceStructure */
923 /**@{*/
924 /** \brief Driver supports a power-of-two number of rows per slice. */
925 #define VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS        0x00000001
926 /** \brief Driver supports an arbitrary number of macroblocks per slice. */
927 #define VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS    0x00000002
928 /** \brief Dirver support 1 rows  per slice */
929 #define VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS               0x00000004
930 /** \brief Dirver support max encoded slice size per slice */
931 #define VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE           0x00000008
932 /** \brief Driver supports an arbitrary number of rows per slice. */
933 #define VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS           0x00000010
934 /**@}*/
935
936 /** \brief Attribute value for VAConfigAttribEncJPEG */
937 typedef union _VAConfigAttribValEncJPEG {
938     struct {
939         /** \brief set to 1 for arithmatic coding. */
940         uint32_t arithmatic_coding_mode : 1;
941         /** \brief set to 1 for progressive dct. */
942         uint32_t progressive_dct_mode : 1;
943         /** \brief set to 1 for non-interleaved. */
944         uint32_t non_interleaved_mode : 1;
945         /** \brief set to 1 for differential. */
946         uint32_t differential_mode : 1;
947         uint32_t max_num_components : 3;
948         uint32_t max_num_scans : 4;
949         uint32_t max_num_huffman_tables : 3;
950         uint32_t max_num_quantization_tables : 3;
951     } bits;
952     uint32_t value;
953 } VAConfigAttribValEncJPEG;
954
955 /** @name Attribute values for VAConfigAttribEncQuantization */
956 /**@{*/
957 /** \brief Driver does not support special types of quantization */
958 #define VA_ENC_QUANTIZATION_NONE                        0x00000000
959 /** \brief Driver supports trellis quantization */
960 #define VA_ENC_QUANTIZATION_TRELLIS_SUPPORTED           0x00000001
961 /**@}*/
962
963 /** @name Attribute values for VAConfigAttribEncIntraRefresh */
964 /**@{*/
965 /** \brief Driver does not support intra refresh */
966 #define VA_ENC_INTRA_REFRESH_NONE                       0x00000000
967 /** \brief Driver supports column based rolling intra refresh */
968 #define VA_ENC_INTRA_REFRESH_ROLLING_COLUMN             0x00000001
969 /** \brief Driver supports row based rolling intra refresh */
970 #define VA_ENC_INTRA_REFRESH_ROLLING_ROW                0x00000002
971 /** \brief Driver supports adaptive intra refresh */
972 #define VA_ENC_INTRA_REFRESH_ADAPTIVE                   0x00000010
973 /** \brief Driver supports cyclic intra refresh */
974 #define VA_ENC_INTRA_REFRESH_CYCLIC                     0x00000020
975 /** \brief Driver supports intra refresh of P frame*/
976 #define VA_ENC_INTRA_REFRESH_P_FRAME                    0x00010000
977 /** \brief Driver supports intra refresh of B frame */
978 #define VA_ENC_INTRA_REFRESH_B_FRAME                    0x00020000
979 /** \brief Driver supports intra refresh of multiple reference encoder */
980 #define VA_ENC_INTRA_REFRESH_MULTI_REF                  0x00040000
981
982 /**@}*/
983
984 /** \brief Attribute value for VAConfigAttribEncROI */
985 typedef union _VAConfigAttribValEncROI {
986     struct {
987         /** \brief The number of ROI regions supported, 0 if ROI is not supported. */
988         uint32_t num_roi_regions                : 8;
989         /**
990          * \brief A flag indicates whether ROI priority is supported
991          *
992          * \ref roi_rc_priority_support equal to 1 specifies the underlying driver supports
993          * ROI priority when VAConfigAttribRateControl != VA_RC_CQP, user can use \c roi_value
994          * in #VAEncROI to set ROI priority. \ref roi_rc_priority_support equal to 0 specifies
995          * the underlying driver doesn't support ROI priority.
996          *
997          * User should ignore \ref roi_rc_priority_support when VAConfigAttribRateControl == VA_RC_CQP
998          * because ROI delta QP is always required when VAConfigAttribRateControl == VA_RC_CQP.
999          */
1000         uint32_t roi_rc_priority_support        : 1;
1001         /**
1002          * \brief A flag indicates whether ROI delta QP is supported
1003          *
1004          * \ref roi_rc_qp_delta_support equal to 1 specifies the underlying driver supports
1005          * ROI delta QP when VAConfigAttribRateControl != VA_RC_CQP, user can use \c roi_value
1006          * in #VAEncROI to set ROI delta QP. \ref roi_rc_qp_delta_support equal to 0 specifies
1007          * the underlying driver doesn't support ROI delta QP.
1008          *
1009          * User should ignore \ref roi_rc_qp_delta_support when VAConfigAttribRateControl == VA_RC_CQP
1010          * because ROI delta QP is always required when VAConfigAttribRateControl == VA_RC_CQP.
1011          */
1012         uint32_t roi_rc_qp_delta_support    : 1;
1013         uint32_t reserved                   : 22;
1014      } bits;
1015      uint32_t value;
1016 } VAConfigAttribValEncROI;
1017
1018 /** \brief Attribute value for VAConfigAttribEncRateControlExt */
1019 typedef union _VAConfigAttribValEncRateControlExt {
1020     struct {
1021         /**
1022          * \brief The maximum number of temporal layers minus 1
1023          *
1024          * \ref max_num_temporal_layers_minus1 plus 1 specifies the maximum number of temporal
1025          * layers that supported by the underlying driver. \ref max_num_temporal_layers_minus1
1026          * equal to 0 implies the underlying driver doesn't support encoding with temporal layer.
1027          */
1028         uint32_t max_num_temporal_layers_minus1      : 8;
1029
1030         /**
1031          * /brief support temporal layer bit-rate control flag
1032          *
1033          * \ref temporal_layer_bitrate_control_flag equal to 1 specifies the underlying driver
1034          * can support bit-rate control per temporal layer when (#VAConfigAttribRateControl == #VA_RC_CBR ||
1035          * #VAConfigAttribRateControl == #VA_RC_VBR).
1036          *
1037          * The underlying driver must set \ref temporal_layer_bitrate_control_flag to 0 when
1038          * \c max_num_temporal_layers_minus1 is equal to 0
1039          *
1040          * To use bit-rate control per temporal layer, an application must send the right layer
1041          * structure via #VAEncMiscParameterTemporalLayerStructure at the beginning of a coded sequence
1042          * and then followed by #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate structures
1043          * for each layer, using the \c temporal_id field as the layer identifier. Otherwise
1044          * the driver doesn't use bitrate control per temporal layer if an application doesn't send the
1045          * layer structure via #VAEncMiscParameterTemporalLayerStructure to the driver. The driver returns
1046          * VA_STATUS_ERROR_INVALID_PARAMETER if an application sends a wrong layer structure or doesn't send
1047          * #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate for each layer.
1048          *
1049          * The driver will ignore #VAEncMiscParameterTemporalLayerStructure and the \c temporal_id field
1050          * in #VAEncMiscParameterRateControl and #VAEncMiscParameterFrameRate if
1051          * \ref temporal_layer_bitrate_control_flag is equal to 0 or #VAConfigAttribRateControl == #VA_RC_CQP
1052          */
1053         uint32_t temporal_layer_bitrate_control_flag : 1;
1054         uint32_t reserved                            : 23;
1055     } bits;
1056     uint32_t value;
1057 } VAConfigAttribValEncRateControlExt;
1058
1059 /** @name Attribute values for VAConfigAttribProcessingRate. */
1060 /**@{*/
1061 /** \brief Driver does not support processing rate report */
1062 #define VA_PROCESSING_RATE_NONE                       0x00000000
1063 /** \brief Driver supports encode processing rate report  */
1064 #define VA_PROCESSING_RATE_ENCODE                     0x00000001
1065 /** \brief Driver supports decode processing rate report  */
1066 #define VA_PROCESSING_RATE_DECODE                     0x00000002
1067 /**@}*/
1068 /**
1069  * if an attribute is not applicable for a given
1070  * profile/entrypoint pair, then set the value to the following 
1071  */
1072 #define VA_ATTRIB_NOT_SUPPORTED 0x80000000
1073
1074 /** Get maximum number of profiles supported by the implementation */
1075 int vaMaxNumProfiles (
1076     VADisplay dpy
1077 );
1078
1079 /** Get maximum number of entrypoints supported by the implementation */
1080 int vaMaxNumEntrypoints (
1081     VADisplay dpy
1082 );
1083
1084 /** Get maximum number of attributs supported by the implementation */
1085 int vaMaxNumConfigAttributes (
1086     VADisplay dpy
1087 );
1088
1089 /**
1090  * Query supported profiles 
1091  * The caller must provide a "profile_list" array that can hold at
1092  * least vaMaxNumProfile() entries. The actual number of profiles
1093  * returned in "profile_list" is returned in "num_profile".
1094  */
1095 VAStatus vaQueryConfigProfiles (
1096     VADisplay dpy,
1097     VAProfile *profile_list,    /* out */
1098     int *num_profiles           /* out */
1099 );
1100
1101 /**
1102  * Query supported entrypoints for a given profile 
1103  * The caller must provide an "entrypoint_list" array that can hold at
1104  * least vaMaxNumEntrypoints() entries. The actual number of entrypoints 
1105  * returned in "entrypoint_list" is returned in "num_entrypoints".
1106  */
1107 VAStatus vaQueryConfigEntrypoints (
1108     VADisplay dpy,
1109     VAProfile profile,
1110     VAEntrypoint *entrypoint_list,      /* out */
1111     int *num_entrypoints                /* out */
1112 );
1113
1114 /**
1115  * Get attributes for a given profile/entrypoint pair 
1116  * The caller must provide an "attrib_list" with all attributes to be 
1117  * retrieved.  Upon return, the attributes in "attrib_list" have been 
1118  * updated with their value.  Unknown attributes or attributes that are 
1119  * not supported for the given profile/entrypoint pair will have their 
1120  * value set to VA_ATTRIB_NOT_SUPPORTED
1121  */
1122 VAStatus vaGetConfigAttributes (
1123     VADisplay dpy,
1124     VAProfile profile,
1125     VAEntrypoint entrypoint,
1126     VAConfigAttrib *attrib_list, /* in/out */
1127     int num_attribs
1128 );
1129
1130 /** Generic ID type, can be re-typed for specific implementation */
1131 typedef unsigned int VAGenericID;
1132
1133 typedef VAGenericID VAConfigID;
1134
1135 /**
1136  * Create a configuration for the video decode/encode/processing pipeline
1137  * it passes in the attribute list that specifies the attributes it cares 
1138  * about, with the rest taking default values.  
1139  */
1140 VAStatus vaCreateConfig (
1141     VADisplay dpy,
1142     VAProfile profile, 
1143     VAEntrypoint entrypoint, 
1144     VAConfigAttrib *attrib_list,
1145     int num_attribs,
1146     VAConfigID *config_id /* out */
1147 );
1148
1149 /**
1150  * Free resources associdated with a given config 
1151  */
1152 VAStatus vaDestroyConfig (
1153     VADisplay dpy,
1154     VAConfigID config_id
1155 );
1156
1157 /**
1158  * Query all attributes for a given configuration 
1159  * The profile of the configuration is returned in "profile"
1160  * The entrypoint of the configuration is returned in "entrypoint"
1161  * The caller must provide an "attrib_list" array that can hold at least 
1162  * vaMaxNumConfigAttributes() entries. The actual number of attributes 
1163  * returned in "attrib_list" is returned in "num_attribs"
1164  */
1165 VAStatus vaQueryConfigAttributes (
1166     VADisplay dpy,
1167     VAConfigID config_id, 
1168     VAProfile *profile,         /* out */
1169     VAEntrypoint *entrypoint,   /* out */
1170     VAConfigAttrib *attrib_list,/* out */
1171     int *num_attribs            /* out */
1172 );
1173
1174
1175 /**
1176  * Contexts and Surfaces
1177  *
1178  * Context represents a "virtual" video decode, encode or video processing
1179  * pipeline. Surfaces are render targets for a given context. The data in the
1180  * surfaces are not accessible to the client except if derived image is supported
1181  * and the internal data format of the surface is implementation specific.
1182  *
1183  * Surfaces are provided as a hint of what surfaces will be used when the context
1184  * is created through vaCreateContext(). A surface may be used by different contexts
1185  * at the same time as soon as application can make sure the operations are synchronized
1186  * between different contexts, e.g. a surface is used as the output of a decode context
1187  * and the input of a video process context. Surfaces can only be destroyed after all
1188  * contexts using these surfaces have been destroyed.
1189  * 
1190  * Both contexts and surfaces are identified by unique IDs and its
1191  * implementation specific internals are kept opaque to the clients
1192  */
1193
1194 typedef VAGenericID VAContextID;
1195
1196 typedef VAGenericID VASurfaceID;
1197
1198 #define VA_INVALID_ID           0xffffffff
1199 #define VA_INVALID_SURFACE      VA_INVALID_ID
1200
1201 /** \brief Generic value types. */
1202 typedef enum  {
1203     VAGenericValueTypeInteger = 1,      /**< 32-bit signed integer. */
1204     VAGenericValueTypeFloat,            /**< 32-bit floating-point value. */
1205     VAGenericValueTypePointer,          /**< Generic pointer type */
1206     VAGenericValueTypeFunc              /**< Pointer to function */
1207 } VAGenericValueType;
1208
1209 /** \brief Generic function type. */
1210 typedef void (*VAGenericFunc)(void);
1211
1212 /** \brief Generic value. */
1213 typedef struct _VAGenericValue {
1214     /** \brief Value type. See #VAGenericValueType. */
1215     VAGenericValueType  type;
1216     /** \brief Value holder. */
1217     union {
1218         /** \brief 32-bit signed integer. */
1219         int32_t             i;
1220         /** \brief 32-bit float. */
1221         float           f;
1222         /** \brief Generic pointer. */
1223         void           *p;
1224         /** \brief Pointer to function. */
1225         VAGenericFunc   fn;
1226     }                   value;
1227 } VAGenericValue;
1228
1229 /** @name Surface attribute flags */
1230 /**@{*/
1231 /** \brief Surface attribute is not supported. */
1232 #define VA_SURFACE_ATTRIB_NOT_SUPPORTED 0x00000000
1233 /** \brief Surface attribute can be got through vaQuerySurfaceAttributes(). */
1234 #define VA_SURFACE_ATTRIB_GETTABLE      0x00000001
1235 /** \brief Surface attribute can be set through vaCreateSurfaces(). */
1236 #define VA_SURFACE_ATTRIB_SETTABLE      0x00000002
1237 /**@}*/
1238
1239 /** \brief Surface attribute types. */
1240 typedef enum {
1241     VASurfaceAttribNone = 0,
1242     /**
1243      * \brief Pixel format (fourcc).
1244      *
1245      * The value is meaningful as input to vaQuerySurfaceAttributes().
1246      * If zero, the driver returns the optimal pixel format for the
1247      * specified config. Otherwise, if non-zero, the value represents
1248      * a pixel format (FOURCC) that is kept as is on output, if the
1249      * driver supports it. Otherwise, the driver sets the value to
1250      * zero and drops the \c VA_SURFACE_ATTRIB_SETTABLE flag.
1251      */
1252     VASurfaceAttribPixelFormat,
1253     /** \brief Minimal width in pixels (int, read-only). */
1254     VASurfaceAttribMinWidth,
1255     /** \brief Maximal width in pixels (int, read-only). */
1256     VASurfaceAttribMaxWidth,
1257     /** \brief Minimal height in pixels (int, read-only). */
1258     VASurfaceAttribMinHeight,
1259     /** \brief Maximal height in pixels (int, read-only). */
1260     VASurfaceAttribMaxHeight,
1261     /** \brief Surface memory type expressed in bit fields (int, read/write). */
1262     VASurfaceAttribMemoryType,
1263     /** \brief External buffer descriptor (pointer, write). */
1264     VASurfaceAttribExternalBufferDescriptor,
1265     /** \brief Surface usage hint, gives the driver a hint of intended usage 
1266      *  to optimize allocation (e.g. tiling) (int, read/write). */
1267     VASurfaceAttribUsageHint,
1268     /** \brief Number of surface attributes. */
1269     VASurfaceAttribCount
1270 } VASurfaceAttribType;
1271
1272 /** \brief Surface attribute. */
1273 typedef struct _VASurfaceAttrib {
1274     /** \brief Type. */
1275     VASurfaceAttribType type;
1276     /** \brief Flags. See "Surface attribute flags". */
1277     uint32_t        flags;
1278     /** \brief Value. See "Surface attribute types" for the expected types. */
1279     VAGenericValue      value;
1280 } VASurfaceAttrib;
1281
1282 /** 
1283  * @name VASurfaceAttribMemoryType values in bit fields. 
1284  * Bit 0:7 are reserved for generic types, Bit 31:28 are reserved for 
1285  * Linux DRM, Bit 23:20 are reserved for Android. DRM and Android specific
1286  * types are defined in DRM and Android header files.
1287  */
1288 /**@{*/
1289 /** \brief VA memory type (default) is supported. */
1290 #define VA_SURFACE_ATTRIB_MEM_TYPE_VA                   0x00000001
1291 /** \brief V4L2 buffer memory type is supported. */
1292 #define VA_SURFACE_ATTRIB_MEM_TYPE_V4L2                 0x00000002
1293 /** \brief User pointer memory type is supported. */
1294 #define VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR             0x00000004
1295 /**@}*/
1296
1297 /** 
1298  * \brief VASurfaceAttribExternalBuffers structure for 
1299  * the VASurfaceAttribExternalBufferDescriptor attribute.
1300  */
1301 typedef struct _VASurfaceAttribExternalBuffers {
1302     /** \brief pixel format in fourcc. */
1303     uint32_t pixel_format;
1304     /** \brief width in pixels. */
1305     uint32_t width;
1306     /** \brief height in pixels. */
1307     uint32_t height;
1308     /** \brief total size of the buffer in bytes. */
1309     uint32_t data_size;
1310     /** \brief number of planes for planar layout */
1311     uint32_t num_planes;
1312     /** \brief pitch for each plane in bytes */
1313     uint32_t pitches[4];
1314     /** \brief offset for each plane in bytes */
1315     uint32_t offsets[4];
1316     /** \brief buffer handles or user pointers */
1317     uintptr_t *buffers;
1318     /** \brief number of elements in the "buffers" array */
1319     uint32_t num_buffers;
1320     /** \brief flags. See "Surface external buffer descriptor flags". */
1321     uint32_t flags;
1322     /** \brief reserved for passing private data */
1323     void *private_data;
1324 } VASurfaceAttribExternalBuffers;
1325
1326 /** @name VASurfaceAttribExternalBuffers flags */
1327 /**@{*/
1328 /** \brief Enable memory tiling */
1329 #define VA_SURFACE_EXTBUF_DESC_ENABLE_TILING    0x00000001
1330 /** \brief Memory is cacheable */
1331 #define VA_SURFACE_EXTBUF_DESC_CACHED           0x00000002
1332 /** \brief Memory is non-cacheable */
1333 #define VA_SURFACE_EXTBUF_DESC_UNCACHED         0x00000004
1334 /** \brief Memory is write-combined */
1335 #define VA_SURFACE_EXTBUF_DESC_WC               0x00000008
1336 /** \brief Memory is protected */
1337 #define VA_SURFACE_EXTBUF_DESC_PROTECTED        0x80000000
1338
1339 /** @name VASurfaceAttribUsageHint attribute usage hint flags */
1340 /**@{*/
1341 /** \brief Surface usage not indicated. */
1342 #define VA_SURFACE_ATTRIB_USAGE_HINT_GENERIC    0x00000000
1343 /** \brief Surface used by video decoder. */
1344 #define VA_SURFACE_ATTRIB_USAGE_HINT_DECODER    0x00000001
1345 /** \brief Surface used by video encoder. */
1346 #define VA_SURFACE_ATTRIB_USAGE_HINT_ENCODER    0x00000002
1347 /** \brief Surface read by video post-processing. */
1348 #define VA_SURFACE_ATTRIB_USAGE_HINT_VPP_READ   0x00000004
1349 /** \brief Surface written by video post-processing. */
1350 #define VA_SURFACE_ATTRIB_USAGE_HINT_VPP_WRITE  0x00000008
1351 /** \brief Surface used for display. */
1352 #define VA_SURFACE_ATTRIB_USAGE_HINT_DISPLAY    0x00000010
1353 /** \brief Surface used for export to third-party APIs, e.g. via
1354  *  vaExportSurfaceHandle(). */
1355 #define VA_SURFACE_ATTRIB_USAGE_HINT_EXPORT     0x00000020
1356
1357 /**@}*/
1358
1359 /**
1360  * \brief Queries surface attributes for the supplied config.
1361  *
1362  * This function queries for all supported attributes for the
1363  * supplied VA @config. In particular, if the underlying hardware
1364  * supports the creation of VA surfaces in various formats, then
1365  * this function will enumerate all pixel formats that are supported.
1366  *
1367  * The \c attrib_list array is allocated by the user and \c
1368  * num_attribs shall be initialized to the number of allocated
1369  * elements in that array. Upon successful return, the actual number
1370  * of attributes will be overwritten into \c num_attribs. Otherwise,
1371  * \c VA_STATUS_ERROR_MAX_NUM_EXCEEDED is returned and \c num_attribs
1372  * is adjusted to the number of elements that would be returned if
1373  * enough space was available.
1374  *
1375  * Note: it is perfectly valid to pass NULL to the \c attrib_list
1376  * argument when vaQuerySurfaceAttributes() is used to determine the
1377  * actual number of elements that need to be allocated.
1378  *
1379  * @param[in] dpy               the VA display
1380  * @param[in] config            the config identifying a codec or a video
1381  *     processing pipeline
1382  * @param[out] attrib_list      the output array of #VASurfaceAttrib elements
1383  * @param[in,out] num_attribs   the number of elements allocated on
1384  *      input, the number of elements actually filled in output
1385  */
1386 VAStatus
1387 vaQuerySurfaceAttributes(
1388     VADisplay           dpy,
1389     VAConfigID          config,
1390     VASurfaceAttrib    *attrib_list,
1391     unsigned int       *num_attribs
1392 );
1393
1394 /**
1395  * \brief Creates an array of surfaces
1396  *
1397  * Creates an array of surfaces. The optional list of attributes shall
1398  * be constructed based on what the underlying hardware could expose
1399  * through vaQuerySurfaceAttributes().
1400  *
1401  * @param[in] dpy               the VA display
1402  * @param[in] format            the desired surface format. See \c VA_RT_FORMAT_*
1403  * @param[in] width             the surface width
1404  * @param[in] height            the surface height
1405  * @param[out] surfaces         the array of newly created surfaces
1406  * @param[in] num_surfaces      the number of surfaces to create
1407  * @param[in] attrib_list       the list of (optional) attributes, or \c NULL
1408  * @param[in] num_attribs       the number of attributes supplied in
1409  *     \c attrib_list, or zero
1410  */
1411 VAStatus
1412 vaCreateSurfaces(
1413     VADisplay           dpy,
1414     unsigned int        format,
1415     unsigned int        width,
1416     unsigned int        height,
1417     VASurfaceID        *surfaces,
1418     unsigned int        num_surfaces,
1419     VASurfaceAttrib    *attrib_list,
1420     unsigned int        num_attribs
1421 );
1422     
1423 /**
1424  * vaDestroySurfaces - Destroy resources associated with surfaces. 
1425  *  Surfaces can only be destroyed after all contexts using these surfaces have been
1426  *  destroyed.  
1427  *  dpy: display
1428  *  surfaces: array of surfaces to destroy
1429  *  num_surfaces: number of surfaces in the array to be destroyed.
1430  */
1431 VAStatus vaDestroySurfaces (
1432     VADisplay dpy,
1433     VASurfaceID *surfaces,
1434     int num_surfaces
1435 );
1436
1437 #define VA_PROGRESSIVE 0x1
1438 /**
1439  * vaCreateContext - Create a context
1440  *  dpy: display
1441  *  config_id: configuration for the context
1442  *  picture_width: coded picture width
1443  *  picture_height: coded picture height
1444  *  flag: any combination of the following:
1445  *    VA_PROGRESSIVE (only progressive frame pictures in the sequence when set)
1446  *  render_targets: a hint for render targets (surfaces) tied to the context
1447  *  num_render_targets: number of render targets in the above array
1448  *  context: created context id upon return
1449  */
1450 VAStatus vaCreateContext (
1451     VADisplay dpy,
1452     VAConfigID config_id,
1453     int picture_width,
1454     int picture_height,
1455     int flag,
1456     VASurfaceID *render_targets,
1457     int num_render_targets,
1458     VAContextID *context                /* out */
1459 );
1460
1461 /**
1462  * vaDestroyContext - Destroy a context 
1463  *  dpy: display
1464  *  context: context to be destroyed
1465  */
1466 VAStatus vaDestroyContext (
1467     VADisplay dpy,
1468     VAContextID context
1469 );
1470
1471 //Multi-frame context
1472 typedef VAGenericID VAMFContextID;
1473 /**
1474  * vaCreateMFContext - Create a multi-frame context
1475  *  interface encapsulating common for all streams memory objects and structures
1476  *  required for single GPU task submission from several VAContextID's.
1477  *  Allocation: This call only creates an instance, doesn't allocate any additional memory.
1478  *  Support identification: Application can identify multi-frame feature support by ability
1479  *  to create multi-frame context. If driver supports multi-frame - call successful,
1480  *  mf_context != NULL and VAStatus = VA_STATUS_SUCCESS, otherwise if multi-frame processing
1481  *  not supported driver returns VA_STATUS_ERROR_UNIMPLEMENTED and mf_context = NULL.
1482  *  return values:
1483  *  VA_STATUS_SUCCESS - operation successful.
1484  *  VA_STATUS_ERROR_UNIMPLEMENTED - no support for multi-frame.
1485  *  dpy: display adapter.
1486  *  mf_context: Multi-Frame context encapsulating all associated context
1487  *  for multi-frame submission.
1488  */
1489 VAStatus vaCreateMFContext (
1490     VADisplay dpy,
1491     VAMFContextID *mf_context    /* out */
1492 );
1493
1494 /**
1495  * vaMFAddContext - Provide ability to associate each context used for
1496  *  Multi-Frame submission and common Multi-Frame context.
1497  *  Try to add context to understand if it is supported.
1498  *  Allocation: this call allocates and/or reallocates all memory objects
1499  *  common for all contexts associated with particular Multi-Frame context.
1500  *  All memory required for each context(pixel buffers, internal driver
1501  *  buffers required for processing) allocated during standard vaCreateContext call for each context.
1502  *  Runtime dependency - if current implementation doesn't allow to run different entry points/profile,
1503  *  first context added will set entry point/profile for whole Multi-Frame context,
1504  *  all other entry points and profiles can be rejected to be added.
1505  *  Return values:
1506  *  VA_STATUS_SUCCESS - operation successful, context was added.
1507  *  VA_STATUS_ERROR_OPERATION_FAILED - something unexpected happened - application have to close
1508  *  current mf_context and associated contexts and start working with new ones.
1509  *  VA_STATUS_ERROR_INVALID_CONTEXT - ContextID is invalid, means:
1510  *  1 - mf_context is not valid context or
1511  *  2 - driver can't suport different VAEntrypoint or VAProfile simultaneosly
1512  *  and current context contradicts with previously added, application can continue with current mf_context
1513  *  and other contexts passed this call, rejected context can continue work in stand-alone
1514  *  mode or other mf_context.
1515  *  VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT - particular context being added was created with with
1516  *  unsupported VAEntrypoint. Application can continue with current mf_context
1517  *  and other contexts passed this call, rejected context can continue work in stand-alone
1518  *  mode.
1519  *  VA_STATUS_ERROR_UNSUPPORTED_PROFILE - Current context with Particular VAEntrypoint is supported
1520  *  but VAProfile is not supported. Application can continue with current mf_context
1521  *  and other contexts passed this call, rejected context can continue work in stand-alone
1522  *  mode.
1523  *  dpy: display adapter.
1524  *  context: context being associated with Multi-Frame context.
1525  *  mf_context: - multi-frame context used to associate contexts for multi-frame submission.
1526  */
1527 VAStatus vaMFAddContext (
1528     VADisplay dpy,
1529     VAMFContextID mf_context,
1530     VAContextID context
1531 );
1532
1533 /**
1534  * vaMFReleaseContext - Removes context from multi-frame and
1535  *  association with multi-frame context.
1536  *  After association removed vaEndPicture will submit tasks, but not vaMFSubmit.
1537  *  Return values:
1538  *  VA_STATUS_SUCCESS - operation successful, context was removed.
1539  *  VA_STATUS_ERROR_OPERATION_FAILED - something unexpected happened.
1540  *  application need to destroy this VAMFContextID and all assotiated VAContextID
1541  *  dpy: display
1542  *  mf_context: VAMFContextID where context is added
1543  *  context: VAContextID to be added
1544  */
1545 VAStatus vaMFReleaseContext (
1546     VADisplay dpy,
1547     VAMFContextID mf_context,
1548     VAContextID context
1549 );
1550
1551 /**
1552  * Buffers 
1553  * Buffers are used to pass various types of data from the
1554  * client to the server. The server maintains a data store
1555  * for each buffer created, and the client idenfies a buffer
1556  * through a unique buffer id assigned by the server.
1557  */
1558
1559 typedef VAGenericID VABufferID;
1560
1561 typedef enum
1562 {
1563     VAPictureParameterBufferType        = 0,
1564     VAIQMatrixBufferType                = 1,
1565     VABitPlaneBufferType                = 2,
1566     VASliceGroupMapBufferType           = 3,
1567     VASliceParameterBufferType          = 4,
1568     VASliceDataBufferType               = 5,
1569     VAMacroblockParameterBufferType     = 6,
1570     VAResidualDataBufferType            = 7,
1571     VADeblockingParameterBufferType     = 8,
1572     VAImageBufferType                   = 9,
1573     VAProtectedSliceDataBufferType      = 10,
1574     VAQMatrixBufferType                 = 11,
1575     VAHuffmanTableBufferType            = 12,
1576     VAProbabilityBufferType             = 13,
1577
1578 /* Following are encode buffer types */
1579     VAEncCodedBufferType                = 21,
1580     VAEncSequenceParameterBufferType    = 22,
1581     VAEncPictureParameterBufferType     = 23,
1582     VAEncSliceParameterBufferType       = 24,
1583     VAEncPackedHeaderParameterBufferType = 25,
1584     VAEncPackedHeaderDataBufferType     = 26,
1585     VAEncMiscParameterBufferType        = 27,
1586     VAEncMacroblockParameterBufferType  = 28,
1587     VAEncMacroblockMapBufferType        = 29,
1588
1589     /**
1590      * \brief Encoding QP buffer
1591      *
1592      * This buffer contains QP per MB for encoding. Currently
1593      * VAEncQPBufferH264 is defined for H.264 encoding, see
1594      * #VAEncQPBufferH264 for details
1595      */
1596     VAEncQPBufferType                   = 30,
1597 /* Following are video processing buffer types */
1598     /**
1599      * \brief Video processing pipeline parameter buffer.
1600      *
1601      * This buffer describes the video processing pipeline. See
1602      * #VAProcPipelineParameterBuffer for details.
1603      */
1604     VAProcPipelineParameterBufferType   = 41,
1605     /**
1606      * \brief Video filter parameter buffer.
1607      *
1608      * This buffer describes the video filter parameters. All buffers
1609      * inherit from #VAProcFilterParameterBufferBase, thus including
1610      * a unique filter buffer type.
1611      *
1612      * The default buffer used by most filters is #VAProcFilterParameterBuffer.
1613      * Filters requiring advanced parameters include, but are not limited to,
1614      * deinterlacing (#VAProcFilterParameterBufferDeinterlacing),
1615      * color balance (#VAProcFilterParameterBufferColorBalance), etc.
1616      */
1617     VAProcFilterParameterBufferType     = 42,
1618     /**
1619      * \brief FEI specific buffer types
1620      */
1621     VAEncFEIMVBufferType                = 43,
1622     VAEncFEIMBCodeBufferType            = 44,
1623     VAEncFEIDistortionBufferType        = 45,
1624     VAEncFEIMBControlBufferType         = 46,
1625     VAEncFEIMVPredictorBufferType       = 47,
1626     VAStatsStatisticsParameterBufferType = 48,
1627     /** \brief Statistics output for VAEntrypointStats progressive and top field of interlaced case*/
1628     VAStatsStatisticsBufferType         = 49,
1629     /** \brief Statistics output for VAEntrypointStats bottom field of interlaced case*/
1630     VAStatsStatisticsBottomFieldBufferType = 50,
1631     VAStatsMVBufferType                 = 51,
1632     VAStatsMVPredictorBufferType        = 52,
1633     /** Force MB's to be non skip for encode.it's per-mb control buffer, The width of the MB map
1634      * Surface is (width of the Picture in MB unit) * 1 byte, multiple of 64 bytes.
1635      * The height is (height of the picture in MB unit). The picture is either
1636      * frame or non-interleaved top or bottom field.  If the application provides this
1637      *surface, it will override the "skipCheckDisable" setting in VAEncMiscParameterEncQuality.
1638      */
1639     VAEncMacroblockDisableSkipMapBufferType = 53,
1640     /**
1641      * \brief HEVC FEI CTB level cmd buffer
1642      * it is CTB level information for future usage.
1643      */
1644     VAEncFEICTBCmdBufferType            = 54,
1645     /**
1646      * \brief HEVC FEI CU level data buffer
1647      * it's CTB level information for future usage
1648      */
1649     VAEncFEICURecordBufferType          = 55,
1650     /** decode stream out buffer, intermedia data of decode, it may include MV, MB mode etc.
1651       * it can be used to detect motion and analyze the frame contain  */
1652     VADecodeStreamoutBufferType             = 56,
1653
1654     /** \brief HEVC Decoding Subset Parameter buffer type
1655      *
1656      * The subsets parameter buffer is concatenation with one or multiple
1657      * subset entry point offsets. All the offset values are layed out one
1658      * by one according to slice order with first slice segment first, second
1659      * slice segment second, etc... The entry number is indicated by parameter
1660      * \ref num_entry_point_offsets. And the first entry position of the entry
1661      * point offsets for any slice segment is indicated by parameter
1662      * entry_offset_to_subset_array in VAPictureParameterBufferHEVC data structure.
1663      */
1664     VASubsetsParameterBufferType        = 57,
1665
1666     VABufferTypeMax
1667 } VABufferType;
1668
1669 /**
1670  * Processing rate parameter for encode.
1671  */
1672 typedef struct _VAProcessingRateParameterEnc {
1673     /** \brief Profile level */
1674     uint8_t         level_idc;
1675     uint8_t         reserved[3];
1676     /** \brief quality level. When set to 0, default quality
1677      * level is used.
1678      */
1679     uint32_t        quality_level;
1680     /** \brief Period between I frames. */
1681     uint32_t        intra_period;
1682     /** \brief Period between I/P frames. */
1683     uint32_t        ip_period;
1684 } VAProcessingRateParameterEnc;
1685
1686 /**
1687  * Processing rate parameter for decode.
1688  */
1689 typedef struct _VAProcessingRateParameterDec {
1690     /** \brief Profile level */
1691     uint8_t         level_idc;
1692     uint8_t         reserved0[3];
1693     uint32_t        reserved;
1694 } VAProcessingRateParameterDec;
1695
1696 typedef struct _VAProcessingRateParameter {
1697     union {
1698         VAProcessingRateParameterEnc proc_buf_enc;
1699         VAProcessingRateParameterDec proc_buf_dec;
1700     };
1701 } VAProcessingRateParameter;
1702
1703 /**
1704  * \brief Queries processing rate for the supplied config.
1705  *
1706  * This function queries the processing rate based on parameters in
1707  * \c proc_buf for the given \c config. Upon successful return, the processing
1708  * rate value will be stored in \c processing_rate. Processing rate is
1709  * specified as the number of macroblocks/CTU per second.
1710  *
1711  * If NULL is passed to the \c proc_buf, the default processing rate for the
1712  * given configuration will be returned.
1713  *
1714  * @param[in] dpy               the VA display
1715  * @param[in] config            the config identifying a codec or a video
1716  *     processing pipeline
1717  * @param[in] proc_buf       the buffer that contains the parameters for
1718         either the encode or decode processing rate
1719  * @param[out] processing_rate  processing rate in number of macroblocks per
1720         second constrained by parameters specified in proc_buf
1721  *
1722  */
1723 VAStatus
1724 vaQueryProcessingRate(
1725     VADisplay           dpy,
1726     VAConfigID          config,
1727     VAProcessingRateParameter *proc_buf,
1728     unsigned int       *processing_rate
1729 );
1730
1731 typedef enum
1732 {
1733     VAEncMiscParameterTypeFrameRate     = 0,
1734     VAEncMiscParameterTypeRateControl   = 1,
1735     VAEncMiscParameterTypeMaxSliceSize  = 2,
1736     VAEncMiscParameterTypeAIR           = 3,
1737     /** \brief Buffer type used to express a maximum frame size (in bits). */
1738     VAEncMiscParameterTypeMaxFrameSize  = 4,
1739     /** \brief Buffer type used for HRD parameters. */
1740     VAEncMiscParameterTypeHRD           = 5,
1741     VAEncMiscParameterTypeQualityLevel  = 6,
1742     /** \brief Buffer type used for Rolling intra refresh */
1743     VAEncMiscParameterTypeRIR           = 7,
1744     /** \brief Buffer type used for quantization parameters, it's per-sequence parameter*/
1745     VAEncMiscParameterTypeQuantization  = 8,
1746     /** \brief Buffer type used for sending skip frame parameters to the encoder's
1747       * rate control, when the user has externally skipped frames. */
1748     VAEncMiscParameterTypeSkipFrame     = 9,
1749     /** \brief Buffer type used for region-of-interest (ROI) parameters. */
1750     VAEncMiscParameterTypeROI           = 10,
1751     /** \brief Buffer type used for temporal layer structure */
1752     VAEncMiscParameterTypeTemporalLayerStructure   = 12,
1753     /** \brief Buffer type used for dirty region-of-interest (ROI) parameters. */
1754     VAEncMiscParameterTypeDirtyRect      = 13,
1755     /** \brief Buffer type used for parallel BRC parameters. */
1756     VAEncMiscParameterTypeParallelBRC   = 14,
1757     /** \brief Set MB partion mode mask and Half-pel/Quant-pel motion search */
1758     VAEncMiscParameterTypeSubMbPartPel = 15,
1759     /** \brief set encode quality tuning */
1760     VAEncMiscParameterTypeEncQuality = 16,
1761     /** \brief Buffer type used for encoder rounding offset parameters. */
1762     VAEncMiscParameterTypeCustomRoundingControl = 17,
1763     /** \brief Buffer type used for FEI input frame level parameters */
1764     VAEncMiscParameterTypeFEIFrameControl = 18,
1765     /** \brief encode extension buffer, ect. MPEG2 Sequence extenstion data */
1766     VAEncMiscParameterTypeExtensionData = 19
1767 } VAEncMiscParameterType;
1768
1769 /** \brief Packed header type. */
1770 typedef enum {
1771     /** \brief Packed sequence header. */
1772     VAEncPackedHeaderSequence   = 1,
1773     /** \brief Packed picture header. */
1774     VAEncPackedHeaderPicture    = 2,
1775     /** \brief Packed slice header. */
1776     VAEncPackedHeaderSlice      = 3,
1777     /** 
1778      * \brief Packed raw header. 
1779      * 
1780      * Packed raw data header can be used by the client to insert a header  
1781      * into the bitstream data buffer at the point it is passed, the driver 
1782      * will handle the raw packed header based on "has_emulation_bytes" field
1783      * in the packed header parameter structure.
1784      */
1785     VAEncPackedHeaderRawData    = 4,
1786     /**
1787      * \brief Misc packed header. See codec-specific definitions.
1788      *
1789      * @deprecated
1790      * This is a deprecated packed header type. All applications can use
1791      * \c VAEncPackedHeaderRawData to insert a codec-specific packed header
1792      */
1793     VAEncPackedHeaderMiscMask va_deprecated_enum  = 0x80000000,
1794 } VAEncPackedHeaderType;
1795
1796 /** \brief Packed header parameter. */
1797 typedef struct _VAEncPackedHeaderParameterBuffer {
1798     /** Type of the packed header buffer. See #VAEncPackedHeaderType. */
1799     uint32_t                type;
1800     /** \brief Size of the #VAEncPackedHeaderDataBuffer in bits. */
1801     uint32_t                bit_length;
1802     /** \brief Flag: buffer contains start code emulation prevention bytes? */
1803     uint8_t               has_emulation_bytes;
1804
1805     /** \brief Reserved bytes for future use, must be zero */
1806     uint32_t                va_reserved[VA_PADDING_LOW];
1807 } VAEncPackedHeaderParameterBuffer;
1808
1809 /**
1810  *  For application, e.g. set a new bitrate
1811  *    VABufferID buf_id;
1812  *    VAEncMiscParameterBuffer *misc_param;
1813  *    VAEncMiscParameterRateControl *misc_rate_ctrl;
1814  * 
1815  *    vaCreateBuffer(dpy, context, VAEncMiscParameterBufferType,
1816  *              sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl),
1817  *              1, NULL, &buf_id);
1818  *
1819  *    vaMapBuffer(dpy,buf_id,(void **)&misc_param);
1820  *    misc_param->type = VAEncMiscParameterTypeRateControl;
1821  *    misc_rate_ctrl= (VAEncMiscParameterRateControl *)misc_param->data;
1822  *    misc_rate_ctrl->bits_per_second = 6400000;
1823  *    vaUnmapBuffer(dpy, buf_id);
1824  *    vaRenderPicture(dpy, context, &buf_id, 1);
1825  */
1826 typedef struct _VAEncMiscParameterBuffer
1827 {
1828     VAEncMiscParameterType type;
1829     uint32_t data[];
1830 } VAEncMiscParameterBuffer;
1831
1832 /** \brief Temporal layer Structure*/
1833 typedef struct _VAEncMiscParameterTemporalLayerStructure
1834 {
1835     /** \brief The number of temporal layers */
1836     uint32_t number_of_layers;
1837     /** \brief The length of the array defining frame layer membership. Should be 1-32 */
1838     uint32_t periodicity;
1839     /**
1840      * \brief The array indicating the layer id for each frame
1841      *
1842      * The layer id for the first frame in a coded sequence is always 0, so layer_id[] specifies the layer
1843      * ids for frames starting from the 2nd frame.
1844      */
1845     uint32_t layer_id[32];
1846
1847     /** \brief Reserved bytes for future use, must be zero */
1848     uint32_t                va_reserved[VA_PADDING_LOW];
1849 } VAEncMiscParameterTemporalLayerStructure;
1850
1851
1852 /** \brief Rate control parameters */
1853 typedef struct _VAEncMiscParameterRateControl
1854 {
1855     /** The maximum bit-rate which the the rate controller should generate. */
1856     uint32_t bits_per_second;
1857     /** The target bit-rate which the rate controller should generate, as a percentage of the
1858      * maximum bit-rate.
1859      *
1860      * In CBR mode this value is ignored (treated as 100%).
1861      */
1862     uint32_t target_percentage;
1863     /** Rate control window size in milliseconds.
1864      *
1865      * The rate controller will attempt to guarantee that the target and maximum bit-rates are
1866      * correct over this window.
1867      */
1868     uint32_t window_size;
1869     /** Initial quantiser value used at the start of the stream.
1870      *
1871      * Ignored if set to zero.
1872      */
1873     uint32_t initial_qp;
1874     /** Minimum quantiser value to use.
1875      *
1876      * The quantiser will not go below the value - if this limit is hit, the output bitrate may
1877      * be lower than the target.  Ignored if set to zero.
1878      */
1879     uint32_t min_qp;
1880     /** Basic unit size.
1881      *
1882      * Only used by some drivers - see driver documentation for details.  Set to zero if unused.
1883      */
1884     uint32_t basic_unit_size;
1885     union
1886     {
1887         struct
1888         {
1889             /** Force rate controller reset.
1890              *
1891              * The next frame will be treated as the start of a new stream, with all rate
1892              * controller state reset to its initial values.
1893              */
1894             uint32_t reset : 1;
1895             /** Disable frame skip in rate control mode. */
1896             uint32_t disable_frame_skip : 1;
1897             /** Disable bit stuffing in rate control mode. */
1898             uint32_t disable_bit_stuffing : 1;
1899             /** Macroblock-level rate control.
1900              *
1901              * 0: use default, 1: always enable, 2: always disable, other: reserved.
1902              *
1903              * This feature is only available if VAConfigAttribRateControl has the
1904              * \ref VA_RC_MB bit set.
1905              */
1906             uint32_t mb_rate_control : 4;
1907             /** The temporal layer that these rate control parameters apply to. */
1908             uint32_t temporal_id : 8;
1909             /** Ensure that intra frames also conform to the constant frame size. */
1910             uint32_t cfs_I_frames : 1;
1911             /** Enable parallel rate control for hierarchical B frames.
1912              *
1913              * See \ref VA_RC_PARALLEL.
1914              */
1915             uint32_t enable_parallel_brc    : 1;
1916             uint32_t enable_dynamic_scaling : 1;
1917             /** Frame tolerance mode.
1918              *
1919              *  Indicates the tolerance the application has to variations in the frame size.
1920              *  For example, wireless display scenarios may require very steady bit rate to
1921              *  reduce buffering time. It affects the rate control algorithm used,
1922              *  but may or may not have an effect based on the combination of other BRC
1923              *  parameters.  Only valid when the driver reports support for
1924              *  #VAConfigAttribFrameSizeToleranceSupport.
1925              *
1926              *  equals 0    -- normal mode;
1927              *  equals 1    -- maps to sliding window;
1928              *  equals 2    -- maps to low delay mode;
1929              *  other       -- invalid.
1930              */
1931             uint32_t frame_tolerance_mode   : 2;
1932             /** Reserved for future use, must be zero. */
1933             uint32_t reserved               : 12;
1934         } bits;
1935         uint32_t value;
1936     } rc_flags;
1937     /** Initial quality factor used in ICQ mode.
1938      *
1939      * This value must be between 1 and 51.
1940      * this value will be deprecated in future, to use quality_factor instead of it.
1941      */
1942     uint32_t ICQ_quality_factor;
1943     /** Maximum quantiser value to use.
1944      *
1945      * The quantiser will not go above this value - if this limit is hit, the output bitrate
1946      * may exceed the target.  Ignored if set to zero.
1947      */
1948     uint32_t max_qp;
1949     /** Quality factor
1950      *
1951      *  the range will be different for different codec
1952      */
1953     uint32_t quality_factor;
1954     /** Reserved bytes for future use, must be zero. */
1955     uint32_t va_reserved[VA_PADDING_MEDIUM - 3];
1956 } VAEncMiscParameterRateControl;
1957
1958 /** Encode framerate parameters.
1959  *
1960  * Sets the encode framerate used by the rate controller.  This should be
1961  * provided in all modes using a bitrate target (variable framerate is not
1962  * supported).
1963  */
1964 typedef struct _VAEncMiscParameterFrameRate
1965 {
1966     /** Encode framerate.
1967      *
1968      * The framerate is specified as a number of frames per second, as a
1969      * fraction.  The denominator of the fraction is given in the top half
1970      * (the high two bytes) of the framerate field, and the numerator is
1971      * given in the bottom half (the low two bytes).
1972      *
1973      * That is:
1974      * denominator = framerate >> 16 & 0xffff;
1975      * numerator   = framerate & 0xffff;
1976      * fps         = numerator / denominator;
1977      *
1978      * For example, if framerate is set to (100 << 16 | 750), this is
1979      * 750 / 100, hence 7.5fps.
1980      *
1981      * If the denominator is zero (the high two bytes are both zero) then
1982      * it takes the value one instead, so the framerate is just the integer
1983      * in the low 2 bytes.
1984      */
1985     uint32_t framerate;
1986     union
1987     {
1988         struct
1989         {
1990             /** The temporal layer that these framerate parameters apply to. */
1991             uint32_t temporal_id : 8;
1992             /** Reserved for future use, must be zero. */
1993             uint32_t reserved : 24;
1994          } bits;
1995          uint32_t value;
1996      } framerate_flags;
1997
1998     /** \brief Reserved bytes for future use, must be zero */
1999     uint32_t                va_reserved[VA_PADDING_LOW];
2000 } VAEncMiscParameterFrameRate;
2001
2002 /**
2003  * Allow a maximum slice size to be specified (in bits).
2004  * The encoder will attempt to make sure that individual slices do not exceed this size
2005  * Or to signal applicate if the slice size exceed this size, see "status" of VACodedBufferSegment
2006  */
2007 typedef struct _VAEncMiscParameterMaxSliceSize
2008 {
2009     uint32_t max_slice_size;
2010
2011     /** \brief Reserved bytes for future use, must be zero */
2012     uint32_t                va_reserved[VA_PADDING_LOW];
2013 } VAEncMiscParameterMaxSliceSize;
2014
2015 typedef struct _VAEncMiscParameterAIR
2016 {
2017     uint32_t air_num_mbs;
2018     uint32_t air_threshold;
2019     uint32_t air_auto; /* if set to 1 then hardware auto-tune the AIR threshold */
2020
2021     /** \brief Reserved bytes for future use, must be zero */
2022     uint32_t                va_reserved[VA_PADDING_LOW];
2023 } VAEncMiscParameterAIR;
2024
2025 /*
2026  * \brief Rolling intra refresh data structure for encoding.
2027  */
2028 typedef struct _VAEncMiscParameterRIR
2029 {
2030     union
2031     {
2032         struct
2033         /**
2034          * \brief Indicate if intra refresh is enabled in column/row.
2035          *
2036          * App should query VAConfigAttribEncIntraRefresh to confirm RIR support
2037          * by the driver before sending this structure.
2038          */
2039         {
2040             /* \brief enable RIR in column */
2041             uint32_t enable_rir_column : 1;
2042             /* \brief enable RIR in row */
2043             uint32_t enable_rir_row : 1;
2044             uint32_t reserved : 30;
2045         } bits;
2046         uint32_t value;
2047     } rir_flags;
2048     /**
2049      * \brief Indicates the column or row location in MB. It is ignored if
2050      * rir_flags is 0.
2051      */
2052     uint16_t intra_insertion_location;
2053     /**
2054      * \brief Indicates the number of columns or rows in MB. It is ignored if
2055      * rir_flags is 0.
2056      */
2057     uint16_t intra_insert_size;
2058     /**
2059      * \brief indicates the Qp difference for inserted intra columns or rows.
2060      * App can use this to adjust intra Qp based on bitrate & max frame size.
2061      */
2062     uint8_t  qp_delta_for_inserted_intra;
2063     /** \brief Reserved bytes for future use, must be zero */
2064     uint32_t                va_reserved[VA_PADDING_LOW];
2065 } VAEncMiscParameterRIR;
2066
2067 /** HRD / VBV buffering parameters for encoding.
2068  *
2069  * This sets the HRD / VBV parameters which will be used by the rate
2070  * controller for encoding.  It should be specified in modes using a bitrate
2071  * target when the buffering of the output stream needs to be constrained.
2072  *
2073  * If not provided, the encoder may use arbitrary amounts of buffering.
2074  */
2075 typedef struct _VAEncMiscParameterHRD
2076 {
2077     /** The initial fullness of the HRD coded picture buffer, in bits.
2078      *
2079      * This sets how full the CPB is when encoding begins - that is, how much
2080      * buffering will happen on the decoder side before the first frame.
2081      * The CPB fullness will be reset to this value after any rate control
2082      * reset (a change in parameters or an explicit reset).
2083      *
2084      * For H.264, it should match the value of initial_cpb_removal_delay in
2085      * buffering_period SEI messages.
2086      */
2087     uint32_t initial_buffer_fullness;
2088     /** The HRD coded picture buffer size, in bits.
2089      *
2090      * For H.264, it should match the value of cpb_size_value_minus1 in the VUI
2091      * parameters.
2092      */
2093     uint32_t buffer_size;
2094
2095     /** \brief Reserved bytes for future use, must be zero */
2096     uint32_t                va_reserved[VA_PADDING_LOW];
2097 } VAEncMiscParameterHRD;
2098
2099 /**
2100  * \brief Defines a maximum frame size (in bits).
2101  *
2102  * This misc parameter buffer defines the maximum size of a frame (in
2103  * bits). The encoder will try to make sure that each frame does not
2104  * exceed this size. Otherwise, if the frame size exceeds this size,
2105  * the \c status flag of #VACodedBufferSegment will contain
2106  * #VA_CODED_BUF_STATUS_FRAME_SIZE_OVERFLOW.
2107  */
2108 typedef struct _VAEncMiscParameterBufferMaxFrameSize {
2109     /** \brief Type. Shall be set to #VAEncMiscParameterTypeMaxFrameSize. */
2110     VAEncMiscParameterType      type;
2111     /** \brief Maximum size of a frame (in bits). */
2112     uint32_t                max_frame_size;
2113
2114     /** \brief Reserved bytes for future use, must be zero */
2115     uint32_t                va_reserved[VA_PADDING_LOW];
2116 } VAEncMiscParameterBufferMaxFrameSize;
2117
2118 /**
2119  * \brief Encoding quality level.
2120  *
2121  * The encoding quality could be set through this structure, if the implementation  
2122  * supports multiple quality levels. The quality level set through this structure is 
2123  * persistent over the entire coded sequence, or until a new structure is being sent.
2124  * The quality level range can be queried through the VAConfigAttribEncQualityRange 
2125  * attribute. A lower value means higher quality, and a value of 1 represents the highest 
2126  * quality. The quality level setting is used as a trade-off between quality and speed/power 
2127  * consumption, with higher quality corresponds to lower speed and higher power consumption. 
2128  */
2129 typedef struct _VAEncMiscParameterBufferQualityLevel {
2130     /** \brief Encoding quality level setting. When set to 0, default quality
2131      * level is used.
2132      */
2133     uint32_t                quality_level;
2134
2135     /** \brief Reserved bytes for future use, must be zero */
2136     uint32_t                va_reserved[VA_PADDING_LOW];
2137 } VAEncMiscParameterBufferQualityLevel;
2138
2139 /**
2140  * \brief Quantization settings for encoding.
2141  *
2142  * Some encoders support special types of quantization such as trellis, and this structure
2143  * can be used by the app to control these special types of quantization by the encoder.
2144  */
2145 typedef struct _VAEncMiscParameterQuantization
2146 {
2147     union
2148     {
2149     /* if no flags is set then quantization is determined by the driver */
2150         struct
2151         {
2152             /* \brief disable trellis for all frames/fields */
2153             uint64_t disable_trellis : 1;
2154             /* \brief enable trellis for I frames/fields */
2155             uint64_t enable_trellis_I : 1;
2156             /* \brief enable trellis for P frames/fields */
2157             uint64_t enable_trellis_P : 1;
2158             /* \brief enable trellis for B frames/fields */
2159             uint64_t enable_trellis_B : 1;
2160             uint64_t reserved : 28;
2161         } bits;
2162         uint64_t value;
2163     } quantization_flags;
2164 } VAEncMiscParameterQuantization;
2165
2166 /**
2167  * \brief Encoding skip frame.
2168  *
2169  * The application may choose to skip frames externally to the encoder (e.g. drop completely or 
2170  * code as all skip's). For rate control purposes the encoder will need to know the size and number 
2171  * of skipped frames.  Skip frame(s) indicated through this structure is applicable only to the 
2172  * current frame.  It is allowed for the application to still send in packed headers for the driver to 
2173  * pack, although no frame will be encoded (e.g. for HW to encrypt the frame).  
2174  */
2175 typedef struct _VAEncMiscParameterSkipFrame {
2176     /** \brief Indicates skip frames as below.
2177       * 0: Encode as normal, no skip.
2178       * 1: One or more frames were skipped prior to the current frame, encode the current frame as normal.  
2179       * 2: The current frame is to be skipped, do not encode it but pack/encrypt the packed header contents
2180       *    (all except VAEncPackedHeaderSlice) which could contain actual frame contents (e.g. pack the frame 
2181       *    in VAEncPackedHeaderPicture).  */
2182     uint8_t               skip_frame_flag;
2183     /** \brief The number of frames skipped prior to the current frame.  Valid when skip_frame_flag = 1. */
2184     uint8_t               num_skip_frames;
2185     /** \brief When skip_frame_flag = 1, the size of the skipped frames in bits.   When skip_frame_flag = 2, 
2186       * the size of the current skipped frame that is to be packed/encrypted in bits. */
2187     uint32_t                size_skip_frames;
2188
2189     /** \brief Reserved bytes for future use, must be zero */
2190     uint32_t                va_reserved[VA_PADDING_LOW];
2191 } VAEncMiscParameterSkipFrame;
2192
2193 /**
2194  * \brief Encoding region-of-interest (ROI).
2195  *
2196  * The encoding ROI can be set through VAEncMiscParameterBufferROI, if the implementation
2197  * supports ROI input. The ROI set through this structure is applicable only to the
2198  * current frame or field, so must be sent every frame or field to be applied.  The number of
2199  * supported ROIs can be queried through the VAConfigAttribEncROI.  The encoder will use the
2200  * ROI information to adjust the QP values of the MB's that fall within the ROIs.
2201  */
2202 typedef struct _VAEncROI
2203 {
2204         /** \brief Defines the ROI boundary in pixels, the driver will map it to appropriate
2205          *  codec coding units.  It is relative to frame coordinates for the frame case and
2206          *  to field coordinates for the field case. */
2207         VARectangle     roi_rectangle;
2208         /**
2209          * \brief ROI value
2210          *
2211          * \ref roi_value specifies ROI delta QP or ROI priority.
2212          * --  ROI delta QP is the value that will be added on top of the frame level QP.
2213          * --  ROI priority specifies the priority of a region, it can be positive (more important)
2214          * or negative (less important) values and is compared with non-ROI region (taken as value 0),
2215          * E.g. ROI region with \ref roi_value -3 is less important than the non-ROI region (\ref roi_value
2216          * implied to be 0) which is less important than ROI region with roi_value +2. For overlapping
2217          * regions, the roi_value that is first in the ROI array will have priority.
2218          *
2219          * \ref roi_value always specifes ROI delta QP when VAConfigAttribRateControl == VA_RC_CQP, no matter
2220          * the value of \c roi_value_is_qp_delta in #VAEncMiscParameterBufferROI.
2221          *
2222          * \ref roi_value depends on \c roi_value_is_qp_delta in #VAEncMiscParameterBufferROI when
2223          * VAConfigAttribRateControl != VA_RC_CQP. \ref roi_value specifies ROI_delta QP if \c roi_value_is_qp_delta
2224          * in VAEncMiscParameterBufferROI is 1, otherwise \ref roi_value specifies ROI priority.
2225          */
2226         int8_t            roi_value;
2227 } VAEncROI;
2228
2229 typedef struct _VAEncMiscParameterBufferROI {
2230     /** \brief Number of ROIs being sent.*/
2231     uint32_t        num_roi;
2232
2233     /** \brief Valid when VAConfigAttribRateControl != VA_RC_CQP, then the encoder's
2234      *  rate control will determine actual delta QPs.  Specifies the max/min allowed delta
2235      *  QPs. */
2236     int8_t                max_delta_qp;
2237     int8_t                min_delta_qp;
2238
2239    /** \brief Pointer to a VAEncROI array with num_roi elements.  It is relative to frame
2240      *  coordinates for the frame case and to field coordinates for the field case.*/
2241     VAEncROI            *roi;
2242     union {
2243         struct {
2244             /**
2245              * \brief An indication for roi value.
2246              *
2247              * \ref roi_value_is_qp_delta equal to 1 indicates \c roi_value in #VAEncROI should
2248              * be used as ROI delta QP. \ref roi_value_is_qp_delta equal to 0 indicates \c roi_value
2249              * in #VAEncROI should be used as ROI priority.
2250              *
2251              * \ref roi_value_is_qp_delta is only available when VAConfigAttribRateControl != VA_RC_CQP,
2252              * the setting must comply with \c roi_rc_priority_support and \c roi_rc_qp_delta_support in
2253              * #VAConfigAttribValEncROI. The underlying driver should ignore this field
2254              * when VAConfigAttribRateControl == VA_RC_CQP.
2255              */
2256             uint32_t  roi_value_is_qp_delta    : 1;
2257             uint32_t  reserved                 : 31;
2258         } bits;
2259         uint32_t value;
2260     } roi_flags;
2261
2262     /** \brief Reserved bytes for future use, must be zero */
2263     uint32_t                va_reserved[VA_PADDING_LOW];
2264 } VAEncMiscParameterBufferROI;
2265 /*
2266  * \brief Dirty rectangle data structure for encoding.
2267  *
2268  * The encoding dirty rect can be set through VAEncMiscParameterBufferDirtyRect, if the
2269  * implementation supports dirty rect input. The rect set through this structure is applicable
2270  * only to the current frame or field, so must be sent every frame or field to be applied.
2271  * The number of supported rects can be queried through the VAConfigAttribEncDirtyRect.  The
2272  * encoder will use the rect information to know those rectangle areas have changed while the
2273  * areas not covered by dirty rect rectangles are assumed to have not changed compared to the
2274  * previous picture.  The encoder may do some internal optimizations.
2275  */
2276 typedef struct _VAEncMiscParameterBufferDirtyRect
2277 {
2278     /** \brief Number of Rectangle being sent.*/
2279     uint32_t    num_roi_rectangle;
2280
2281     /** \brief Pointer to a VARectangle array with num_roi_rectangle elements.*/
2282      VARectangle    *roi_rectangle;
2283 } VAEncMiscParameterBufferDirtyRect;
2284
2285 /** \brief Attribute value for VAConfigAttribEncParallelRateControl */
2286 typedef struct _VAEncMiscParameterParallelRateControl {
2287     /** brief Number of layers*/
2288     uint32_t num_layers;
2289     /** brief Number of B frames per layer per GOP.
2290      *
2291      * it should be allocated by application, and the is num_layers.
2292      *  num_b_in_gop[0] is the number of regular B which refers to only I or P frames. */
2293     uint32_t *num_b_in_gop;
2294 } VAEncMiscParameterParallelRateControl;
2295
2296 /** per frame encoder quality controls, once set they will persist for all future frames
2297   *till it is updated again. */
2298 typedef struct _VAEncMiscParameterEncQuality
2299 {
2300     union
2301     {
2302         struct
2303         {
2304             /** Use raw frames for reference instead of reconstructed frames.
2305               * it only impact motion estimation (ME)  stage, and will not impact MC stage
2306               * so the reconstruct picture will can match with decode side */
2307             uint32_t useRawPicForRef                    : 1;
2308             /**  Disables skip check for ME stage, it will increase the bistream size
2309               * but will improve the qulity */
2310             uint32_t skipCheckDisable                   : 1;
2311             /**  Indicates app will override default driver FTQ settings using FTQEnable.
2312               *  FTQ is forward transform quantization */
2313             uint32_t FTQOverride                        : 1;
2314             /** Enables/disables FTQ. */
2315             uint32_t FTQEnable                          : 1;
2316             /** Indicates the app will provide the Skip Threshold LUT to use when FTQ is
2317               * enabled (FTQSkipThresholdLUT), else default driver thresholds will be used. */
2318             uint32_t FTQSkipThresholdLUTInput           : 1;
2319             /** Indicates the app will provide the Skip Threshold LUT to use when FTQ is
2320               * disabled (NonFTQSkipThresholdLUT), else default driver thresholds will be used. */
2321             uint32_t NonFTQSkipThresholdLUTInput        : 1;
2322             uint32_t ReservedBit                        : 1;
2323             /** Control to enable the ME mode decision algorithm to bias to fewer B Direct/Skip types.
2324               * Applies only to B frames, all other frames will ignore this setting.  */
2325             uint32_t directBiasAdjustmentEnable         : 1;
2326             /** Enables global motion bias. global motion also is called HME (Heirarchical Motion Estimation )
2327               * HME is used to handle large motions and avoiding local minima in the video encoding process
2328               * down scaled the input and reference picture, then do ME. the result will be a predictor to next level HME or ME
2329               * current interface divide the HME to 3 level. UltraHME , SuperHME, and HME, result of UltraHME will be input of SurperHME,
2330               * result of superHME will be a input for HME. HME result will be input of ME. it is a switch for HMEMVCostScalingFactor
2331               * can change the HME bias inside RDO stage*/
2332             uint32_t globalMotionBiasAdjustmentEnable   : 1;
2333             /** MV cost scaling ratio for HME ( predictors.  It is used when
2334               * globalMotionBiasAdjustmentEnable == 1, else it is ignored.  Values are:
2335               *     0: set MV cost to be 0 for HME predictor.
2336               *     1: scale MV cost to be 1/2 of the default value for HME predictor.
2337               *     2: scale MV cost to be 1/4 of the default value for HME predictor.
2338               *     3: scale MV cost to be 1/8 of the default value for HME predictor. */
2339             uint32_t HMEMVCostScalingFactor             : 2;
2340             /**disable HME, if it is disabled. Super*ultraHME should also be disabled  */
2341             uint32_t HMEDisable                         : 1;
2342             /**disable Super HME, if it is disabled, ultraHME should be disabled */
2343             uint32_t SuperHMEDisable                    : 1;
2344             /** disable Ultra HME */
2345             uint32_t UltraHMEDisable                    : 1;
2346             /** disable panic mode. Panic mode happened when there are extreme BRC (bit rate control) requirement
2347               * frame size cant achieve the target of BRC.  when Panic mode is triggered, Coefficients will
2348               *  be set to zero. disable panic mode will improve quality but will impact BRC */
2349             uint32_t PanicModeDisable                   : 1;
2350             /** Force RepartitionCheck
2351              *  0: DEFAULT - follow driver default settings.
2352              *  1: FORCE_ENABLE - enable this feature totally for all cases.
2353              *  2: FORCE_DISABLE - disable this feature totally for all cases. */
2354             uint32_t ForceRepartitionCheck              : 2;
2355
2356         };
2357         uint32_t encControls;
2358     };
2359
2360     /** Maps QP to skip thresholds when FTQ is enabled.  Valid range is 0-255. */
2361     uint8_t FTQSkipThresholdLUT[52];
2362     /** Maps QP to skip thresholds when FTQ is disabled.  Valid range is 0-65535. */
2363     uint16_t NonFTQSkipThresholdLUT[52];
2364
2365     uint32_t reserved[VA_PADDING_HIGH];  // Reserved for future use.
2366
2367 } VAEncMiscParameterEncQuality;
2368
2369 /**
2370  *  \brief Custom Encoder Rounding Offset Control.
2371  *  Application may use this structure to set customized rounding
2372  *  offset parameters for quantization.
2373  *  Valid when \c VAConfigAttribCustomRoundingControl equals 1.
2374  */
2375 typedef struct _VAEncMiscParameterCustomRoundingControl
2376 {
2377     union {
2378         struct {
2379             /** \brief Enable customized rounding offset for intra blocks.
2380              *  If 0, default value would be taken by driver for intra
2381              *  rounding offset.
2382              */
2383             uint32_t    enable_custom_rouding_intra     : 1 ;
2384
2385             /** \brief Intra rounding offset
2386              *  Ignored if \c enable_custom_rouding_intra equals 0.
2387              */
2388             uint32_t    rounding_offset_intra           : 7;
2389
2390             /** \brief Enable customized rounding offset for inter blocks.
2391              *  If 0, default value would be taken by driver for inter
2392              *  rounding offset.
2393              */
2394             uint32_t    enable_custom_rounding_inter    : 1 ;
2395
2396             /** \brief Inter rounding offset
2397              *  Ignored if \c enable_custom_rouding_inter equals 0.
2398              */
2399             uint32_t    rounding_offset_inter           : 7;
2400
2401            /* Reserved */
2402             uint32_t    reserved                        :16;
2403         }  bits;
2404         uint32_t    value;
2405     }   rounding_offset_setting;
2406 } VAEncMiscParameterCustomRoundingControl;
2407 /**
2408  * There will be cases where the bitstream buffer will not have enough room to hold
2409  * the data for the entire slice, and the following flags will be used in the slice
2410  * parameter to signal to the server for the possible cases.
2411  * If a slice parameter buffer and slice data buffer pair is sent to the server with 
2412  * the slice data partially in the slice data buffer (BEGIN and MIDDLE cases below), 
2413  * then a slice parameter and data buffer needs to be sent again to complete this slice. 
2414  */
2415 #define VA_SLICE_DATA_FLAG_ALL          0x00    /* whole slice is in the buffer */
2416 #define VA_SLICE_DATA_FLAG_BEGIN        0x01    /* The beginning of the slice is in the buffer but the end if not */
2417 #define VA_SLICE_DATA_FLAG_MIDDLE       0x02    /* Neither beginning nor end of the slice is in the buffer */
2418 #define VA_SLICE_DATA_FLAG_END          0x04    /* end of the slice is in the buffer */
2419
2420 /* Codec-independent Slice Parameter Buffer base */
2421 typedef struct _VASliceParameterBufferBase
2422 {
2423     uint32_t slice_data_size;   /* number of bytes in the slice data buffer for this slice */
2424     uint32_t slice_data_offset; /* the offset to the first byte of slice data */
2425     uint32_t slice_data_flag;   /* see VA_SLICE_DATA_FLAG_XXX definitions */
2426 } VASliceParameterBufferBase;
2427
2428 /**********************************
2429  * JPEG common  data structures
2430  **********************************/
2431 /**
2432  * \brief Huffman table for JPEG decoding.
2433  *
2434  * This structure holds the complete Huffman tables. This is an
2435  * aggregation of all Huffman table (DHT) segments maintained by the
2436  * application. i.e. up to 2 Huffman tables are stored in there for
2437  * baseline profile.
2438  *
2439  * The #load_huffman_table array can be used as a hint to notify the
2440  * VA driver implementation about which table(s) actually changed
2441  * since the last submission of this buffer.
2442  */
2443 typedef struct _VAHuffmanTableBufferJPEGBaseline {
2444     /** \brief Specifies which #huffman_table is valid. */
2445     uint8_t       load_huffman_table[2];
2446     /** \brief Huffman tables indexed by table identifier (Th). */
2447     struct {
2448         /** @name DC table (up to 12 categories) */
2449         /**@{*/
2450         /** \brief Number of Huffman codes of length i + 1 (Li). */
2451         uint8_t   num_dc_codes[16];
2452         /** \brief Value associated with each Huffman code (Vij). */
2453         uint8_t   dc_values[12];
2454         /**@}*/
2455         /** @name AC table (2 special codes + up to 16 * 10 codes) */
2456         /**@{*/
2457         /** \brief Number of Huffman codes of length i + 1 (Li). */
2458         uint8_t   num_ac_codes[16];
2459         /** \brief Value associated with each Huffman code (Vij). */
2460         uint8_t   ac_values[162];
2461         /** \brief Padding to 4-byte boundaries. Must be set to zero. */
2462         uint8_t   pad[2];
2463         /**@}*/
2464     }                   huffman_table[2];
2465
2466     /** \brief Reserved bytes for future use, must be zero */
2467     uint32_t                va_reserved[VA_PADDING_LOW];
2468 } VAHuffmanTableBufferJPEGBaseline;
2469
2470 /****************************
2471  * MPEG-2 data structures
2472  ****************************/
2473  
2474 /* MPEG-2 Picture Parameter Buffer */
2475 /* 
2476  * For each frame or field, and before any slice data, a single
2477  * picture parameter buffer must be send.
2478  */
2479 typedef struct _VAPictureParameterBufferMPEG2
2480 {
2481     uint16_t horizontal_size;
2482     uint16_t vertical_size;
2483     VASurfaceID forward_reference_picture;
2484     VASurfaceID backward_reference_picture;
2485     /* meanings of the following fields are the same as in the standard */
2486     int32_t picture_coding_type;
2487     int32_t f_code; /* pack all four fcode into this */
2488     union {
2489         struct {
2490             uint32_t intra_dc_precision         : 2; 
2491             uint32_t picture_structure          : 2; 
2492             uint32_t top_field_first            : 1; 
2493             uint32_t frame_pred_frame_dct               : 1; 
2494             uint32_t concealment_motion_vectors : 1;
2495             uint32_t q_scale_type                       : 1;
2496             uint32_t intra_vlc_format           : 1;
2497             uint32_t alternate_scan                     : 1;
2498             uint32_t repeat_first_field         : 1;
2499             uint32_t progressive_frame          : 1;
2500             uint32_t is_first_field                     : 1; /* indicate whether the current field
2501                                                               * is the first field for field picture
2502                                                               */
2503         } bits;
2504         uint32_t value;
2505     } picture_coding_extension;
2506
2507     /** \brief Reserved bytes for future use, must be zero */
2508     uint32_t                va_reserved[VA_PADDING_LOW];
2509 } VAPictureParameterBufferMPEG2;
2510
2511 /** MPEG-2 Inverse Quantization Matrix Buffer */
2512 typedef struct _VAIQMatrixBufferMPEG2
2513 {
2514     /** \brief Same as the MPEG-2 bitstream syntax element. */
2515     int32_t load_intra_quantiser_matrix;
2516     /** \brief Same as the MPEG-2 bitstream syntax element. */
2517     int32_t load_non_intra_quantiser_matrix;
2518     /** \brief Same as the MPEG-2 bitstream syntax element. */
2519     int32_t load_chroma_intra_quantiser_matrix;
2520     /** \brief Same as the MPEG-2 bitstream syntax element. */
2521     int32_t load_chroma_non_intra_quantiser_matrix;
2522     /** \brief Luminance intra matrix, in zig-zag scan order. */
2523     uint8_t intra_quantiser_matrix[64];
2524     /** \brief Luminance non-intra matrix, in zig-zag scan order. */
2525     uint8_t non_intra_quantiser_matrix[64];
2526     /** \brief Chroma intra matrix, in zig-zag scan order. */
2527     uint8_t chroma_intra_quantiser_matrix[64];
2528     /** \brief Chroma non-intra matrix, in zig-zag scan order. */
2529     uint8_t chroma_non_intra_quantiser_matrix[64];
2530
2531     /** \brief Reserved bytes for future use, must be zero */
2532     uint32_t                va_reserved[VA_PADDING_LOW];
2533 } VAIQMatrixBufferMPEG2;
2534
2535 /** MPEG-2 Slice Parameter Buffer */
2536 typedef struct _VASliceParameterBufferMPEG2
2537 {
2538     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
2539     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
2540     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
2541     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
2542     uint32_t slice_horizontal_position;
2543     uint32_t slice_vertical_position;
2544     int32_t quantiser_scale_code;
2545     int32_t intra_slice_flag;
2546
2547     /** \brief Reserved bytes for future use, must be zero */
2548     uint32_t                va_reserved[VA_PADDING_LOW];
2549 } VASliceParameterBufferMPEG2;
2550
2551 /** MPEG-2 Macroblock Parameter Buffer */
2552 typedef struct _VAMacroblockParameterBufferMPEG2
2553 {
2554     uint16_t macroblock_address;
2555     /* 
2556      * macroblock_address (in raster scan order)
2557      * top-left: 0
2558      * bottom-right: picture-height-in-mb*picture-width-in-mb - 1
2559      */
2560     uint8_t macroblock_type;  /* see definition below */
2561     union {
2562         struct {
2563             uint32_t frame_motion_type          : 2; 
2564             uint32_t field_motion_type          : 2; 
2565             uint32_t dct_type                   : 1; 
2566         } bits;
2567         uint32_t value;
2568     } macroblock_modes;
2569     uint8_t motion_vertical_field_select; 
2570     /* 
2571      * motion_vertical_field_select:
2572      * see section 6.3.17.2 in the spec
2573      * only the lower 4 bits are used
2574      * bit 0: first vector forward
2575      * bit 1: first vector backward
2576      * bit 2: second vector forward
2577      * bit 3: second vector backward
2578      */
2579     int16_t PMV[2][2][2]; /* see Table 7-7 in the spec */
2580     uint16_t coded_block_pattern;
2581     /* 
2582      * The bitplanes for coded_block_pattern are described 
2583      * in Figure 6.10-12 in the spec
2584      */
2585      
2586     /* Number of skipped macroblocks after this macroblock */
2587     uint16_t num_skipped_macroblocks;
2588
2589     /** \brief Reserved bytes for future use, must be zero */
2590     uint32_t                va_reserved[VA_PADDING_LOW];
2591 } VAMacroblockParameterBufferMPEG2;
2592
2593 /* 
2594  * OR'd flags for macroblock_type (section 6.3.17.1 in the spec)
2595  */
2596 #define VA_MB_TYPE_MOTION_FORWARD       0x02
2597 #define VA_MB_TYPE_MOTION_BACKWARD      0x04
2598 #define VA_MB_TYPE_MOTION_PATTERN       0x08
2599 #define VA_MB_TYPE_MOTION_INTRA         0x10
2600
2601 /**
2602  * MPEG-2 Residual Data Buffer 
2603  * For each macroblock, there wil be 64 shorts (16-bit) in the 
2604  * residual data buffer
2605  */
2606
2607 /****************************
2608  * MPEG-4 Part 2 data structures
2609  ****************************/
2610  
2611 /* MPEG-4 Picture Parameter Buffer */
2612 /* 
2613  * For each frame or field, and before any slice data, a single
2614  * picture parameter buffer must be send.
2615  */
2616 typedef struct _VAPictureParameterBufferMPEG4
2617 {
2618     uint16_t vop_width;
2619     uint16_t vop_height;
2620     VASurfaceID forward_reference_picture;
2621     VASurfaceID backward_reference_picture;
2622     union {
2623         struct {
2624             uint32_t short_video_header         : 1; 
2625             uint32_t chroma_format                      : 2; 
2626             uint32_t interlaced                 : 1; 
2627             uint32_t obmc_disable                       : 1; 
2628             uint32_t sprite_enable                      : 2; 
2629             uint32_t sprite_warping_accuracy    : 2; 
2630             uint32_t quant_type                 : 1; 
2631             uint32_t quarter_sample                     : 1; 
2632             uint32_t data_partitioned           : 1; 
2633             uint32_t reversible_vlc                     : 1; 
2634             uint32_t resync_marker_disable              : 1; 
2635         } bits;
2636         uint32_t value;
2637     } vol_fields;
2638     uint8_t no_of_sprite_warping_points;
2639     int16_t sprite_trajectory_du[3];
2640     int16_t sprite_trajectory_dv[3];
2641     uint8_t quant_precision;
2642     union {
2643         struct {
2644             uint32_t vop_coding_type            : 2; 
2645             uint32_t backward_reference_vop_coding_type : 2; 
2646             uint32_t vop_rounding_type          : 1; 
2647             uint32_t intra_dc_vlc_thr           : 3; 
2648             uint32_t top_field_first            : 1; 
2649             uint32_t alternate_vertical_scan_flag       : 1; 
2650         } bits;
2651         uint32_t value;
2652     } vop_fields;
2653     uint8_t vop_fcode_forward;
2654     uint8_t vop_fcode_backward;
2655     uint16_t vop_time_increment_resolution;
2656     /* short header related */
2657     uint8_t num_gobs_in_vop;
2658     uint8_t num_macroblocks_in_gob;
2659     /* for direct mode prediction */
2660     int16_t TRB;
2661     int16_t TRD;
2662
2663     /** \brief Reserved bytes for future use, must be zero */
2664     uint32_t                va_reserved[VA_PADDING_LOW];
2665 } VAPictureParameterBufferMPEG4;
2666
2667 /** MPEG-4 Inverse Quantization Matrix Buffer */
2668 typedef struct _VAIQMatrixBufferMPEG4
2669 {
2670     /** Same as the MPEG-4:2 bitstream syntax element. */
2671     int32_t load_intra_quant_mat;
2672     /** Same as the MPEG-4:2 bitstream syntax element. */
2673     int32_t load_non_intra_quant_mat;
2674     /** The matrix for intra blocks, in zig-zag scan order. */
2675     uint8_t intra_quant_mat[64];
2676     /** The matrix for non-intra blocks, in zig-zag scan order. */
2677     uint8_t non_intra_quant_mat[64];
2678
2679     /** \brief Reserved bytes for future use, must be zero */
2680     uint32_t                va_reserved[VA_PADDING_LOW];
2681 } VAIQMatrixBufferMPEG4;
2682
2683 /** MPEG-4 Slice Parameter Buffer */
2684 typedef struct _VASliceParameterBufferMPEG4
2685 {
2686     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
2687     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
2688     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
2689     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
2690     uint32_t macroblock_number;
2691     int32_t quant_scale;
2692
2693     /** \brief Reserved bytes for future use, must be zero */
2694     uint32_t                va_reserved[VA_PADDING_LOW];
2695 } VASliceParameterBufferMPEG4;
2696
2697 /**
2698  VC-1 data structures
2699 */
2700
2701 typedef enum   /* see 7.1.1.32 */
2702 {
2703     VAMvMode1Mv                        = 0,
2704     VAMvMode1MvHalfPel                 = 1,
2705     VAMvMode1MvHalfPelBilinear         = 2,
2706     VAMvModeMixedMv                    = 3,
2707     VAMvModeIntensityCompensation      = 4 
2708 } VAMvModeVC1;
2709
2710 /** VC-1 Picture Parameter Buffer */
2711 /* 
2712  * For each picture, and before any slice data, a picture parameter
2713  * buffer must be send. Multiple picture parameter buffers may be
2714  * sent for a single picture. In that case picture parameters will
2715  * apply to all slice data that follow it until a new picture
2716  * parameter buffer is sent.
2717  *
2718  * Notes:
2719  *   pic_quantizer_type should be set to the applicable quantizer
2720  *   type as defined by QUANTIZER (J.1.19) and either
2721  *   PQUANTIZER (7.1.1.8) or PQINDEX (7.1.1.6)
2722  */
2723 typedef struct _VAPictureParameterBufferVC1
2724 {
2725     VASurfaceID forward_reference_picture;
2726     VASurfaceID backward_reference_picture;
2727     /* if out-of-loop post-processing is done on the render
2728        target, then we need to keep the in-loop decoded 
2729        picture as a reference picture */
2730     VASurfaceID inloop_decoded_picture;
2731
2732     /* sequence layer for AP or meta data for SP and MP */
2733     union {
2734         struct {
2735             uint32_t pulldown   : 1; /* SEQUENCE_LAYER::PULLDOWN */
2736             uint32_t interlace  : 1; /* SEQUENCE_LAYER::INTERLACE */
2737             uint32_t tfcntrflag : 1; /* SEQUENCE_LAYER::TFCNTRFLAG */
2738             uint32_t finterpflag        : 1; /* SEQUENCE_LAYER::FINTERPFLAG */
2739             uint32_t psf                : 1; /* SEQUENCE_LAYER::PSF */
2740             uint32_t multires   : 1; /* METADATA::MULTIRES */
2741             uint32_t overlap    : 1; /* METADATA::OVERLAP */
2742             uint32_t syncmarker : 1; /* METADATA::SYNCMARKER */
2743             uint32_t rangered   : 1; /* METADATA::RANGERED */
2744             uint32_t max_b_frames       : 3; /* METADATA::MAXBFRAMES */
2745             uint32_t profile    : 2; /* SEQUENCE_LAYER::PROFILE or The MSB of METADATA::PROFILE */
2746         } bits;
2747         uint32_t value;
2748     } sequence_fields;
2749
2750     uint16_t coded_width;               /* ENTRY_POINT_LAYER::CODED_WIDTH */
2751     uint16_t coded_height;      /* ENTRY_POINT_LAYER::CODED_HEIGHT */
2752     union {
2753         struct {
2754             uint32_t broken_link        : 1; /* ENTRY_POINT_LAYER::BROKEN_LINK */
2755             uint32_t closed_entry       : 1; /* ENTRY_POINT_LAYER::CLOSED_ENTRY */
2756             uint32_t panscan_flag       : 1; /* ENTRY_POINT_LAYER::PANSCAN_FLAG */
2757             uint32_t loopfilter : 1; /* ENTRY_POINT_LAYER::LOOPFILTER */
2758         } bits;
2759         uint32_t value;
2760     } entrypoint_fields;
2761     uint8_t conditional_overlap_flag; /* ENTRY_POINT_LAYER::CONDOVER */
2762     uint8_t fast_uvmc_flag;     /* ENTRY_POINT_LAYER::FASTUVMC */
2763     union {
2764         struct {
2765             uint32_t luma_flag  : 1; /* ENTRY_POINT_LAYER::RANGE_MAPY_FLAG */
2766             uint32_t luma               : 3; /* ENTRY_POINT_LAYER::RANGE_MAPY */
2767             uint32_t chroma_flag        : 1; /* ENTRY_POINT_LAYER::RANGE_MAPUV_FLAG */
2768             uint32_t chroma             : 3; /* ENTRY_POINT_LAYER::RANGE_MAPUV */
2769         } bits;
2770         uint32_t value;
2771     } range_mapping_fields;
2772
2773     uint8_t b_picture_fraction; /* Index for PICTURE_LAYER::BFRACTION value in Table 40 (7.1.1.14) */
2774     uint8_t cbp_table;          /* PICTURE_LAYER::CBPTAB/ICBPTAB */
2775     uint8_t mb_mode_table;      /* PICTURE_LAYER::MBMODETAB */
2776     uint8_t range_reduction_frame;/* PICTURE_LAYER::RANGEREDFRM */
2777     uint8_t rounding_control;   /* PICTURE_LAYER::RNDCTRL */
2778     uint8_t post_processing;    /* PICTURE_LAYER::POSTPROC */
2779     uint8_t picture_resolution_index;   /* PICTURE_LAYER::RESPIC */
2780     uint8_t luma_scale;         /* PICTURE_LAYER::LUMSCALE */
2781     uint8_t luma_shift;         /* PICTURE_LAYER::LUMSHIFT */
2782
2783     union {
2784         struct {
2785             uint32_t picture_type               : 3; /* PICTURE_LAYER::PTYPE */
2786             uint32_t frame_coding_mode  : 3; /* PICTURE_LAYER::FCM */
2787             uint32_t top_field_first    : 1; /* PICTURE_LAYER::TFF */
2788             uint32_t is_first_field             : 1; /* set to 1 if it is the first field */
2789             uint32_t intensity_compensation     : 1; /* PICTURE_LAYER::INTCOMP */
2790         } bits;
2791         uint32_t value;
2792     } picture_fields;
2793     union {
2794         struct {
2795             uint32_t mv_type_mb : 1;    /* PICTURE::MVTYPEMB */
2796             uint32_t direct_mb  : 1;    /* PICTURE::DIRECTMB */
2797             uint32_t skip_mb    : 1;    /* PICTURE::SKIPMB */
2798             uint32_t field_tx   : 1;    /* PICTURE::FIELDTX */
2799             uint32_t forward_mb : 1;    /* PICTURE::FORWARDMB */
2800             uint32_t ac_pred    : 1;    /* PICTURE::ACPRED */
2801             uint32_t overflags  : 1;    /* PICTURE::OVERFLAGS */
2802         } flags;
2803         uint32_t value;
2804     } raw_coding;
2805     union {
2806         struct {
2807             uint32_t bp_mv_type_mb   : 1;    /* PICTURE::MVTYPEMB */
2808             uint32_t bp_direct_mb    : 1;    /* PICTURE::DIRECTMB */
2809             uint32_t bp_skip_mb      : 1;    /* PICTURE::SKIPMB */  
2810             uint32_t bp_field_tx     : 1;    /* PICTURE::FIELDTX */ 
2811             uint32_t bp_forward_mb   : 1;    /* PICTURE::FORWARDMB */
2812             uint32_t bp_ac_pred      : 1;    /* PICTURE::ACPRED */   
2813             uint32_t bp_overflags    : 1;    /* PICTURE::OVERFLAGS */
2814         } flags;
2815         uint32_t value;
2816     } bitplane_present; /* signal what bitplane is being passed via the bitplane buffer */
2817     union {
2818         struct {
2819             uint32_t reference_distance_flag : 1;/* PICTURE_LAYER::REFDIST_FLAG */
2820             uint32_t reference_distance : 5;/* PICTURE_LAYER::REFDIST */
2821             uint32_t num_reference_pictures: 1;/* PICTURE_LAYER::NUMREF */
2822             uint32_t reference_field_pic_indicator      : 1;/* PICTURE_LAYER::REFFIELD */
2823         } bits;
2824         uint32_t value;
2825     } reference_fields;
2826     union {
2827         struct {
2828             uint32_t mv_mode            : 3; /* PICTURE_LAYER::MVMODE */
2829             uint32_t mv_mode2           : 3; /* PICTURE_LAYER::MVMODE2 */
2830             uint32_t mv_table           : 3; /* PICTURE_LAYER::MVTAB/IMVTAB */
2831             uint32_t two_mv_block_pattern_table: 2; /* PICTURE_LAYER::2MVBPTAB */
2832             uint32_t four_mv_switch             : 1; /* PICTURE_LAYER::4MVSWITCH */
2833             uint32_t four_mv_block_pattern_table : 2; /* PICTURE_LAYER::4MVBPTAB */
2834             uint32_t extended_mv_flag   : 1; /* ENTRY_POINT_LAYER::EXTENDED_MV */
2835             uint32_t extended_mv_range  : 2; /* PICTURE_LAYER::MVRANGE */
2836             uint32_t extended_dmv_flag  : 1; /* ENTRY_POINT_LAYER::EXTENDED_DMV */
2837             uint32_t extended_dmv_range : 2; /* PICTURE_LAYER::DMVRANGE */
2838         } bits;
2839         uint32_t value;
2840     } mv_fields;
2841     union {
2842         struct {
2843             uint32_t dquant     : 2;    /* ENTRY_POINT_LAYER::DQUANT */
2844             uint32_t quantizer     : 2;         /* ENTRY_POINT_LAYER::QUANTIZER */
2845             uint32_t half_qp    : 1;    /* PICTURE_LAYER::HALFQP */
2846             uint32_t pic_quantizer_scale : 5;/* PICTURE_LAYER::PQUANT */
2847             uint32_t pic_quantizer_type : 1;/* PICTURE_LAYER::PQUANTIZER */
2848             uint32_t dq_frame   : 1;    /* VOPDQUANT::DQUANTFRM */
2849             uint32_t dq_profile : 2;    /* VOPDQUANT::DQPROFILE */
2850             uint32_t dq_sb_edge : 2;    /* VOPDQUANT::DQSBEDGE */
2851             uint32_t dq_db_edge         : 2;    /* VOPDQUANT::DQDBEDGE */
2852             uint32_t dq_binary_level : 1;       /* VOPDQUANT::DQBILEVEL */
2853             uint32_t alt_pic_quantizer : 5;/* VOPDQUANT::ALTPQUANT */
2854         } bits;
2855         uint32_t value;
2856     } pic_quantizer_fields;
2857     union {
2858         struct {
2859             uint32_t variable_sized_transform_flag      : 1;/* ENTRY_POINT_LAYER::VSTRANSFORM */
2860             uint32_t mb_level_transform_type_flag       : 1;/* PICTURE_LAYER::TTMBF */
2861             uint32_t frame_level_transform_type : 2;/* PICTURE_LAYER::TTFRM */
2862             uint32_t transform_ac_codingset_idx1        : 2;/* PICTURE_LAYER::TRANSACFRM */
2863             uint32_t transform_ac_codingset_idx2        : 2;/* PICTURE_LAYER::TRANSACFRM2 */
2864             uint32_t intra_transform_dc_table   : 1;/* PICTURE_LAYER::TRANSDCTAB */
2865         } bits;
2866         uint32_t value;
2867     } transform_fields;
2868
2869     uint8_t luma_scale2;                  /* PICTURE_LAYER::LUMSCALE2 */
2870     uint8_t luma_shift2;                  /* PICTURE_LAYER::LUMSHIFT2 */
2871     uint8_t intensity_compensation_field; /* Index for PICTURE_LAYER::INTCOMPFIELD value in Table 109 (9.1.1.48) */
2872
2873     /** \brief Reserved bytes for future use, must be zero */
2874     uint32_t                va_reserved[VA_PADDING_MEDIUM - 1];
2875 } VAPictureParameterBufferVC1;
2876
2877 /** VC-1 Bitplane Buffer
2878 There will be at most three bitplanes coded in any picture header. To send 
2879 the bitplane data more efficiently, each byte is divided in two nibbles, with
2880 each nibble carrying three bitplanes for one macroblock.  The following table
2881 shows the bitplane data arrangement within each nibble based on the picture
2882 type.
2883
2884 Picture Type    Bit3            Bit2            Bit1            Bit0
2885 I or BI                         OVERFLAGS       ACPRED          FIELDTX
2886 P                               MYTYPEMB        SKIPMB          DIRECTMB
2887 B                               FORWARDMB       SKIPMB          DIRECTMB
2888
2889 Within each byte, the lower nibble is for the first MB and the upper nibble is 
2890 for the second MB.  E.g. the lower nibble of the first byte in the bitplane
2891 buffer is for Macroblock #1 and the upper nibble of the first byte is for 
2892 Macroblock #2 in the first row.
2893 */
2894
2895 /* VC-1 Slice Parameter Buffer */
2896 typedef struct _VASliceParameterBufferVC1
2897 {
2898     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
2899     uint32_t slice_data_offset;/* the offset to the first byte of slice data */
2900     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
2901     uint32_t macroblock_offset;/* the offset to the first bit of MB from the first byte of slice data */
2902     uint32_t slice_vertical_position;
2903
2904     /** \brief Reserved bytes for future use, must be zero */
2905     uint32_t                va_reserved[VA_PADDING_LOW];
2906 } VASliceParameterBufferVC1;
2907
2908 /* VC-1 Slice Data Buffer */
2909 /* 
2910 This is simplely a buffer containing raw bit-stream bytes 
2911 */
2912
2913 /****************************
2914  * H.264/AVC data structures
2915  ****************************/
2916
2917 typedef struct _VAPictureH264
2918 {
2919     VASurfaceID picture_id;
2920     uint32_t frame_idx;
2921     uint32_t flags;
2922     int32_t TopFieldOrderCnt;
2923     int32_t BottomFieldOrderCnt;
2924
2925     /** \brief Reserved bytes for future use, must be zero */
2926     uint32_t                va_reserved[VA_PADDING_LOW];
2927 } VAPictureH264;
2928 /* flags in VAPictureH264 could be OR of the following */
2929 #define VA_PICTURE_H264_INVALID                 0x00000001
2930 #define VA_PICTURE_H264_TOP_FIELD               0x00000002
2931 #define VA_PICTURE_H264_BOTTOM_FIELD            0x00000004
2932 #define VA_PICTURE_H264_SHORT_TERM_REFERENCE    0x00000008
2933 #define VA_PICTURE_H264_LONG_TERM_REFERENCE     0x00000010
2934
2935 /** H.264 Picture Parameter Buffer */
2936 /* 
2937  * For each picture, and before any slice data, a single
2938  * picture parameter buffer must be send.
2939  */
2940 typedef struct _VAPictureParameterBufferH264
2941 {
2942     VAPictureH264 CurrPic;
2943     VAPictureH264 ReferenceFrames[16];  /* in DPB */
2944     uint16_t picture_width_in_mbs_minus1;
2945     uint16_t picture_height_in_mbs_minus1;
2946     uint8_t bit_depth_luma_minus8;
2947     uint8_t bit_depth_chroma_minus8;
2948     uint8_t num_ref_frames;
2949     union {
2950         struct {
2951             uint32_t chroma_format_idc                  : 2; 
2952             uint32_t residual_colour_transform_flag             : 1; /* Renamed to separate_colour_plane_flag in newer standard versions. */
2953             uint32_t gaps_in_frame_num_value_allowed_flag       : 1; 
2954             uint32_t frame_mbs_only_flag                        : 1; 
2955             uint32_t mb_adaptive_frame_field_flag               : 1; 
2956             uint32_t direct_8x8_inference_flag          : 1; 
2957             uint32_t MinLumaBiPredSize8x8                       : 1; /* see A.3.3.2 */
2958             uint32_t log2_max_frame_num_minus4          : 4;
2959             uint32_t pic_order_cnt_type                 : 2;
2960             uint32_t log2_max_pic_order_cnt_lsb_minus4  : 4;
2961             uint32_t delta_pic_order_always_zero_flag   : 1;
2962         } bits;
2963         uint32_t value;
2964     } seq_fields;
2965     // FMO is not supported.
2966     va_deprecated uint8_t num_slice_groups_minus1;
2967     va_deprecated uint8_t slice_group_map_type;
2968     va_deprecated uint16_t slice_group_change_rate_minus1;
2969     int8_t pic_init_qp_minus26;
2970     int8_t pic_init_qs_minus26;
2971     int8_t chroma_qp_index_offset;
2972     int8_t second_chroma_qp_index_offset;
2973     union {
2974         struct {
2975             uint32_t entropy_coding_mode_flag   : 1;
2976             uint32_t weighted_pred_flag         : 1;
2977             uint32_t weighted_bipred_idc                : 2;
2978             uint32_t transform_8x8_mode_flag    : 1;
2979             uint32_t field_pic_flag                     : 1;
2980             uint32_t constrained_intra_pred_flag        : 1;
2981             uint32_t pic_order_present_flag                     : 1; /* Renamed to bottom_field_pic_order_in_frame_present_flag in newer standard versions. */
2982             uint32_t deblocking_filter_control_present_flag : 1;
2983             uint32_t redundant_pic_cnt_present_flag             : 1;
2984             uint32_t reference_pic_flag                 : 1; /* nal_ref_idc != 0 */
2985         } bits;
2986         uint32_t value;
2987     } pic_fields;
2988     uint16_t frame_num;
2989
2990     /** \brief Reserved bytes for future use, must be zero */
2991     uint32_t                va_reserved[VA_PADDING_MEDIUM];
2992 } VAPictureParameterBufferH264;
2993
2994 /** H.264 Inverse Quantization Matrix Buffer */
2995 typedef struct _VAIQMatrixBufferH264
2996 {
2997     /** \brief 4x4 scaling list, in raster scan order. */
2998     uint8_t ScalingList4x4[6][16];
2999     /** \brief 8x8 scaling list, in raster scan order. */
3000     uint8_t ScalingList8x8[2][64];
3001
3002     /** \brief Reserved bytes for future use, must be zero */
3003     uint32_t                va_reserved[VA_PADDING_LOW];
3004 } VAIQMatrixBufferH264;
3005
3006 /** H.264 Slice Parameter Buffer */
3007 typedef struct _VASliceParameterBufferH264
3008 {
3009     uint32_t slice_data_size;/* number of bytes in the slice data buffer for this slice */
3010     /** \brief Byte offset to the NAL Header Unit for this slice. */
3011     uint32_t slice_data_offset;
3012     uint32_t slice_data_flag; /* see VA_SLICE_DATA_FLAG_XXX defintions */
3013     /**
3014      * \brief Bit offset from NAL Header Unit to the begining of slice_data().
3015      *
3016      * This bit offset is relative to and includes the NAL unit byte
3017      * and represents the number of bits parsed in the slice_header()
3018      * after the removal of any emulation prevention bytes in
3019      * there. However, the slice data buffer passed to the hardware is
3020      * the original bitstream, thus including any emulation prevention
3021      * bytes.
3022      */
3023     uint16_t slice_data_bit_offset;
3024     uint16_t first_mb_in_slice;
3025     uint8_t slice_type;
3026     uint8_t direct_spatial_mv_pred_flag;
3027     /**
3028      * H264/AVC syntax element
3029      *
3030      * if num_ref_idx_active_override_flag equals 0, host decoder should
3031      * set its value to num_ref_idx_l0_default_active_minus1.
3032      */
3033     uint8_t num_ref_idx_l0_active_minus1;
3034     /**
3035      * H264/AVC syntax element
3036      *
3037      * if num_ref_idx_active_override_flag equals 0, host decoder should
3038      * set its value to num_ref_idx_l1_default_active_minus1.
3039      */
3040     uint8_t num_ref_idx_l1_active_minus1;
3041     uint8_t cabac_init_idc;
3042     int8_t slice_qp_delta;
3043     uint8_t disable_deblocking_filter_idc;
3044     int8_t slice_alpha_c0_offset_div2;
3045     int8_t slice_beta_offset_div2;
3046     VAPictureH264 RefPicList0[32];      /* See 8.2.4.2 */
3047     VAPictureH264 RefPicList1[32];      /* See 8.2.4.2 */
3048     uint8_t luma_log2_weight_denom;
3049     uint8_t chroma_log2_weight_denom;
3050     uint8_t luma_weight_l0_flag;
3051     int16_t luma_weight_l0[32];
3052     int16_t luma_offset_l0[32];
3053     uint8_t chroma_weight_l0_flag;
3054     int16_t chroma_weight_l0[32][2];
3055     int16_t chroma_offset_l0[32][2];
3056     uint8_t luma_weight_l1_flag;
3057     int16_t luma_weight_l1[32];
3058     int16_t luma_offset_l1[32];
3059     uint8_t chroma_weight_l1_flag;
3060     int16_t chroma_weight_l1[32][2];
3061     int16_t chroma_offset_l1[32][2];
3062
3063     /** \brief Reserved bytes for future use, must be zero */
3064     uint32_t                va_reserved[VA_PADDING_LOW];
3065 } VASliceParameterBufferH264;
3066
3067 /****************************
3068  * Common encode data structures 
3069  ****************************/
3070 typedef enum
3071 {
3072     VAEncPictureTypeIntra               = 0,
3073     VAEncPictureTypePredictive          = 1,
3074     VAEncPictureTypeBidirectional       = 2,
3075 } VAEncPictureType;
3076
3077 /**
3078  * \brief Encode Slice Parameter Buffer.
3079  *
3080  * @deprecated
3081  * This is a deprecated encode slice parameter buffer, All applications
3082  * \c can use VAEncSliceParameterBufferXXX (XXX = MPEG2, HEVC, H264, JPEG)
3083  */
3084 typedef struct _VAEncSliceParameterBuffer
3085 {
3086     uint32_t start_row_number;  /* starting MB row number for this slice */
3087     uint32_t slice_height;      /* slice height measured in MB */
3088     union {
3089         struct {
3090             uint32_t is_intra   : 1;
3091             uint32_t disable_deblocking_filter_idc : 2;
3092             uint32_t uses_long_term_ref         :1;
3093             uint32_t is_long_term_ref           :1;
3094         } bits;
3095         uint32_t value;
3096     } slice_flags;
3097
3098     /** \brief Reserved bytes for future use, must be zero */
3099     uint32_t                va_reserved[VA_PADDING_LOW];
3100 } VAEncSliceParameterBuffer;
3101
3102
3103 /****************************
3104  * H.263 specific encode data structures
3105  ****************************/
3106
3107 typedef struct _VAEncSequenceParameterBufferH263
3108 {
3109     uint32_t intra_period;
3110     uint32_t bits_per_second;
3111     uint32_t frame_rate;
3112     uint32_t initial_qp;
3113     uint32_t min_qp;
3114
3115     /** \brief Reserved bytes for future use, must be zero */
3116     uint32_t                va_reserved[VA_PADDING_LOW];
3117 } VAEncSequenceParameterBufferH263;
3118
3119 typedef struct _VAEncPictureParameterBufferH263
3120 {
3121     VASurfaceID reference_picture;
3122     VASurfaceID reconstructed_picture;
3123     VABufferID coded_buf;
3124     uint16_t picture_width;
3125     uint16_t picture_height;
3126     VAEncPictureType picture_type;
3127
3128     /** \brief Reserved bytes for future use, must be zero */
3129     uint32_t                va_reserved[VA_PADDING_LOW];
3130 } VAEncPictureParameterBufferH263;
3131
3132 /****************************
3133  * MPEG-4 specific encode data structures
3134  ****************************/
3135
3136 typedef struct _VAEncSequenceParameterBufferMPEG4
3137 {
3138     uint8_t profile_and_level_indication;
3139     uint32_t intra_period;
3140     uint32_t video_object_layer_width;
3141     uint32_t video_object_layer_height;
3142     uint32_t vop_time_increment_resolution;
3143     uint32_t fixed_vop_rate;
3144     uint32_t fixed_vop_time_increment;
3145     uint32_t bits_per_second;
3146     uint32_t frame_rate;
3147     uint32_t initial_qp;
3148     uint32_t min_qp;
3149
3150     /** \brief Reserved bytes for future use, must be zero */
3151     uint32_t                va_reserved[VA_PADDING_LOW];
3152 } VAEncSequenceParameterBufferMPEG4;
3153
3154 typedef struct _VAEncPictureParameterBufferMPEG4
3155 {
3156     VASurfaceID reference_picture;
3157     VASurfaceID reconstructed_picture;
3158     VABufferID coded_buf;
3159     uint16_t picture_width;
3160     uint16_t picture_height;
3161     uint32_t modulo_time_base; /* number of 1s */
3162     uint32_t vop_time_increment;
3163     VAEncPictureType picture_type;
3164
3165     /** \brief Reserved bytes for future use, must be zero */
3166     uint32_t                va_reserved[VA_PADDING_LOW];
3167 } VAEncPictureParameterBufferMPEG4;
3168
3169
3170
3171 /** Buffer functions */
3172
3173 /**
3174  * Creates a buffer for "num_elements" elements of "size" bytes and 
3175  * initalize with "data".
3176  * if "data" is null, then the contents of the buffer data store
3177  * are undefined.
3178  * Basically there are two ways to get buffer data to the server side. One is 
3179  * to call vaCreateBuffer() with a non-null "data", which results the data being
3180  * copied to the data store on the server side.  A different method that 
3181  * eliminates this copy is to pass null as "data" when calling vaCreateBuffer(),
3182  * and then use vaMapBuffer() to map the data store from the server side to the
3183  * client address space for access.
3184  * The user must call vaDestroyBuffer() to destroy a buffer.
3185  *  Note: image buffers are created by the library, not the client. Please see 
3186  *        vaCreateImage on how image buffers are managed.
3187  */
3188 VAStatus vaCreateBuffer (
3189     VADisplay dpy,
3190     VAContextID context,
3191     VABufferType type,  /* in */
3192     unsigned int size,  /* in */
3193     unsigned int num_elements, /* in */
3194     void *data,         /* in */
3195     VABufferID *buf_id  /* out */
3196 );
3197
3198 /**
3199  * Create a buffer for given width & height get unit_size, pitch, buf_id for 2D buffer
3200  * for permb qp buffer, it will return unit_size for one MB or LCU and the pitch for alignments
3201  * can call vaMapBuffer with this Buffer ID to get virtual address.
3202  * e.g. AVC 1080P encode, 1920x1088, the size in MB is 120x68,but inside driver,
3203  * maybe it should align with 256, and one byte present one Qp.so, call the function.
3204  * then get unit_size = 1, pitch = 256. call vaMapBuffer to get the virtual address (pBuf).
3205  * then read write the memory like 2D. the size is 256x68, application can only use 120x68
3206  * pBuf + 256 is the start of next line.
3207  * different driver implementation maybe return different unit_size and pitch
3208  */
3209 VAStatus vaCreateBuffer2(
3210     VADisplay dpy,
3211     VAContextID context,
3212     VABufferType type,
3213     unsigned int width,
3214     unsigned int height,
3215     unsigned int *unit_size,
3216     unsigned int *pitch,
3217     VABufferID *buf_id
3218 );
3219
3220 /**
3221  * Convey to the server how many valid elements are in the buffer. 
3222  * e.g. if multiple slice parameters are being held in a single buffer,
3223  * this will communicate to the server the number of slice parameters
3224  * that are valid in the buffer.
3225  */
3226 VAStatus vaBufferSetNumElements (
3227     VADisplay dpy,
3228     VABufferID buf_id,  /* in */
3229     unsigned int num_elements /* in */
3230 );
3231
3232
3233 /**
3234  * device independent data structure for codedbuffer
3235  */
3236
3237 /* 
3238  * FICTURE_AVE_QP(bit7-0): The average Qp value used during this frame
3239  * LARGE_SLICE(bit8):At least one slice in the current frame was large
3240  *              enough for the encoder to attempt to limit its size.
3241  * SLICE_OVERFLOW(bit9): At least one slice in the current frame has
3242  *              exceeded the maximum slice size specified.
3243  * BITRATE_OVERFLOW(bit10): The peak bitrate was exceeded for this frame.
3244  * BITRATE_HIGH(bit11): The frame size got within the safety margin of the maximum size (VCM only)
3245  * AIR_MB_OVER_THRESHOLD: the number of MBs adapted to Intra MB
3246  */
3247 #define VA_CODED_BUF_STATUS_PICTURE_AVE_QP_MASK         0xff
3248 #define VA_CODED_BUF_STATUS_LARGE_SLICE_MASK            0x100
3249 #define VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK         0x200
3250 #define VA_CODED_BUF_STATUS_BITRATE_OVERFLOW            0x400
3251 #define VA_CODED_BUF_STATUS_BITRATE_HIGH                0x800
3252 /**
3253  * \brief The frame has exceeded the maximum requested size.
3254  *
3255  * This flag indicates that the encoded frame size exceeds the value
3256  * specified through a misc parameter buffer of type
3257  * #VAEncMiscParameterTypeMaxFrameSize.
3258  */
3259 #define VA_CODED_BUF_STATUS_FRAME_SIZE_OVERFLOW         0x1000
3260 /**
3261  * \brief the bitstream is bad or corrupt.
3262  */
3263 #define VA_CODED_BUF_STATUS_BAD_BITSTREAM               0x8000
3264 #define VA_CODED_BUF_STATUS_AIR_MB_OVER_THRESHOLD       0xff0000
3265
3266 /**
3267  * \brief The coded buffer segment status contains frame encoding passes number
3268  *
3269  * This is the mask to get the number of encoding passes from the coded
3270  * buffer segment status. 
3271  * NUMBER_PASS(bit24~bit27): the number for encoding passes executed for the coded frame.
3272  * 
3273  */
3274 #define VA_CODED_BUF_STATUS_NUMBER_PASSES_MASK          0xf000000
3275
3276 /**
3277  * \brief The coded buffer segment contains a single NAL unit. 
3278  *
3279  * This flag indicates that the coded buffer segment contains a
3280  * single NAL unit. This flag might be useful to the user for 
3281  * processing the coded buffer.
3282  */
3283 #define VA_CODED_BUF_STATUS_SINGLE_NALU                 0x10000000      
3284
3285 /**
3286  * \brief Coded buffer segment.
3287  *
3288  * #VACodedBufferSegment is an element of a linked list describing
3289  * some information on the coded buffer. The coded buffer segment
3290  * could contain either a single NAL unit, or more than one NAL unit. 
3291  * It is recommended (but not required) to return a single NAL unit 
3292  * in a coded buffer segment, and the implementation should set the 
3293  * VA_CODED_BUF_STATUS_SINGLE_NALU status flag if that is the case.
3294  */
3295 typedef  struct _VACodedBufferSegment  {
3296     /**
3297      * \brief Size of the data buffer in this segment (in bytes).
3298      */
3299     uint32_t        size;
3300     /** \brief Bit offset into the data buffer where the video data starts. */
3301     uint32_t        bit_offset;
3302     /** \brief Status set by the driver. See \c VA_CODED_BUF_STATUS_*. */
3303     uint32_t        status;
3304     /** \brief Reserved for future use. */
3305     uint32_t        reserved;
3306     /** \brief Pointer to the start of the data buffer. */
3307     void               *buf;
3308     /**
3309      * \brief Pointer to the next #VACodedBufferSegment element,
3310      * or \c NULL if there is none.
3311      */
3312     void               *next;
3313
3314     /** \brief Reserved bytes for future use, must be zero */
3315     uint32_t                va_reserved[VA_PADDING_LOW];
3316 } VACodedBufferSegment;
3317      
3318 /**
3319  * Map data store of the buffer into the client's address space
3320  * vaCreateBuffer() needs to be called with "data" set to NULL before
3321  * calling vaMapBuffer()
3322  *
3323  * if buffer type is VAEncCodedBufferType, pbuf points to link-list of
3324  * VACodedBufferSegment, and the list is terminated if "next" is NULL
3325  */
3326 VAStatus vaMapBuffer (
3327     VADisplay dpy,
3328     VABufferID buf_id,  /* in */
3329     void **pbuf         /* out */
3330 );
3331
3332 /**
3333  * After client making changes to a mapped data store, it needs to
3334  * "Unmap" it to let the server know that the data is ready to be
3335  * consumed by the server
3336  */
3337 VAStatus vaUnmapBuffer (
3338     VADisplay dpy,
3339     VABufferID buf_id   /* in */
3340 );
3341
3342 /**
3343  * After this call, the buffer is deleted and this buffer_id is no longer valid
3344  *
3345  * A buffer can be re-used and sent to the server by another Begin/Render/End
3346  * sequence if vaDestroyBuffer() is not called with this buffer.
3347  *
3348  * Note re-using a shared buffer (e.g. a slice data buffer) between the host and the
3349  * hardware accelerator can result in performance dropping.
3350  */
3351 VAStatus vaDestroyBuffer (
3352     VADisplay dpy,
3353     VABufferID buffer_id
3354 );
3355
3356 /** \brief VA buffer information */
3357 typedef struct {
3358     /** \brief Buffer handle */
3359     uintptr_t           handle;
3360     /** \brief Buffer type (See \ref VABufferType). */
3361     uint32_t            type;
3362     /**
3363      * \brief Buffer memory type (See \ref VASurfaceAttribMemoryType).
3364      *
3365      * On input to vaAcquireBufferHandle(), this field can serve as a hint
3366      * to specify the set of memory types the caller is interested in.
3367      * On successful return from vaAcquireBufferHandle(), the field is
3368      * updated with the best matching memory type.
3369      */
3370     uint32_t            mem_type;
3371     /** \brief Size of the underlying buffer. */
3372     size_t              mem_size;
3373
3374     /** \brief Reserved bytes for future use, must be zero */
3375     uint32_t                va_reserved[VA_PADDING_LOW];
3376 } VABufferInfo;
3377
3378 /**
3379  * \brief Acquires buffer handle for external API usage
3380  *
3381  * Locks the VA buffer object \ref buf_id for external API usage like
3382  * EGL or OpenCL (OCL). This function is a synchronization point. This
3383  * means that any pending operation is guaranteed to be completed
3384  * prior to returning from the function.
3385  *
3386  * If the referenced VA buffer object is the backing store of a VA
3387  * surface, then this function acts as if vaSyncSurface() on the
3388  * parent surface was called first.
3389  *
3390  * The \ref VABufferInfo argument shall be zero'ed on input. On
3391  * successful output, the data structure is filled in with all the
3392  * necessary buffer level implementation details like handle, type,
3393  * memory type and memory size.
3394  *
3395  * Note: the external API implementation, or the application, can
3396  * express the memory types it is interested in by filling in the \ref
3397  * mem_type field accordingly. On successful output, the memory type
3398  * that fits best the request and that was used is updated in the \ref
3399  * VABufferInfo data structure. If none of the supplied memory types
3400  * is supported, then a \ref VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE
3401  * error is returned.
3402  *
3403  * The \ref VABufferInfo data is valid until vaReleaseBufferHandle()
3404  * is called. Besides, no additional operation is allowed on any of
3405  * the buffer parent object until vaReleaseBufferHandle() is called.
3406  * e.g. decoding into a VA surface backed with the supplied VA buffer
3407  * object \ref buf_id would fail with a \ref VA_STATUS_ERROR_SURFACE_BUSY
3408  * error.
3409  *
3410  * Possible errors:
3411  * - \ref VA_STATUS_ERROR_UNIMPLEMENTED: the VA driver implementation
3412  *   does not support this interface
3413  * - \ref VA_STATUS_ERROR_INVALID_DISPLAY: an invalid display was supplied
3414  * - \ref VA_STATUS_ERROR_INVALID_BUFFER: an invalid buffer was supplied
3415  * - \ref VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE: the implementation
3416  *   does not support exporting buffers of the specified type
3417  * - \ref VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE: none of the requested
3418  *   memory types in \ref VABufferInfo.mem_type was supported
3419  *
3420  * @param[in] dpy               the VA display
3421  * @param[in] buf_id            the VA buffer
3422  * @param[in,out] buf_info      the associated VA buffer information
3423  * @return VA_STATUS_SUCCESS if successful
3424  */
3425 VAStatus
3426 vaAcquireBufferHandle(VADisplay dpy, VABufferID buf_id, VABufferInfo *buf_info);
3427
3428 /**
3429  * \brief Releases buffer after usage from external API
3430  *
3431  * Unlocks the VA buffer object \ref buf_id from external API usage like
3432  * EGL or OpenCL (OCL). This function is a synchronization point. This
3433  * means that any pending operation is guaranteed to be completed
3434  * prior to returning from the function.
3435  *
3436  * The \ref VABufferInfo argument shall point to the original data
3437  * structure that was obtained from vaAcquireBufferHandle(), unaltered.
3438  * This is necessary so that the VA driver implementation could
3439  * deallocate any resources that were needed.
3440  *
3441  * In any case, returning from this function invalidates any contents
3442  * in \ref VABufferInfo. i.e. the underlyng buffer handle is no longer
3443  * valid. Therefore, VA driver implementations are free to reset this
3444  * data structure to safe defaults.
3445  *
3446  * Possible errors:
3447  * - \ref VA_STATUS_ERROR_UNIMPLEMENTED: the VA driver implementation
3448  *   does not support this interface
3449  * - \ref VA_STATUS_ERROR_INVALID_DISPLAY: an invalid display was supplied
3450  * - \ref VA_STATUS_ERROR_INVALID_BUFFER: an invalid buffer was supplied
3451  * - \ref VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE: the implementation
3452  *   does not support exporting buffers of the specified type
3453  *
3454  * @param[in] dpy               the VA display
3455  * @param[in] buf_id            the VA buffer
3456  * @return VA_STATUS_SUCCESS if successful
3457  */
3458 VAStatus
3459 vaReleaseBufferHandle(VADisplay dpy, VABufferID buf_id);
3460
3461 /** @name vaExportSurfaceHandle() flags
3462  *
3463  * @{
3464  */
3465 /** Export surface to be read by external API. */
3466 #define VA_EXPORT_SURFACE_READ_ONLY        0x0001
3467 /** Export surface to be written by external API. */
3468 #define VA_EXPORT_SURFACE_WRITE_ONLY       0x0002
3469 /** Export surface to be both read and written by external API. */
3470 #define VA_EXPORT_SURFACE_READ_WRITE       0x0003
3471 /** Export surface with separate layers.
3472  *
3473  * For example, NV12 surfaces should be exported as two separate
3474  * planes for luma and chroma.
3475  */
3476 #define VA_EXPORT_SURFACE_SEPARATE_LAYERS  0x0004
3477 /** Export surface with composed layers.
3478  *
3479  * For example, NV12 surfaces should be exported as a single NV12
3480  * composed object.
3481  */
3482 #define VA_EXPORT_SURFACE_COMPOSED_LAYERS  0x0008
3483
3484 /** @} */
3485
3486 /**
3487  * \brief Export a handle to a surface for use with an external API
3488  *
3489  * The exported handles are owned by the caller, and the caller is
3490  * responsible for freeing them when no longer needed (e.g. by closing
3491  * DRM PRIME file descriptors).
3492  *
3493  * This does not perform any synchronisation.  If the contents of the
3494  * surface will be read, vaSyncSurface() must be called before doing so.
3495  * If the contents of the surface are written, then all operations must
3496  * be completed externally before using the surface again by via VA-API
3497  * functions.
3498  *
3499  * @param[in] dpy          VA display.
3500  * @param[in] surface_id   Surface to export.
3501  * @param[in] mem_type     Memory type to export to.
3502  * @param[in] flags        Combination of flags to apply
3503  *   (VA_EXPORT_SURFACE_*).
3504  * @param[out] descriptor  Pointer to the descriptor structure to fill
3505  *   with the handle details.  The type of this structure depends on
3506  *   the value of mem_type.
3507  *
3508  * @return Status code:
3509  * - VA_STATUS_SUCCESS:    Success.
3510  * - VA_STATUS_ERROR_INVALID_DISPLAY:  The display is not valid.
3511  * - VA_STATUS_ERROR_UNIMPLEMENTED:  The driver does not implement
3512  *     this interface.
3513  * - VA_STATUS_ERROR_INVALID_SURFACE:  The surface is not valid, or
3514  *     the surface is not exportable in the specified way.
3515  * - VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE:  The driver does not
3516  *     support exporting surfaces to the specified memory type.
3517  */
3518 VAStatus vaExportSurfaceHandle(VADisplay dpy,
3519                                VASurfaceID surface_id,
3520                                uint32_t mem_type, uint32_t flags,
3521                                void *descriptor);
3522
3523 /**
3524  * Render (Video Decode/Encode/Processing) Pictures
3525  *
3526  * A picture represents either a frame or a field.
3527  *
3528  * The Begin/Render/End sequence sends the video decode/encode/processing buffers
3529  * to the server
3530  */
3531
3532 /**
3533  * Get ready for a video pipeline
3534  * - decode a picture to a target surface
3535  * - encode a picture from a target surface
3536  * - process a picture to a target surface
3537  */
3538 VAStatus vaBeginPicture (
3539     VADisplay dpy,
3540     VAContextID context,
3541     VASurfaceID render_target
3542 );
3543
3544 /**
3545  * Send video decode, encode or processing buffers to the server.
3546  */
3547 VAStatus vaRenderPicture (
3548     VADisplay dpy,
3549     VAContextID context,
3550     VABufferID *buffers,
3551     int num_buffers
3552 );
3553
3554 /**
3555  * Make the end of rendering for a picture. 
3556  * The server should start processing all pending operations for this 
3557  * surface. This call is non-blocking. The client can start another 
3558  * Begin/Render/End sequence on a different render target.
3559  * if VAContextID used in this function previously successfully passed
3560  * vaMFAddContext call, real processing will be started during vaMFSubmit
3561  */
3562 VAStatus vaEndPicture (
3563     VADisplay dpy,
3564     VAContextID context
3565 );
3566
3567 /**
3568  * Make the end of rendering for a pictures in contexts passed with submission.
3569  * The server should start processing all pending operations for contexts.
3570  * All contexts passed should be associated through vaMFAddContext
3571  * and call sequence Begin/Render/End performed.
3572  * This call is non-blocking. The client can start another
3573  * Begin/Render/End/vaMFSubmit sequence on a different render targets.
3574  * Return values:
3575  * VA_STATUS_SUCCESS - operation successful, context was removed.
3576  * VA_STATUS_ERROR_INVALID_CONTEXT - mf_context or one of contexts are invalid
3577  * due to mf_context not created or one of contexts not assotiated with mf_context
3578  * through vaAddContext.
3579  * VA_STATUS_ERROR_INVALID_PARAMETER - one of context has not submitted it's frame
3580  * through vaBeginPicture vaRenderPicture vaEndPicture call sequence.
3581  * dpy: display
3582  * mf_context: Multi-Frame context
3583  * contexts: list of contexts submitting their tasks for multi-frame operation.
3584  * num_contexts: number of passed contexts.
3585  */
3586 VAStatus vaMFSubmit (
3587     VADisplay dpy,
3588     VAMFContextID mf_context,
3589     VAContextID * contexts,
3590     int num_contexts
3591 );
3592
3593 /*
3594
3595 Synchronization 
3596
3597 */
3598
3599 /**
3600  * This function blocks until all pending operations on the render target
3601  * have been completed.  Upon return it is safe to use the render target for a 
3602  * different picture. 
3603  */
3604 VAStatus vaSyncSurface (
3605     VADisplay dpy,
3606     VASurfaceID render_target
3607 );
3608
3609 typedef enum
3610 {
3611     VASurfaceRendering  = 1, /* Rendering in progress */ 
3612     VASurfaceDisplaying = 2, /* Displaying in progress (not safe to render into it) */ 
3613                              /* this status is useful if surface is used as the source */
3614                              /* of an overlay */
3615     VASurfaceReady      = 4, /* not being rendered or displayed */
3616     VASurfaceSkipped    = 8  /* Indicate a skipped frame during encode */
3617 } VASurfaceStatus;
3618
3619 /**
3620  * Find out any pending ops on the render target 
3621  */
3622 VAStatus vaQuerySurfaceStatus (
3623     VADisplay dpy,
3624     VASurfaceID render_target,
3625     VASurfaceStatus *status     /* out */
3626 );
3627
3628 typedef enum
3629 {
3630     VADecodeSliceMissing            = 0,
3631     VADecodeMBError                 = 1,
3632 } VADecodeErrorType;
3633
3634 /**
3635  * Client calls vaQuerySurfaceError with VA_STATUS_ERROR_DECODING_ERROR, server side returns
3636  * an array of structure VASurfaceDecodeMBErrors, and the array is terminated by setting status=-1
3637 */
3638 typedef struct _VASurfaceDecodeMBErrors
3639 {
3640     int32_t status; /* 1 if hardware has returned detailed info below, -1 means this record is invalid */
3641     uint32_t start_mb; /* start mb address with errors */
3642     uint32_t end_mb;  /* end mb address with errors */
3643     VADecodeErrorType decode_error_type;
3644     uint32_t num_mb;   /* number of mbs with errors */
3645     /** \brief Reserved bytes for future use, must be zero */
3646     uint32_t                va_reserved[VA_PADDING_LOW - 1];
3647 } VASurfaceDecodeMBErrors;
3648
3649 /**
3650  * After the application gets VA_STATUS_ERROR_DECODING_ERROR after calling vaSyncSurface(),
3651  * it can call vaQuerySurfaceError to find out further details on the particular error.
3652  * VA_STATUS_ERROR_DECODING_ERROR should be passed in as "error_status",
3653  * upon the return, error_info will point to an array of _VASurfaceDecodeMBErrors structure,
3654  * which is allocated and filled by libVA with detailed information on the missing or error macroblocks.
3655  * The array is terminated if "status==-1" is detected.
3656  */
3657 VAStatus vaQuerySurfaceError(
3658     VADisplay dpy,
3659     VASurfaceID surface,
3660     VAStatus error_status,
3661     void **error_info
3662 );
3663
3664 /**
3665  * Images and Subpictures
3666  * VAImage is used to either get the surface data to client memory, or 
3667  * to copy image data in client memory to a surface. 
3668  * Both images, subpictures and surfaces follow the same 2D coordinate system where origin 
3669  * is at the upper left corner with positive X to the right and positive Y down
3670  */
3671 #define VA_FOURCC(ch0, ch1, ch2, ch3) \
3672     ((unsigned long)(unsigned char) (ch0) | ((unsigned long)(unsigned char) (ch1) << 8) | \
3673     ((unsigned long)(unsigned char) (ch2) << 16) | ((unsigned long)(unsigned char) (ch3) << 24 ))
3674
3675 /* Pre-defined fourcc codes. */
3676
3677 /** NV12: two-plane 8-bit YUV 4:2:0.
3678  * The first plane contains Y, the second plane contains U and V in pairs of bytes.
3679  */
3680 #define VA_FOURCC_NV12          0x3231564E
3681 /** NV21: two-plane 8-bit YUV 4:2:0.
3682  * Same as NV12, but with U and V swapped.
3683  */
3684 #define VA_FOURCC_NV21          0x3132564E
3685
3686 /** AI44: packed 4-bit YA.
3687  *
3688  * The bottom half of each byte contains luma, the top half contains alpha.
3689  */
3690 #define VA_FOURCC_AI44          0x34344149
3691
3692 /** RGBA: packed 8-bit RGBA.
3693  *
3694  * Four bytes per pixel: red, green, blue, alpha.
3695  */
3696 #define VA_FOURCC_RGBA          0x41424752
3697 /** RGBX: packed 8-bit RGB.
3698  *
3699  * Four bytes per pixel: red, green, blue, unspecified.
3700  */
3701 #define VA_FOURCC_RGBX          0x58424752
3702 /** BGRA: packed 8-bit RGBA.
3703  *
3704  * Four bytes per pixel: blue, green, red, alpha.
3705  */
3706 #define VA_FOURCC_BGRA          0x41524742
3707 /** BGRX: packed 8-bit RGB.
3708  *
3709  * Four bytes per pixel: blue, green, red, unspecified.
3710  */
3711 #define VA_FOURCC_BGRX          0x58524742
3712 /** ARGB: packed 8-bit RGBA.
3713  *
3714  * Four bytes per pixel: alpha, red, green, blue.
3715  */
3716 #define VA_FOURCC_ARGB          0x42475241
3717 /** XRGB: packed 8-bit RGB.
3718  *
3719  * Four bytes per pixel: unspecified, red, green, blue.
3720  */
3721 #define VA_FOURCC_XRGB          0x42475258
3722 /** ABGR: packed 8-bit RGBA.
3723  *
3724  * Four bytes per pixel: alpha, blue, green, red.
3725  */
3726 #define VA_FOURCC_ABGR          0x52474241
3727 /** XBGR: packed 8-bit RGB.
3728  *
3729  * Four bytes per pixel: unspecified, blue, green, red.
3730  */
3731 #define VA_FOURCC_XBGR          0x52474258
3732
3733 /** UYUV: packed 8-bit YUV 4:2:2.
3734  *
3735  * Four bytes per pair of pixels: U, Y, U, V.
3736  */
3737 #define VA_FOURCC_UYVY          0x59565955
3738 /** YUY2: packed 8-bit YUV 4:2:2.
3739  *
3740  * Four bytes per pair of pixels: Y, U, Y, V.
3741  */
3742 #define VA_FOURCC_YUY2          0x32595559
3743 /** AYUV: packed 8-bit YUVA 4:4:4.
3744  *
3745  * Four bytes per pixel: A, Y, U, V.
3746  */
3747 #define VA_FOURCC_AYUV          0x56555941
3748 /** NV11: two-plane 8-bit YUV 4:1:1.
3749  *
3750  * The first plane contains Y, the second plane contains U and V in pairs of bytes.
3751  */
3752 #define VA_FOURCC_NV11          0x3131564e
3753 /** YV12: three-plane 8-bit YUV 4:2:0.
3754  *
3755  * The three planes contain Y, V and U respectively.
3756  */
3757 #define VA_FOURCC_YV12          0x32315659
3758 /** P208: two-plane 8-bit YUV 4:2:2.
3759  *
3760  * The first plane contains Y, the second plane contains U and V in pairs of bytes.
3761  */
3762 #define VA_FOURCC_P208          0x38303250
3763 /** I420: three-plane 8-bit YUV 4:2:0.
3764  *
3765  * The three planes contain Y, U and V respectively.
3766  */
3767 #define VA_FOURCC_I420          0x30323449
3768 /** YV24: three-plane 8-bit YUV 4:4:4.
3769  *
3770  * The three planes contain Y, V and U respectively.
3771  */
3772 #define VA_FOURCC_YV24          0x34325659
3773 /** YV32: four-plane 8-bit YUVA 4:4:4
3774  *
3775  * The four planes contain Y, V, U and A respectively.
3776  */
3777 #define VA_FOURCC_YV32          0x32335659
3778 /** Y800: 8-bit greyscale.
3779  */
3780 #define VA_FOURCC_Y800          0x30303859
3781 /** IMC3: three-plane 8-bit YUV 4:2:0.
3782  *
3783  * Equivalent to YV12, but with the additional constraint that the pitch of all three planes
3784  * must be the same.
3785  */
3786 #define VA_FOURCC_IMC3          0x33434D49
3787 /** 411P: three-plane 8-bit YUV 4:1:1.
3788  *
3789  * The three planes contain Y, U and V respectively.
3790  */
3791 #define VA_FOURCC_411P          0x50313134
3792 /** 411R: three-plane 8-bit YUV.
3793  *
3794  * The subsampling is the transpose of 4:1:1 - full chroma appears on every fourth line.
3795  * The three planes contain Y, U and V respectively.
3796  */
3797 #define VA_FOURCC_411R          0x52313134
3798 /** 422H: three-plane 8-bit YUV 4:2:2.
3799  *
3800  * The three planes contain Y, U and V respectively.
3801  */
3802 #define VA_FOURCC_422H          0x48323234
3803 /** 422V: three-plane 8-bit YUV 4:4:0.
3804  *
3805  * The three planes contain Y, U and V respectively.
3806  */
3807 #define VA_FOURCC_422V          0x56323234
3808 /** 444P: three-plane 8-bit YUV 4:4:4.
3809  *
3810  * The three planes contain Y, U and V respectively.
3811  */
3812 #define VA_FOURCC_444P          0x50343434
3813
3814 /** RGBP: three-plane 8-bit RGB.
3815  *
3816  * The three planes contain red, green and blue respectively.
3817  */
3818 #define VA_FOURCC_RGBP          0x50424752
3819 /** BGRP: three-plane 8-bit RGB.
3820  *
3821  * The three planes contain blue, green and red respectively.
3822  */
3823 #define VA_FOURCC_BGRP          0x50524742
3824 /** RG16: packed 5/6-bit RGB.
3825  *
3826  * Each pixel is a two-byte little-endian value.
3827  * Red, green and blue are found in bits 15:11, 10:5, 4:0 respectively.
3828  */
3829 #define VA_FOURCC_RGB565        0x36314752
3830 /** BG16: packed 5/6-bit RGB.
3831  *
3832  * Each pixel is a two-byte little-endian value.
3833  * Blue, green and red are found in bits 15:11, 10:5, 4:0 respectively.
3834  */
3835 #define VA_FOURCC_BGR565        0x36314742
3836
3837 /** Y210: packed 10-bit YUV 4:2:2.
3838  *
3839  * Eight bytes represent a pair of pixels.  Each sample is a two-byte little-endian value,
3840  * with the bottom six bits ignored.  The samples are in the order Y, U, Y, V.
3841  */
3842 #define VA_FOURCC_Y210          0x30313259
3843 /** Y216: packed 16-bit YUV 4:2:2.
3844  *
3845  * Eight bytes represent a pair of pixels.  Each sample is a two-byte little-endian value.
3846  * The samples are in the order Y, U, Y, V.
3847  */
3848 #define VA_FOURCC_Y216          0x36313259
3849 /** Y410: packed 10-bit YUVA 4:4:4.
3850  *
3851  * Each pixel is a four-byte little-endian value.
3852  * A, V, Y, U are found in bits 31:30, 29:20, 19:10, 9:0 respectively.
3853  */
3854 #define VA_FOURCC_Y410          0x30313459
3855 /** Y416: packed 16-bit YUVA 4:4:4.
3856  *
3857  * Each pixel is a set of four samples, each of which is a two-byte little-endian value.
3858  * The samples are in the order A, V, Y, U.
3859  */
3860 #define VA_FOURCC_Y416          0x36313459
3861
3862 /** YV16: three-plane 8-bit YUV 4:2:2.
3863  *
3864  * The three planes contain Y, V and U respectively.
3865  */
3866 #define VA_FOURCC_YV16          0x36315659
3867 /** P010: two-plane 10-bit YUV 4:2:0.
3868  *
3869  * Each sample is a two-byte little-endian value with the bottom six bits ignored.
3870  * The first plane contains Y, the second plane contains U and V in pairs of samples.
3871  */
3872 #define VA_FOURCC_P010          0x30313050
3873 /** P016: two-plane 16-bit YUV 4:2:0.
3874  *
3875  * Each sample is a two-byte little-endian value.  The first plane contains Y, the second
3876  * plane contains U and V in pairs of samples.
3877  */
3878 #define VA_FOURCC_P016          0x36313050
3879
3880 /** I010: three-plane 10-bit YUV 4:2:0.
3881  *
3882  * Each sample is a two-byte little-endian value with the top six bits ignored.
3883  * The three planes contain Y, V and U respectively.
3884  */
3885 #define VA_FOURCC_I010          0x30313049
3886
3887 /** IYUV: three-plane 8-bit YUV 4:2:0.
3888  *
3889  * @deprecated Use I420 instead.
3890  */
3891 #define VA_FOURCC_IYUV          0x56555949
3892
3893 /* byte order */
3894 #define VA_LSB_FIRST            1
3895 #define VA_MSB_FIRST            2
3896
3897 typedef struct _VAImageFormat
3898 {
3899     uint32_t    fourcc;
3900     uint32_t    byte_order; /* VA_LSB_FIRST, VA_MSB_FIRST */
3901     uint32_t    bits_per_pixel;
3902     /* for RGB formats */
3903     uint32_t    depth; /* significant bits per pixel */
3904     uint32_t    red_mask;
3905     uint32_t    green_mask;
3906     uint32_t    blue_mask;
3907     uint32_t    alpha_mask;
3908
3909     /** \brief Reserved bytes for future use, must be zero */
3910     uint32_t                va_reserved[VA_PADDING_LOW];
3911 } VAImageFormat;
3912
3913 typedef VAGenericID VAImageID;
3914
3915 typedef struct _VAImage
3916 {
3917     VAImageID           image_id; /* uniquely identify this image */
3918     VAImageFormat       format;
3919     VABufferID          buf;    /* image data buffer */
3920     /*
3921      * Image data will be stored in a buffer of type VAImageBufferType to facilitate
3922      * data store on the server side for optimal performance. The buffer will be 
3923      * created by the CreateImage function, and proper storage allocated based on the image
3924      * size and format. This buffer is managed by the library implementation, and 
3925      * accessed by the client through the buffer Map/Unmap functions.
3926      */
3927     uint16_t    width; 
3928     uint16_t    height;
3929     uint32_t    data_size;
3930     uint32_t    num_planes;     /* can not be greater than 3 */
3931     /* 
3932      * An array indicating the scanline pitch in bytes for each plane.
3933      * Each plane may have a different pitch. Maximum 3 planes for planar formats
3934      */
3935     uint32_t    pitches[3];
3936     /* 
3937      * An array indicating the byte offset from the beginning of the image data 
3938      * to the start of each plane.
3939      */
3940     uint32_t    offsets[3];
3941
3942     /* The following fields are only needed for paletted formats */
3943     int32_t num_palette_entries;   /* set to zero for non-palette images */
3944     /* 
3945      * Each component is one byte and entry_bytes indicates the number of components in 
3946      * each entry (eg. 3 for YUV palette entries). set to zero for non-palette images   
3947      */
3948     int32_t entry_bytes; 
3949     /*
3950      * An array of ascii characters describing the order of the components within the bytes.
3951      * Only entry_bytes characters of the string are used.
3952      */
3953     int8_t component_order[4];
3954
3955     /** \brief Reserved bytes for future use, must be zero */
3956     uint32_t                va_reserved[VA_PADDING_LOW];
3957 } VAImage;
3958
3959 /** Get maximum number of image formats supported by the implementation */
3960 int vaMaxNumImageFormats (
3961     VADisplay dpy
3962 );
3963
3964 /**
3965  * Query supported image formats 
3966  * The caller must provide a "format_list" array that can hold at
3967  * least vaMaxNumImageFormats() entries. The actual number of formats
3968  * returned in "format_list" is returned in "num_formats".
3969  */
3970 VAStatus vaQueryImageFormats (
3971     VADisplay dpy,
3972     VAImageFormat *format_list, /* out */
3973     int *num_formats            /* out */
3974 );
3975
3976 /**
3977  * Create a VAImage structure
3978  * The width and height fields returned in the VAImage structure may get 
3979  * enlarged for some YUV formats. Upon return from this function, 
3980  * image->buf has been created and proper storage allocated by the library. 
3981  * The client can access the image through the Map/Unmap calls.
3982  */
3983 VAStatus vaCreateImage (
3984     VADisplay dpy,
3985     VAImageFormat *format,
3986     int width,
3987     int height,
3988     VAImage *image      /* out */
3989 );
3990
3991 /**
3992  * Should call DestroyImage before destroying the surface it is bound to
3993  */
3994 VAStatus vaDestroyImage (
3995     VADisplay dpy,
3996     VAImageID image
3997 );
3998
3999 VAStatus vaSetImagePalette (
4000     VADisplay dpy,
4001     VAImageID image,
4002     /* 
4003      * pointer to an array holding the palette data.  The size of the array is 
4004      * num_palette_entries * entry_bytes in size.  The order of the components 
4005      * in the palette is described by the component_order in VAImage struct    
4006      */
4007     unsigned char *palette 
4008 );
4009
4010 /**
4011  * Retrive surface data into a VAImage
4012  * Image must be in a format supported by the implementation
4013  */
4014 VAStatus vaGetImage (
4015     VADisplay dpy,
4016     VASurfaceID surface,
4017     int x,      /* coordinates of the upper left source pixel */
4018     int y,
4019     unsigned int width, /* width and height of the region */
4020     unsigned int height,
4021     VAImageID image
4022 );
4023
4024 /**
4025  * Copy data from a VAImage to a surface
4026  * Image must be in a format supported by the implementation
4027  * Returns a VA_STATUS_ERROR_SURFACE_BUSY if the surface
4028  * shouldn't be rendered into when this is called
4029  */
4030 VAStatus vaPutImage (
4031     VADisplay dpy,
4032     VASurfaceID surface,
4033     VAImageID image,
4034     int src_x,
4035     int src_y,
4036     unsigned int src_width,
4037     unsigned int src_height,
4038     int dest_x,
4039     int dest_y,
4040     unsigned int dest_width,
4041     unsigned int dest_height
4042 );
4043
4044 /**
4045  * Derive an VAImage from an existing surface.
4046  * This interface will derive a VAImage and corresponding image buffer from
4047  * an existing VA Surface. The image buffer can then be mapped/unmapped for
4048  * direct CPU access. This operation is only possible on implementations with
4049  * direct rendering capabilities and internal surface formats that can be
4050  * represented with a VAImage. When the operation is not possible this interface
4051  * will return VA_STATUS_ERROR_OPERATION_FAILED. Clients should then fall back
4052  * to using vaCreateImage + vaPutImage to accomplish the same task in an
4053  * indirect manner.
4054  *
4055  * Implementations should only return success when the resulting image buffer
4056  * would be useable with vaMap/Unmap.
4057  *
4058  * When directly accessing a surface special care must be taken to insure
4059  * proper synchronization with the graphics hardware. Clients should call
4060  * vaQuerySurfaceStatus to insure that a surface is not the target of concurrent
4061  * rendering or currently being displayed by an overlay.
4062  *
4063  * Additionally nothing about the contents of a surface should be assumed
4064  * following a vaPutSurface. Implementations are free to modify the surface for
4065  * scaling or subpicture blending within a call to vaPutImage.
4066  *
4067  * Calls to vaPutImage or vaGetImage using the same surface from which the image
4068  * has been derived will return VA_STATUS_ERROR_SURFACE_BUSY. vaPutImage or
4069  * vaGetImage with other surfaces is supported.
4070  *
4071  * An image created with vaDeriveImage should be freed with vaDestroyImage. The
4072  * image and image buffer structures will be destroyed; however, the underlying
4073  * surface will remain unchanged until freed with vaDestroySurfaces.
4074  */
4075 VAStatus vaDeriveImage (
4076     VADisplay dpy,
4077     VASurfaceID surface,
4078     VAImage *image      /* out */
4079 );
4080
4081 /**
4082  * Subpictures 
4083  * Subpicture is a special type of image that can be blended 
4084  * with a surface during vaPutSurface(). Subpicture can be used to render
4085  * DVD sub-titles or closed captioning text etc.  
4086  */
4087
4088 typedef VAGenericID VASubpictureID;
4089
4090 /** Get maximum number of subpicture formats supported by the implementation */
4091 int vaMaxNumSubpictureFormats (
4092     VADisplay dpy
4093 );
4094
4095 /** flags for subpictures */
4096 #define VA_SUBPICTURE_CHROMA_KEYING                     0x0001
4097 #define VA_SUBPICTURE_GLOBAL_ALPHA                      0x0002
4098 #define VA_SUBPICTURE_DESTINATION_IS_SCREEN_COORD       0x0004
4099 /**
4100  * Query supported subpicture formats 
4101  * The caller must provide a "format_list" array that can hold at
4102  * least vaMaxNumSubpictureFormats() entries. The flags arrary holds the flag 
4103  * for each format to indicate additional capabilities for that format. The actual 
4104  * number of formats returned in "format_list" is returned in "num_formats".
4105  *  flags: returned value to indicate addtional capabilities
4106  *         VA_SUBPICTURE_CHROMA_KEYING - supports chroma-keying
4107  *         VA_SUBPICTURE_GLOBAL_ALPHA - supports global alpha
4108  *         VA_SUBPICTURE_DESTINATION_IS_SCREEN_COORD - supports unscaled screen relative subpictures for On Screen Display
4109  */
4110
4111 VAStatus vaQuerySubpictureFormats (
4112     VADisplay dpy,
4113     VAImageFormat *format_list, /* out */
4114     unsigned int *flags,        /* out */
4115     unsigned int *num_formats   /* out */
4116 );
4117
4118 /**
4119  * Subpictures are created with an image associated. 
4120  */
4121 VAStatus vaCreateSubpicture (
4122     VADisplay dpy,
4123     VAImageID image,
4124     VASubpictureID *subpicture  /* out */
4125 );
4126
4127 /**
4128  * Destroy the subpicture before destroying the image it is assocated to
4129  */
4130 VAStatus vaDestroySubpicture (
4131     VADisplay dpy,
4132     VASubpictureID subpicture
4133 );
4134
4135 /**
4136  * Bind an image to the subpicture. This image will now be associated with 
4137  * the subpicture instead of the one at creation.
4138  */
4139 VAStatus vaSetSubpictureImage (
4140     VADisplay dpy,
4141     VASubpictureID subpicture,
4142     VAImageID image
4143 );
4144
4145 /**
4146  * If chromakey is enabled, then the area where the source value falls within
4147  * the chromakey [min, max] range is transparent
4148  * The chromakey component format is the following:
4149  *  For RGB: [0:7] Red [8:15] Blue [16:23] Green   
4150  *  For YUV: [0:7] V [8:15] U [16:23] Y
4151  * The chromakey mask can be used to mask out certain components for chromakey
4152  * comparision
4153  */
4154 VAStatus vaSetSubpictureChromakey (
4155     VADisplay dpy,
4156     VASubpictureID subpicture,
4157     unsigned int chromakey_min,
4158     unsigned int chromakey_max,
4159     unsigned int chromakey_mask
4160 );
4161
4162 /**
4163  * Global alpha value is between 0 and 1. A value of 1 means fully opaque and 
4164  * a value of 0 means fully transparent. If per-pixel alpha is also specified then
4165  * the overall alpha is per-pixel alpha multiplied by the global alpha
4166  */
4167 VAStatus vaSetSubpictureGlobalAlpha (
4168     VADisplay dpy,
4169     VASubpictureID subpicture,
4170     float global_alpha 
4171 );
4172
4173 /**
4174  * vaAssociateSubpicture associates the subpicture with target_surfaces.
4175  * It defines the region mapping between the subpicture and the target  
4176  * surfaces through source and destination rectangles (with the same width and height).
4177  * Both will be displayed at the next call to vaPutSurface.  Additional
4178  * associations before the call to vaPutSurface simply overrides the association.
4179  */
4180 VAStatus vaAssociateSubpicture (
4181     VADisplay dpy,
4182     VASubpictureID subpicture,
4183     VASurfaceID *target_surfaces,
4184     int num_surfaces,
4185     int16_t src_x, /* upper left offset in subpicture */
4186     int16_t src_y,
4187     uint16_t src_width,
4188     uint16_t src_height,
4189     int16_t dest_x, /* upper left offset in surface */
4190     int16_t dest_y,
4191     uint16_t dest_width,
4192     uint16_t dest_height,
4193     /*
4194      * whether to enable chroma-keying, global-alpha, or screen relative mode
4195      * see VA_SUBPICTURE_XXX values
4196      */
4197     uint32_t flags
4198 );
4199
4200 /**
4201  * vaDeassociateSubpicture removes the association of the subpicture with target_surfaces.
4202  */
4203 VAStatus vaDeassociateSubpicture (
4204     VADisplay dpy,
4205     VASubpictureID subpicture,
4206     VASurfaceID *target_surfaces,
4207     int num_surfaces
4208 );
4209
4210 /**
4211  * Display attributes
4212  * Display attributes are used to control things such as contrast, hue, saturation,
4213  * brightness etc. in the rendering process.  The application can query what
4214  * attributes are supported by the driver, and then set the appropriate attributes
4215  * before calling vaPutSurface()
4216  */
4217 /* PowerVR IEP Lite attributes */
4218 typedef enum
4219 {
4220     VADISPLAYATTRIB_BLE_OFF              = 0x00,
4221     VADISPLAYATTRIB_BLE_LOW,
4222     VADISPLAYATTRIB_BLE_MEDIUM,
4223     VADISPLAYATTRIB_BLE_HIGH,
4224     VADISPLAYATTRIB_BLE_NONE,
4225 } VADisplayAttribBLEMode;
4226
4227 /** attribute value for VADisplayAttribRotation   */
4228 #define VA_ROTATION_NONE        0x00000000
4229 #define VA_ROTATION_90          0x00000001
4230 #define VA_ROTATION_180         0x00000002
4231 #define VA_ROTATION_270         0x00000003
4232 /**@}*/
4233
4234 /**
4235  * @name Mirroring directions
4236  *
4237  * Those values could be used for VADisplayAttribMirror attribute or
4238  * VAProcPipelineParameterBuffer::mirror_state.
4239
4240  */
4241 /**@{*/
4242 /** \brief No Mirroring. */
4243 #define VA_MIRROR_NONE              0x00000000
4244 /** \brief Horizontal Mirroring. */
4245 #define VA_MIRROR_HORIZONTAL        0x00000001
4246 /** \brief Vertical Mirroring. */
4247 #define VA_MIRROR_VERTICAL          0x00000002
4248 /**@}*/
4249
4250 /** attribute value for VADisplayAttribOutOfLoopDeblock */
4251 #define VA_OOL_DEBLOCKING_FALSE 0x00000000
4252 #define VA_OOL_DEBLOCKING_TRUE  0x00000001
4253
4254 /** Render mode */
4255 #define VA_RENDER_MODE_UNDEFINED           0
4256 #define VA_RENDER_MODE_LOCAL_OVERLAY       1
4257 #define VA_RENDER_MODE_LOCAL_GPU           2
4258 #define VA_RENDER_MODE_EXTERNAL_OVERLAY    4
4259 #define VA_RENDER_MODE_EXTERNAL_GPU        8
4260
4261 /** Render device */
4262 #define VA_RENDER_DEVICE_UNDEFINED  0
4263 #define VA_RENDER_DEVICE_LOCAL      1
4264 #define VA_RENDER_DEVICE_EXTERNAL   2
4265
4266 /** Currently defined display attribute types */
4267 typedef enum
4268 {
4269     VADisplayAttribBrightness           = 0,
4270     VADisplayAttribContrast             = 1,
4271     VADisplayAttribHue                  = 2,
4272     VADisplayAttribSaturation           = 3,
4273     /* client can specifiy a background color for the target window
4274      * the new feature of video conference,
4275      * the uncovered area of the surface is filled by this color
4276      * also it will blend with the decoded video color
4277      */
4278     VADisplayAttribBackgroundColor      = 4,
4279     /*
4280      * this is a gettable only attribute. For some implementations that use the
4281      * hardware overlay, after PutSurface is called, the surface can not be    
4282      * re-used until after the subsequent PutSurface call. If this is the case 
4283      * then the value for this attribute will be set to 1 so that the client   
4284      * will not attempt to re-use the surface right after returning from a call
4285      * to PutSurface.
4286      *
4287      * Don't use it, use flag VASurfaceDisplaying of vaQuerySurfaceStatus since
4288      * driver may use overlay or GPU alternatively
4289      */
4290     VADisplayAttribDirectSurface       = 5,
4291     VADisplayAttribRotation            = 6,     
4292     VADisplayAttribOutofLoopDeblock    = 7,
4293
4294     /* PowerVR IEP Lite specific attributes */
4295     VADisplayAttribBLEBlackMode        = 8,
4296     VADisplayAttribBLEWhiteMode        = 9,
4297     VADisplayAttribBlueStretch         = 10,
4298     VADisplayAttribSkinColorCorrection = 11,
4299     /*
4300      * For type VADisplayAttribCSCMatrix, "value" field is a pointer to the color
4301      * conversion matrix. Each element in the matrix is float-point
4302      */
4303     VADisplayAttribCSCMatrix           = 12,
4304     /* specify the constant color used to blend with video surface
4305      * Cd = Cv*Cc*Ac + Cb *(1 - Ac) C means the constant RGB
4306      *      d: the final color to overwrite into the frame buffer 
4307      *      v: decoded video after color conversion, 
4308      *      c: video color specified by VADisplayAttribBlendColor
4309      *      b: background color of the drawable
4310      */
4311     VADisplayAttribBlendColor          = 13,
4312     /*
4313      * Indicate driver to skip painting color key or not.
4314      * only applicable if the render is overlay
4315      */
4316     VADisplayAttribOverlayAutoPaintColorKey   = 14,
4317     /*
4318      * customized overlay color key, the format is RGB888
4319      * [23:16] = Red, [15:08] = Green, [07:00] = Blue.
4320      */
4321     VADisplayAttribOverlayColorKey      = 15,
4322     /*
4323      * The hint for the implementation of vaPutSurface
4324      * normally, the driver could use an overlay or GPU to render the surface on the screen
4325      * this flag provides APP the flexibity to switch the render dynamically
4326      */
4327     VADisplayAttribRenderMode           = 16,
4328     /*
4329      * specify if vaPutSurface needs to render into specified monitors
4330      * one example is that one external monitor (e.g. HDMI) is enabled, 
4331      * but the window manager is not aware of it, and there is no associated drawable
4332      */
4333     VADisplayAttribRenderDevice        = 17,
4334     /*
4335      * specify vaPutSurface render area if there is no drawable on the monitor
4336      */
4337     VADisplayAttribRenderRect          = 18,
4338 } VADisplayAttribType;
4339
4340 /* flags for VADisplayAttribute */
4341 #define VA_DISPLAY_ATTRIB_NOT_SUPPORTED 0x0000
4342 #define VA_DISPLAY_ATTRIB_GETTABLE      0x0001
4343 #define VA_DISPLAY_ATTRIB_SETTABLE      0x0002
4344
4345 typedef struct _VADisplayAttribute
4346 {
4347     VADisplayAttribType type;
4348     int32_t min_value;
4349     int32_t max_value;
4350     int32_t value;      /* used by the set/get attribute functions */
4351 /* flags can be VA_DISPLAY_ATTRIB_GETTABLE or VA_DISPLAY_ATTRIB_SETTABLE or OR'd together */
4352     uint32_t flags;
4353
4354     /** \brief Reserved bytes for future use, must be zero */
4355     uint32_t                va_reserved[VA_PADDING_LOW];
4356 } VADisplayAttribute;
4357
4358 /** Get maximum number of display attributs supported by the implementation */
4359 int vaMaxNumDisplayAttributes (
4360     VADisplay dpy
4361 );
4362
4363 /**
4364  * Query display attributes 
4365  * The caller must provide a "attr_list" array that can hold at
4366  * least vaMaxNumDisplayAttributes() entries. The actual number of attributes
4367  * returned in "attr_list" is returned in "num_attributes".
4368  */
4369 VAStatus vaQueryDisplayAttributes (
4370     VADisplay dpy,
4371     VADisplayAttribute *attr_list,      /* out */
4372     int *num_attributes                 /* out */
4373 );
4374
4375 /**
4376  * Get display attributes 
4377  * This function returns the current attribute values in "attr_list".
4378  * Only attributes returned with VA_DISPLAY_ATTRIB_GETTABLE set in the "flags" field
4379  * from vaQueryDisplayAttributes() can have their values retrieved.  
4380  */
4381 VAStatus vaGetDisplayAttributes (
4382     VADisplay dpy,
4383     VADisplayAttribute *attr_list,      /* in/out */
4384     int num_attributes
4385 );
4386
4387 /**
4388  * Set display attributes 
4389  * Only attributes returned with VA_DISPLAY_ATTRIB_SETTABLE set in the "flags" field
4390  * from vaQueryDisplayAttributes() can be set.  If the attribute is not settable or 
4391  * the value is out of range, the function returns VA_STATUS_ERROR_ATTR_NOT_SUPPORTED
4392  */
4393 VAStatus vaSetDisplayAttributes (
4394     VADisplay dpy,
4395     VADisplayAttribute *attr_list,
4396     int num_attributes
4397 );
4398
4399 /****************************
4400  * HEVC data structures
4401  ****************************/
4402 /** 
4403  * \brief Description of picture properties of those in DPB surfaces.
4404  *
4405  * If only progressive scan is supported, each surface contains one whole 
4406  * frame picture.
4407  * Otherwise, each surface contains two fields of whole picture.
4408  * In this case, two entries of ReferenceFrames[] may share same picture_id
4409  * value.
4410  */
4411 typedef struct _VAPictureHEVC
4412 {
4413     /** \brief reconstructed picture buffer surface index 
4414      * invalid when taking value VA_INVALID_SURFACE.
4415      */
4416     VASurfaceID             picture_id;
4417     /** \brief picture order count. 
4418      * in HEVC, POCs for top and bottom fields of same picture should
4419      * take different values.
4420      */
4421     int32_t                 pic_order_cnt;
4422     /* described below */
4423     uint32_t                flags;
4424
4425     /** \brief Reserved bytes for future use, must be zero */
4426     uint32_t                va_reserved[VA_PADDING_LOW];
4427 } VAPictureHEVC;
4428
4429 /* flags in VAPictureHEVC could be OR of the following */
4430 #define VA_PICTURE_HEVC_INVALID                 0x00000001
4431 /** \brief indication of interlace scan picture. 
4432  * should take same value for all the pictures in sequence.
4433  */ 
4434 #define VA_PICTURE_HEVC_FIELD_PIC               0x00000002
4435 /** \brief polarity of the field picture.
4436  * top field takes even lines of buffer surface.
4437  * bottom field takes odd lines of buffer surface.
4438  */
4439 #define VA_PICTURE_HEVC_BOTTOM_FIELD            0x00000004
4440 /** \brief Long term reference picture */
4441 #define VA_PICTURE_HEVC_LONG_TERM_REFERENCE     0x00000008
4442 /**
4443  * VA_PICTURE_HEVC_RPS_ST_CURR_BEFORE, VA_PICTURE_HEVC_RPS_ST_CURR_AFTER
4444  * and VA_PICTURE_HEVC_RPS_LT_CURR of any picture in ReferenceFrames[] should 
4445  * be exclusive. No more than one of them can be set for any picture.
4446  * Sum of NumPocStCurrBefore, NumPocStCurrAfter and NumPocLtCurr
4447  * equals NumPocTotalCurr, which should be equal to or smaller than 8.
4448  * Application should provide valid values for both short format and long format.
4449  * The pictures in DPB with any of these three flags turned on are referred by
4450  * the current picture.
4451  */
4452 /** \brief RefPicSetStCurrBefore of HEVC spec variable 
4453  * Number of ReferenceFrames[] entries with this bit set equals 
4454  * NumPocStCurrBefore.
4455  */
4456 #define VA_PICTURE_HEVC_RPS_ST_CURR_BEFORE      0x00000010
4457 /** \brief RefPicSetStCurrAfter of HEVC spec variable
4458  * Number of ReferenceFrames[] entries with this bit set equals 
4459  * NumPocStCurrAfter.
4460  */
4461 #define VA_PICTURE_HEVC_RPS_ST_CURR_AFTER       0x00000020
4462 /** \brief RefPicSetLtCurr of HEVC spec variable
4463  * Number of ReferenceFrames[] entries with this bit set equals 
4464  * NumPocLtCurr.
4465  */
4466 #define VA_PICTURE_HEVC_RPS_LT_CURR             0x00000040
4467
4468 #include <va/va_dec_hevc.h>
4469 #include <va/va_dec_jpeg.h>
4470 #include <va/va_dec_vp8.h>
4471 #include <va/va_dec_vp9.h>
4472 #include <va/va_enc_hevc.h>
4473 #include <va/va_fei_hevc.h>
4474 #include <va/va_enc_h264.h>
4475 #include <va/va_enc_jpeg.h>
4476 #include <va/va_enc_mpeg2.h>
4477 #include <va/va_enc_vp8.h>
4478 #include <va/va_enc_vp9.h>
4479 #include <va/va_fei.h>
4480 #include <va/va_fei_h264.h>
4481 #include <va/va_vpp.h>
4482
4483 /**@}*/
4484
4485 #ifdef __cplusplus
4486 }
4487 #endif
4488
4489 #endif /* _VA_H_ */