]> git.sesse.net Git - ffmpeg/blob - libavcodec/vaapi.h
utvideodec: Support UQRA and UQRG
[ffmpeg] / libavcodec / vaapi.h
1 /*
2  * Video Acceleration API (shared data between Libav and the video player)
3  * HW decode acceleration for MPEG-2, MPEG-4, H.264 and VC-1
4  *
5  * Copyright (C) 2008-2009 Splitted-Desktop Systems
6  *
7  * This file is part of Libav.
8  *
9  * Libav is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * Libav is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with Libav; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #ifndef AVCODEC_VAAPI_H
25 #define AVCODEC_VAAPI_H
26
27 /**
28  * @file
29  * @ingroup lavc_codec_hwaccel_vaapi
30  * Public libavcodec VA API header.
31  */
32
33 #include <stdint.h>
34
35 #include "libavutil/attributes.h"
36
37 #include "version.h"
38
39 #if FF_API_VAAPI_CONTEXT
40
41 /**
42  * @defgroup lavc_codec_hwaccel_vaapi VA API Decoding
43  * @ingroup lavc_codec_hwaccel
44  * @{
45  */
46
47 /**
48  * This structure is used to share data between the Libav library and
49  * the client video application.
50  * This shall be zero-allocated and available as
51  * AVCodecContext.hwaccel_context. All user members can be set once
52  * during initialization or through each AVCodecContext.get_buffer()
53  * function call. In any case, they must be valid prior to calling
54  * decoding functions.
55  *
56  * Deprecated: use AVCodecContext.hw_frames_ctx instead.
57  */
58 struct attribute_deprecated vaapi_context {
59     /**
60      * Window system dependent data
61      *
62      * - encoding: unused
63      * - decoding: Set by user
64      */
65     void *display;
66
67     /**
68      * Configuration ID
69      *
70      * - encoding: unused
71      * - decoding: Set by user
72      */
73     uint32_t config_id;
74
75     /**
76      * Context ID (video decode pipeline)
77      *
78      * - encoding: unused
79      * - decoding: Set by user
80      */
81     uint32_t context_id;
82
83     /**
84      * VAPictureParameterBuffer ID
85      *
86      * - encoding: unused
87      * - decoding: Set by libavcodec
88      */
89     uint32_t pic_param_buf_id;
90
91     /**
92      * VAIQMatrixBuffer ID
93      *
94      * - encoding: unused
95      * - decoding: Set by libavcodec
96      */
97     uint32_t iq_matrix_buf_id;
98
99     /**
100      * VABitPlaneBuffer ID (for VC-1 decoding)
101      *
102      * - encoding: unused
103      * - decoding: Set by libavcodec
104      */
105     uint32_t bitplane_buf_id;
106
107     /**
108      * Slice parameter/data buffer IDs
109      *
110      * - encoding: unused
111      * - decoding: Set by libavcodec
112      */
113     uint32_t *slice_buf_ids;
114
115     /**
116      * Number of effective slice buffer IDs to send to the HW
117      *
118      * - encoding: unused
119      * - decoding: Set by libavcodec
120      */
121     unsigned int n_slice_buf_ids;
122
123     /**
124      * Size of pre-allocated slice_buf_ids
125      *
126      * - encoding: unused
127      * - decoding: Set by libavcodec
128      */
129     unsigned int slice_buf_ids_alloc;
130
131     /**
132      * Pointer to VASliceParameterBuffers
133      *
134      * - encoding: unused
135      * - decoding: Set by libavcodec
136      */
137     void *slice_params;
138
139     /**
140      * Size of a VASliceParameterBuffer element
141      *
142      * - encoding: unused
143      * - decoding: Set by libavcodec
144      */
145     unsigned int slice_param_size;
146
147     /**
148      * Size of pre-allocated slice_params
149      *
150      * - encoding: unused
151      * - decoding: Set by libavcodec
152      */
153     unsigned int slice_params_alloc;
154
155     /**
156      * Number of slices currently filled in
157      *
158      * - encoding: unused
159      * - decoding: Set by libavcodec
160      */
161     unsigned int slice_count;
162
163     /**
164      * Pointer to slice data buffer base
165      * - encoding: unused
166      * - decoding: Set by libavcodec
167      */
168     const uint8_t *slice_data;
169
170     /**
171      * Current size of slice data
172      *
173      * - encoding: unused
174      * - decoding: Set by libavcodec
175      */
176     uint32_t slice_data_size;
177 };
178
179 /* @} */
180
181 #endif /* FF_API_VAAPI_CONTEXT */
182
183 #endif /* AVCODEC_VAAPI_H */