2 * This file is part of Libav.
4 * Libav is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * Libav is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with Libav; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #include "libavutil/avassert.h"
20 #include "libavutil/common.h"
24 #include "vaapi_decode.h"
27 int ff_vaapi_decode_make_param_buffer(AVCodecContext
*avctx
,
28 VAAPIDecodePicture
*pic
,
33 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
37 av_assert0(pic
->nb_param_buffers
+ 1 <= MAX_PARAM_BUFFERS
);
39 vas
= vaCreateBuffer(ctx
->hwctx
->display
, ctx
->va_context
,
40 type
, size
, 1, (void*)data
, &buffer
);
41 if (vas
!= VA_STATUS_SUCCESS
) {
42 av_log(avctx
, AV_LOG_ERROR
, "Failed to create parameter "
43 "buffer (type %d): %d (%s).\n",
44 type
, vas
, vaErrorStr(vas
));
48 pic
->param_buffers
[pic
->nb_param_buffers
++] = buffer
;
50 av_log(avctx
, AV_LOG_DEBUG
, "Param buffer (type %d, %zu bytes) "
51 "is %#x.\n", type
, size
, buffer
);
56 int ff_vaapi_decode_make_slice_buffer(AVCodecContext
*avctx
,
57 VAAPIDecodePicture
*pic
,
58 const void *params_data
,
60 const void *slice_data
,
63 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
67 av_assert0(pic
->nb_slices
<= pic
->slices_allocated
);
68 if (pic
->nb_slices
== pic
->slices_allocated
) {
69 if (pic
->slices_allocated
> 0)
70 pic
->slices_allocated
*= 2;
72 pic
->slices_allocated
= 64;
75 av_realloc_array(pic
->slice_buffers
,
76 pic
->slices_allocated
,
77 2 * sizeof(*pic
->slice_buffers
));
78 if (!pic
->slice_buffers
)
79 return AVERROR(ENOMEM
);
81 av_assert0(pic
->nb_slices
+ 1 <= pic
->slices_allocated
);
83 index
= 2 * pic
->nb_slices
;
85 vas
= vaCreateBuffer(ctx
->hwctx
->display
, ctx
->va_context
,
86 VASliceParameterBufferType
,
87 params_size
, 1, (void*)params_data
,
88 &pic
->slice_buffers
[index
]);
89 if (vas
!= VA_STATUS_SUCCESS
) {
90 av_log(avctx
, AV_LOG_ERROR
, "Failed to create slice "
91 "parameter buffer: %d (%s).\n", vas
, vaErrorStr(vas
));
95 av_log(avctx
, AV_LOG_DEBUG
, "Slice %d param buffer (%zu bytes) "
96 "is %#x.\n", pic
->nb_slices
, params_size
,
97 pic
->slice_buffers
[index
]);
99 vas
= vaCreateBuffer(ctx
->hwctx
->display
, ctx
->va_context
,
100 VASliceDataBufferType
,
101 slice_size
, 1, (void*)slice_data
,
102 &pic
->slice_buffers
[index
+ 1]);
103 if (vas
!= VA_STATUS_SUCCESS
) {
104 av_log(avctx
, AV_LOG_ERROR
, "Failed to create slice "
105 "data buffer (size %zu): %d (%s).\n",
106 slice_size
, vas
, vaErrorStr(vas
));
107 vaDestroyBuffer(ctx
->hwctx
->display
,
108 pic
->slice_buffers
[index
]);
112 av_log(avctx
, AV_LOG_DEBUG
, "Slice %d data buffer (%zu bytes) "
113 "is %#x.\n", pic
->nb_slices
, slice_size
,
114 pic
->slice_buffers
[index
+ 1]);
120 static void ff_vaapi_decode_destroy_buffers(AVCodecContext
*avctx
,
121 VAAPIDecodePicture
*pic
)
123 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
127 for (i
= 0; i
< pic
->nb_param_buffers
; i
++) {
128 vas
= vaDestroyBuffer(ctx
->hwctx
->display
,
129 pic
->param_buffers
[i
]);
130 if (vas
!= VA_STATUS_SUCCESS
) {
131 av_log(avctx
, AV_LOG_ERROR
, "Failed to destroy "
132 "parameter buffer %#x: %d (%s).\n",
133 pic
->param_buffers
[i
], vas
, vaErrorStr(vas
));
137 for (i
= 0; i
< 2 * pic
->nb_slices
; i
++) {
138 vas
= vaDestroyBuffer(ctx
->hwctx
->display
,
139 pic
->slice_buffers
[i
]);
140 if (vas
!= VA_STATUS_SUCCESS
) {
141 av_log(avctx
, AV_LOG_ERROR
, "Failed to destroy slice "
142 "slice buffer %#x: %d (%s).\n",
143 pic
->slice_buffers
[i
], vas
, vaErrorStr(vas
));
148 int ff_vaapi_decode_issue(AVCodecContext
*avctx
,
149 VAAPIDecodePicture
*pic
)
151 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
155 av_log(avctx
, AV_LOG_DEBUG
, "Decode to surface %#x.\n",
156 pic
->output_surface
);
158 vas
= vaBeginPicture(ctx
->hwctx
->display
, ctx
->va_context
,
159 pic
->output_surface
);
160 if (vas
!= VA_STATUS_SUCCESS
) {
161 av_log(avctx
, AV_LOG_ERROR
, "Failed to begin picture decode "
162 "issue: %d (%s).\n", vas
, vaErrorStr(vas
));
164 goto fail_with_picture
;
167 vas
= vaRenderPicture(ctx
->hwctx
->display
, ctx
->va_context
,
168 pic
->param_buffers
, pic
->nb_param_buffers
);
169 if (vas
!= VA_STATUS_SUCCESS
) {
170 av_log(avctx
, AV_LOG_ERROR
, "Failed to upload decode "
171 "parameters: %d (%s).\n", vas
, vaErrorStr(vas
));
173 goto fail_with_picture
;
176 vas
= vaRenderPicture(ctx
->hwctx
->display
, ctx
->va_context
,
177 pic
->slice_buffers
, 2 * pic
->nb_slices
);
178 if (vas
!= VA_STATUS_SUCCESS
) {
179 av_log(avctx
, AV_LOG_ERROR
, "Failed to upload slices: "
180 "%d (%s).\n", vas
, vaErrorStr(vas
));
182 goto fail_with_picture
;
185 vas
= vaEndPicture(ctx
->hwctx
->display
, ctx
->va_context
);
186 if (vas
!= VA_STATUS_SUCCESS
) {
187 av_log(avctx
, AV_LOG_ERROR
, "Failed to end picture decode "
188 "issue: %d (%s).\n", vas
, vaErrorStr(vas
));
190 if (ctx
->hwctx
->driver_quirks
&
191 AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS
)
197 if (ctx
->hwctx
->driver_quirks
&
198 AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS
)
199 ff_vaapi_decode_destroy_buffers(avctx
, pic
);
201 pic
->nb_param_buffers
= 0;
203 pic
->slices_allocated
= 0;
204 av_freep(&pic
->slice_buffers
);
209 vas
= vaEndPicture(ctx
->hwctx
->display
, ctx
->va_context
);
210 if (vas
!= VA_STATUS_SUCCESS
) {
211 av_log(avctx
, AV_LOG_ERROR
, "Failed to end picture decode "
212 "after error: %d (%s).\n", vas
, vaErrorStr(vas
));
215 ff_vaapi_decode_destroy_buffers(avctx
, pic
);
220 int ff_vaapi_decode_cancel(AVCodecContext
*avctx
,
221 VAAPIDecodePicture
*pic
)
223 ff_vaapi_decode_destroy_buffers(avctx
, pic
);
225 pic
->nb_param_buffers
= 0;
227 pic
->slices_allocated
= 0;
228 av_freep(&pic
->slice_buffers
);
233 static const struct {
234 enum AVCodecID codec_id
;
236 VAProfile va_profile
;
237 } vaapi_profile_map
[] = {
238 #define MAP(c, p, v) { AV_CODEC_ID_ ## c, FF_PROFILE_ ## p, VAProfile ## v }
239 MAP(MPEG2VIDEO
, MPEG2_SIMPLE
, MPEG2Simple
),
240 MAP(MPEG2VIDEO
, MPEG2_MAIN
, MPEG2Main
),
241 MAP(H263
, UNKNOWN
, H263Baseline
),
242 MAP(MPEG4
, MPEG4_SIMPLE
, MPEG4Simple
),
243 MAP(MPEG4
, MPEG4_ADVANCED_SIMPLE
,
244 MPEG4AdvancedSimple
),
245 MAP(MPEG4
, MPEG4_MAIN
, MPEG4Main
),
246 MAP(H264
, H264_CONSTRAINED_BASELINE
,
247 H264ConstrainedBaseline
),
248 MAP(H264
, H264_BASELINE
, H264Baseline
),
249 MAP(H264
, H264_MAIN
, H264Main
),
250 MAP(H264
, H264_HIGH
, H264High
),
251 #if VA_CHECK_VERSION(0, 37, 0)
252 MAP(HEVC
, HEVC_MAIN
, HEVCMain
),
254 MAP(WMV3
, VC1_SIMPLE
, VC1Simple
),
255 MAP(WMV3
, VC1_MAIN
, VC1Main
),
256 MAP(WMV3
, VC1_COMPLEX
, VC1Advanced
),
257 MAP(WMV3
, VC1_ADVANCED
, VC1Advanced
),
258 MAP(VC1
, VC1_SIMPLE
, VC1Simple
),
259 MAP(VC1
, VC1_MAIN
, VC1Main
),
260 MAP(VC1
, VC1_COMPLEX
, VC1Advanced
),
261 MAP(VC1
, VC1_ADVANCED
, VC1Advanced
),
262 #if VA_CHECK_VERSION(0, 35, 0)
263 MAP(VP8
, UNKNOWN
, VP8Version0_3
),
265 #if VA_CHECK_VERSION(0, 38, 0)
266 MAP(VP9
, VP9_0
, VP9Profile0
),
271 static int vaapi_decode_make_config(AVCodecContext
*avctx
)
273 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
275 AVVAAPIHWConfig
*hwconfig
= NULL
;
276 AVHWFramesConstraints
*constraints
= NULL
;
279 const AVCodecDescriptor
*codec_desc
;
280 VAProfile profile
, *profile_list
= NULL
;
281 int profile_count
, exact_match
, alt_profile
;
283 // Allowing a profile mismatch can be useful because streams may
284 // over-declare their required capabilities - in particular, many
285 // H.264 baseline profile streams (notably some of those in FATE)
286 // only use the feature set of constrained baseline. This flag
287 // would have to be be set by some external means in order to
288 // actually be useful. (AV_HWACCEL_FLAG_IGNORE_PROFILE?)
289 int allow_profile_mismatch
= 0;
291 codec_desc
= avcodec_descriptor_get(avctx
->codec_id
);
293 err
= AVERROR(EINVAL
);
297 profile_count
= vaMaxNumProfiles(ctx
->hwctx
->display
);
298 profile_list
= av_malloc_array(profile_count
,
301 err
= AVERROR(ENOMEM
);
305 vas
= vaQueryConfigProfiles(ctx
->hwctx
->display
,
306 profile_list
, &profile_count
);
307 if (vas
!= VA_STATUS_SUCCESS
) {
308 av_log(ctx
, AV_LOG_ERROR
, "Failed to query profiles: "
309 "%d (%s).\n", vas
, vaErrorStr(vas
));
310 err
= AVERROR(ENOSYS
);
314 profile
= VAProfileNone
;
317 for (i
= 0; i
< FF_ARRAY_ELEMS(vaapi_profile_map
); i
++) {
318 int profile_match
= 0;
319 if (avctx
->codec_id
!= vaapi_profile_map
[i
].codec_id
)
321 if (avctx
->profile
== vaapi_profile_map
[i
].codec_profile
||
322 vaapi_profile_map
[i
].codec_profile
== FF_PROFILE_UNKNOWN
)
324 profile
= vaapi_profile_map
[i
].va_profile
;
325 for (j
= 0; j
< profile_count
; j
++) {
326 if (profile
== profile_list
[j
]) {
327 exact_match
= profile_match
;
331 if (j
< profile_count
) {
334 alt_profile
= vaapi_profile_map
[i
].codec_profile
;
337 av_freep(&profile_list
);
339 if (profile
== VAProfileNone
) {
340 av_log(ctx
, AV_LOG_ERROR
, "No support for codec %s "
341 "profile %d.\n", codec_desc
->name
, avctx
->profile
);
342 err
= AVERROR(ENOSYS
);
346 if (allow_profile_mismatch
) {
347 av_log(avctx
, AV_LOG_VERBOSE
, "Codec %s profile %d not "
348 "supported for hardware decode.\n",
349 codec_desc
->name
, avctx
->profile
);
350 av_log(avctx
, AV_LOG_WARNING
, "Using possibly-"
351 "incompatible profile %d instead.\n",
354 av_log(avctx
, AV_LOG_VERBOSE
, "Codec %s profile %d not "
355 "supported for hardware decode.\n",
356 codec_desc
->name
, avctx
->profile
);
357 err
= AVERROR(EINVAL
);
362 ctx
->va_profile
= profile
;
363 ctx
->va_entrypoint
= VAEntrypointVLD
;
365 vas
= vaCreateConfig(ctx
->hwctx
->display
, ctx
->va_profile
,
366 ctx
->va_entrypoint
, NULL
, 0,
368 if (vas
!= VA_STATUS_SUCCESS
) {
369 av_log(avctx
, AV_LOG_ERROR
, "Failed to create decode "
370 "configuration: %d (%s).\n", vas
, vaErrorStr(vas
));
375 hwconfig
= av_hwdevice_hwconfig_alloc(ctx
->frames
->device_ref
);
377 err
= AVERROR(ENOMEM
);
380 hwconfig
->config_id
= ctx
->va_config
;
383 av_hwdevice_get_hwframe_constraints(ctx
->frames
->device_ref
,
388 if (avctx
->coded_width
< constraints
->min_width
||
389 avctx
->coded_height
< constraints
->min_height
||
390 avctx
->coded_width
> constraints
->max_width
||
391 avctx
->coded_height
> constraints
->max_height
) {
392 av_log(ctx
, AV_LOG_ERROR
, "Hardware does not support image "
393 "size %dx%d (constraints: width %d-%d height %d-%d).\n",
394 avctx
->coded_width
, avctx
->coded_height
,
395 constraints
->min_width
, constraints
->max_width
,
396 constraints
->min_height
, constraints
->max_height
);
397 err
= AVERROR(EINVAL
);
402 av_hwframe_constraints_free(&constraints
);
408 av_hwframe_constraints_free(&constraints
);
410 if (ctx
->va_config
!= VA_INVALID_ID
) {
411 vaDestroyConfig(ctx
->hwctx
->display
, ctx
->va_config
);
412 ctx
->va_config
= VA_INVALID_ID
;
414 av_freep(&profile_list
);
418 int ff_vaapi_decode_init(AVCodecContext
*avctx
)
420 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
424 ctx
->va_config
= VA_INVALID_ID
;
425 ctx
->va_context
= VA_INVALID_ID
;
427 #if FF_API_VAAPI_CONTEXT
428 if (avctx
->hwaccel_context
) {
429 av_log(avctx
, AV_LOG_WARNING
, "Using deprecated struct "
430 "vaapi_context in decode.\n");
432 ctx
->have_old_context
= 1;
433 ctx
->old_context
= avctx
->hwaccel_context
;
435 // Really we only want the VAAPI device context, but this
436 // allocates a whole generic device context because we don't
437 // have any other way to determine how big it should be.
439 av_hwdevice_ctx_alloc(AV_HWDEVICE_TYPE_VAAPI
);
440 if (!ctx
->device_ref
) {
441 err
= AVERROR(ENOMEM
);
444 ctx
->device
= (AVHWDeviceContext
*)ctx
->device_ref
->data
;
445 ctx
->hwctx
= ctx
->device
->hwctx
;
447 ctx
->hwctx
->display
= ctx
->old_context
->display
;
449 // The old VAAPI decode setup assumed this quirk was always
450 // present, so set it here to avoid the behaviour changing.
451 ctx
->hwctx
->driver_quirks
=
452 AV_VAAPI_DRIVER_QUIRK_RENDER_PARAM_BUFFERS
;
456 if (avctx
->hw_frames_ctx
) {
457 // This structure has a shorter lifetime than the enclosing
458 // AVCodecContext, so we inherit the references from there
459 // and do not need to make separate ones.
461 ctx
->frames
= (AVHWFramesContext
*)avctx
->hw_frames_ctx
->data
;
462 ctx
->hwfc
= ctx
->frames
->hwctx
;
464 ctx
->device
= ctx
->frames
->device_ctx
;
465 ctx
->hwctx
= ctx
->device
->hwctx
;
468 av_log(avctx
, AV_LOG_ERROR
, "A hardware frames context is "
469 "required for VAAPI decoding.\n");
470 err
= AVERROR(EINVAL
);
474 #if FF_API_VAAPI_CONTEXT
475 if (ctx
->have_old_context
) {
476 ctx
->va_config
= ctx
->old_context
->config_id
;
477 ctx
->va_context
= ctx
->old_context
->context_id
;
479 av_log(avctx
, AV_LOG_DEBUG
, "Using user-supplied decoder "
480 "context: %#x/%#x.\n", ctx
->va_config
, ctx
->va_context
);
484 err
= vaapi_decode_make_config(avctx
);
488 vas
= vaCreateContext(ctx
->hwctx
->display
, ctx
->va_config
,
489 avctx
->coded_width
, avctx
->coded_height
,
491 ctx
->hwfc
->surface_ids
,
492 ctx
->hwfc
->nb_surfaces
,
494 if (vas
!= VA_STATUS_SUCCESS
) {
495 av_log(avctx
, AV_LOG_ERROR
, "Failed to create decode "
496 "context: %d (%s).\n", vas
, vaErrorStr(vas
));
501 av_log(avctx
, AV_LOG_DEBUG
, "Decode context initialised: "
502 "%#x/%#x.\n", ctx
->va_config
, ctx
->va_context
);
503 #if FF_API_VAAPI_CONTEXT
510 ff_vaapi_decode_uninit(avctx
);
514 int ff_vaapi_decode_uninit(AVCodecContext
*avctx
)
516 VAAPIDecodeContext
*ctx
= avctx
->internal
->hwaccel_priv_data
;
519 #if FF_API_VAAPI_CONTEXT
520 if (ctx
->have_old_context
) {
521 av_buffer_unref(&ctx
->device_ref
);
525 if (ctx
->va_context
!= VA_INVALID_ID
) {
526 vas
= vaDestroyContext(ctx
->hwctx
->display
, ctx
->va_context
);
527 if (vas
!= VA_STATUS_SUCCESS
) {
528 av_log(avctx
, AV_LOG_ERROR
, "Failed to destroy decode "
529 "context %#x: %d (%s).\n",
530 ctx
->va_context
, vas
, vaErrorStr(vas
));
533 if (ctx
->va_config
!= VA_INVALID_ID
) {
534 vas
= vaDestroyConfig(ctx
->hwctx
->display
, ctx
->va_config
);
535 if (vas
!= VA_STATUS_SUCCESS
) {
536 av_log(avctx
, AV_LOG_ERROR
, "Failed to destroy decode "
537 "configuration %#x: %d (%s).\n",
538 ctx
->va_config
, vas
, vaErrorStr(vas
));
542 #if FF_API_VAAPI_CONTEXT