FFmpeg
Loading...
Searching...
No Matches
dxva2_h264.c
Go to the documentation of this file.
1/*
2 * DXVA2 H.264 HW acceleration.
3 *
4 * copyright (c) 2009 Laurent Aimar
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include "config_components.h"
24
25#include "libavutil/avassert.h"
26
27#include "dxva2_internal.h"
28#include "h264dec.h"
29#include "h264data.h"
30#include "h264_ps.h"
31#include "hwaccel_internal.h"
32#include "mpegutils.h"
33
35 DXVA_PicParams_H264 pp;
36 DXVA_Qmatrix_H264 qm;
37 unsigned slice_count;
38 DXVA_Slice_H264_Short slice_short[MAX_SLICES];
39 DXVA_Slice_H264_Long slice_long[MAX_SLICES];
40 const uint8_t *bitstream;
42};
43
44static void fill_picture_entry(DXVA_PicEntry_H264 *pic,
45 unsigned index, unsigned flag)
46{
47 av_assert0((index&0x7f) == index && (flag&0x01) == flag);
48 pic->bPicEntry = index | (flag << 7);
49}
50
52 DXVA_PicParams_H264 *pp)
53{
54 const H264Context *h = avctx->priv_data;
55 const H264Picture *current_picture = h->cur_pic_ptr;
56 const SPS *sps = h->ps.sps;
57 const PPS *pps = h->ps.pps;
58 int i, j;
59
60 memset(pp, 0, sizeof(*pp));
61 /* Configure the set of references */
62 pp->UsedForReferenceFlags = 0;
63 pp->NonExistingFrameFlags = 0;
64 for (i = 0, j = 0; i < FF_ARRAY_ELEMS(pp->RefFrameList); i++) {
65 const H264Picture *r;
66 if (j < h->short_ref_count) {
67 r = h->short_ref[j++];
68 } else {
69 r = NULL;
70 while (!r && j < h->short_ref_count + 16)
71 r = h->long_ref[j++ - h->short_ref_count];
72 }
73 if (r) {
74 fill_picture_entry(&pp->RefFrameList[i],
75 ff_dxva2_get_surface_index(avctx, ctx, r->f, 0),
76 r->long_ref != 0);
77
78 if ((r->reference & PICT_TOP_FIELD) && r->field_poc[0] != INT_MAX)
79 pp->FieldOrderCntList[i][0] = r->field_poc[0];
80 if ((r->reference & PICT_BOTTOM_FIELD) && r->field_poc[1] != INT_MAX)
81 pp->FieldOrderCntList[i][1] = r->field_poc[1];
82
83 pp->FrameNumList[i] = r->long_ref ? r->pic_id : r->frame_num;
84 if (r->reference & PICT_TOP_FIELD)
85 pp->UsedForReferenceFlags |= 1 << (2*i + 0);
86 if (r->reference & PICT_BOTTOM_FIELD)
87 pp->UsedForReferenceFlags |= 1 << (2*i + 1);
88 } else {
89 pp->RefFrameList[i].bPicEntry = 0xff;
90 pp->FieldOrderCntList[i][0] = 0;
91 pp->FieldOrderCntList[i][1] = 0;
92 pp->FrameNumList[i] = 0;
93 }
94 }
95 /* Configure current picture */
96 fill_picture_entry(&pp->CurrPic,
97 ff_dxva2_get_surface_index(avctx, ctx, current_picture->f, 1),
98 h->picture_structure == PICT_BOTTOM_FIELD);
99
100 pp->wFrameWidthInMbsMinus1 = h->mb_width - 1;
101 pp->wFrameHeightInMbsMinus1 = h->mb_height - 1;
102 pp->num_ref_frames = sps->ref_frame_count;
103
104 pp->wBitFields = ((h->picture_structure != PICT_FRAME) << 0) |
105 ((sps->mb_aff &&
106 (h->picture_structure == PICT_FRAME)) << 1) |
107 (sps->residual_color_transform_flag << 2) |
108 /* sp_for_switch_flag (not implemented by FFmpeg) */
109 (0 << 3) |
110 (sps->chroma_format_idc << 4) |
111 ((h->nal_ref_idc != 0) << 6) |
112 (pps->constrained_intra_pred << 7) |
113 (pps->weighted_pred << 8) |
114 (pps->weighted_bipred_idc << 9) |
115 /* MbsConsecutiveFlag */
116 (1 << 11) |
117 (sps->frame_mbs_only_flag << 12) |
118 (pps->transform_8x8_mode << 13) |
119 ((sps->level_idc >= 31) << 14) |
120 /* IntraPicFlag (Modified if we detect a non
121 * intra slice in dxva2_h264_decode_slice) */
122 (1 << 15);
123
124 pp->bit_depth_luma_minus8 = sps->bit_depth_luma - 8;
125 pp->bit_depth_chroma_minus8 = sps->bit_depth_chroma - 8;
127 pp->Reserved16Bits = 0;
129 pp->Reserved16Bits = 0x34c;
130 else
131 pp->Reserved16Bits = 3; /* FIXME is there a way to detect the right mode ? */
132 pp->StatusReportFeedbackNumber = 1 + DXVA_CONTEXT_REPORT_ID(avctx, ctx)++;
133 pp->CurrFieldOrderCnt[0] = 0;
134 if ((h->picture_structure & PICT_TOP_FIELD) &&
135 current_picture->field_poc[0] != INT_MAX)
136 pp->CurrFieldOrderCnt[0] = current_picture->field_poc[0];
137 pp->CurrFieldOrderCnt[1] = 0;
138 if ((h->picture_structure & PICT_BOTTOM_FIELD) &&
139 current_picture->field_poc[1] != INT_MAX)
140 pp->CurrFieldOrderCnt[1] = current_picture->field_poc[1];
141 pp->pic_init_qs_minus26 = pps->init_qs - 26;
142 pp->chroma_qp_index_offset = pps->chroma_qp_index_offset[0];
143 pp->second_chroma_qp_index_offset = pps->chroma_qp_index_offset[1];
144 pp->ContinuationFlag = 1;
145 pp->pic_init_qp_minus26 = pps->init_qp - 26;
146 pp->num_ref_idx_l0_active_minus1 = pps->ref_count[0] - 1;
147 pp->num_ref_idx_l1_active_minus1 = pps->ref_count[1] - 1;
148 pp->Reserved8BitsA = 0;
149 pp->frame_num = h->poc.frame_num;
150 pp->log2_max_frame_num_minus4 = sps->log2_max_frame_num - 4;
151 pp->pic_order_cnt_type = sps->poc_type;
152 if (sps->poc_type == 0)
153 pp->log2_max_pic_order_cnt_lsb_minus4 = sps->log2_max_poc_lsb - 4;
154 else if (sps->poc_type == 1)
155 pp->delta_pic_order_always_zero_flag = sps->delta_pic_order_always_zero_flag;
156 pp->direct_8x8_inference_flag = sps->direct_8x8_inference_flag;
157 pp->entropy_coding_mode_flag = pps->cabac;
158 pp->pic_order_present_flag = pps->pic_order_present;
159 pp->num_slice_groups_minus1 = pps->slice_group_count - 1;
160 pp->slice_group_map_type = pps->mb_slice_group_map_type;
161 pp->deblocking_filter_control_present_flag = pps->deblocking_filter_parameters_present;
162 pp->redundant_pic_cnt_present_flag= pps->redundant_pic_cnt_present;
163 pp->Reserved8BitsB = 0;
164 pp->slice_group_change_rate_minus1= 0; /* XXX not implemented by FFmpeg */
165 //pp->SliceGroupMap[810]; /* XXX not implemented by FFmpeg */
166}
167
168void ff_dxva2_h264_fill_scaling_lists(const AVCodecContext *avctx, AVDXVAContext *ctx, DXVA_Qmatrix_H264 *qm)
169{
170 const H264Context *h = avctx->priv_data;
171 const PPS *pps = h->ps.pps;
172 unsigned i, j;
173 memset(qm, 0, sizeof(*qm));
175 for (i = 0; i < 6; i++)
176 for (j = 0; j < 16; j++)
177 qm->bScalingLists4x4[i][j] = pps->scaling_matrix4[i][j];
178
179 for (i = 0; i < 64; i++) {
180 qm->bScalingLists8x8[0][i] = pps->scaling_matrix8[0][i];
181 qm->bScalingLists8x8[1][i] = pps->scaling_matrix8[3][i];
182 }
183 } else {
184 for (i = 0; i < 6; i++)
185 for (j = 0; j < 16; j++)
186 qm->bScalingLists4x4[i][j] = pps->scaling_matrix4[i][ff_zigzag_scan[j]];
187
188 for (i = 0; i < 64; i++) {
189 qm->bScalingLists8x8[0][i] = pps->scaling_matrix8[0][ff_zigzag_direct[i]];
190 qm->bScalingLists8x8[1][i] = pps->scaling_matrix8[3][ff_zigzag_direct[i]];
191 }
192 }
193}
194
196{
198 DXVA_CONTEXT_CFG_BITSTREAM(avctx, ctx) == 2);
199 return DXVA_CONTEXT_CFG_BITSTREAM(avctx, ctx) == 2;
200}
201
202static void fill_slice_short(DXVA_Slice_H264_Short *slice,
203 unsigned position, unsigned size)
204{
205 memset(slice, 0, sizeof(*slice));
206 slice->BSNALunitDataLocation = position;
207 slice->SliceBytesInBuffer = size;
208 slice->wBadSliceChopping = 0;
209}
210
211static int get_refpic_index(const DXVA_PicParams_H264 *pp, int surface_index)
212{
213 int i;
214 for (i = 0; i < FF_ARRAY_ELEMS(pp->RefFrameList); i++) {
215 if ((pp->RefFrameList[i].bPicEntry & 0x7f) == surface_index)
216 return i;
217 }
218 return 0x7f;
219}
220
221static void fill_slice_long(AVCodecContext *avctx, DXVA_Slice_H264_Long *slice,
222 const DXVA_PicParams_H264 *pp, unsigned position, unsigned size)
223{
224 const H264Context *h = avctx->priv_data;
225 H264SliceContext *sl = &h->slice_ctx[0];
227 unsigned list;
228
229 memset(slice, 0, sizeof(*slice));
230 slice->BSNALunitDataLocation = position;
231 slice->SliceBytesInBuffer = size;
232 slice->wBadSliceChopping = 0;
233
234 slice->first_mb_in_slice = (sl->mb_y >> FIELD_OR_MBAFF_PICTURE(h)) * h->mb_width + sl->mb_x;
235 slice->NumMbsForSlice = 0; /* XXX it is set once we have all slices */
236 slice->BitOffsetToSliceData = get_bits_count(&sl->gb) - 8;
237 slice->slice_type = ff_h264_get_slice_type(sl);
238 if (sl->slice_type_fixed)
239 slice->slice_type += 5;
240 slice->luma_log2_weight_denom = sl->pwt.luma_log2_weight_denom;
241 slice->chroma_log2_weight_denom = sl->pwt.chroma_log2_weight_denom;
242 if (sl->list_count > 0)
243 slice->num_ref_idx_l0_active_minus1 = sl->ref_count[0] - 1;
244 if (sl->list_count > 1)
245 slice->num_ref_idx_l1_active_minus1 = sl->ref_count[1] - 1;
246 slice->slice_alpha_c0_offset_div2 = sl->slice_alpha_c0_offset / 2;
247 slice->slice_beta_offset_div2 = sl->slice_beta_offset / 2;
248 slice->Reserved8Bits = 0;
249
250 for (list = 0; list < 2; list++) {
251 unsigned i;
252 for (i = 0; i < FF_ARRAY_ELEMS(slice->RefPicList[list]); i++) {
253 if (list < sl->list_count && i < sl->ref_count[list]) {
254 const H264Picture *r = sl->ref_list[list][i].parent;
255 unsigned plane;
256 unsigned index;
258 index = ff_dxva2_get_surface_index(avctx, ctx, r->f, 0);
259 else
261 fill_picture_entry(&slice->RefPicList[list][i], index,
262 sl->ref_list[list][i].reference == PICT_BOTTOM_FIELD);
263 for (plane = 0; plane < 3; plane++) {
264 int w, o;
265 if (plane == 0 && sl->pwt.luma_weight_flag[list]) {
266 w = sl->pwt.luma_weight[i][list][0];
267 o = sl->pwt.luma_weight[i][list][1];
268 } else if (plane >= 1 && sl->pwt.chroma_weight_flag[list]) {
269 w = sl->pwt.chroma_weight[i][list][plane-1][0];
270 o = sl->pwt.chroma_weight[i][list][plane-1][1];
271 } else {
272 w = 1 << (plane == 0 ? sl->pwt.luma_log2_weight_denom :
274 o = 0;
275 }
276 slice->Weights[list][i][plane][0] = w;
277 slice->Weights[list][i][plane][1] = o;
278 }
279 } else {
280 unsigned plane;
281 slice->RefPicList[list][i].bPicEntry = 0xff;
282 for (plane = 0; plane < 3; plane++) {
283 slice->Weights[list][i][plane][0] = 0;
284 slice->Weights[list][i][plane][1] = 0;
285 }
286 }
287 }
288 }
289 slice->slice_qs_delta = 0; /* XXX not implemented by FFmpeg */
290 slice->slice_qp_delta = sl->qscale - h->ps.pps->init_qp;
291 slice->redundant_pic_cnt = sl->redundant_pic_count;
292 if (sl->slice_type == AV_PICTURE_TYPE_B)
293 slice->direct_spatial_mv_pred_flag = sl->direct_spatial_mv_pred;
294 slice->cabac_init_idc = h->ps.pps->cabac ? sl->cabac_init_idc : 0;
295 if (sl->deblocking_filter < 2)
296 slice->disable_deblocking_filter_idc = 1 - sl->deblocking_filter;
297 else
298 slice->disable_deblocking_filter_idc = sl->deblocking_filter;
299 slice->slice_id = h->current_slice - 1;
300}
301
305{
306 const H264Context *h = avctx->priv_data;
307 const unsigned mb_count = h->mb_width * h->mb_height;
309 const H264Picture *current_picture = h->cur_pic_ptr;
310 struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
311 DXVA_Slice_H264_Short *slice = NULL;
312 void *dxva_data_ptr = NULL;
313 uint8_t *dxva_data, *current, *end;
314 unsigned dxva_size = 0;
315 void *slice_data;
316 unsigned slice_size;
317 unsigned padding;
318 unsigned i;
319 unsigned type;
320
321 /* Create an annex B bitstream buffer with only slice NAL and finalize slice */
322#if CONFIG_D3D11VA
323 if (ff_dxva2_is_d3d11(avctx)) {
324 type = D3D11_VIDEO_DECODER_BUFFER_BITSTREAM;
325 if (FAILED(ID3D11VideoContext_GetDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context,
327 type,
328 &dxva_size, &dxva_data_ptr)))
329 return -1;
330 }
331#endif
332#if CONFIG_DXVA2
333 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
334 type = DXVA2_BitStreamDateBufferType;
335 if (FAILED(IDirectXVideoDecoder_GetBuffer(DXVA2_CONTEXT(ctx)->decoder,
336 type,
337 &dxva_data_ptr, &dxva_size)))
338 return -1;
339 }
340#endif
341
342 dxva_data = dxva_data_ptr;
343 current = dxva_data;
344 end = dxva_data + dxva_size;
345
346 for (i = 0; i < ctx_pic->slice_count; i++) {
347 static const uint8_t start_code[] = { 0, 0, 1 };
348 static const unsigned start_code_size = sizeof(start_code);
349 unsigned position, size;
350
351 av_assert0(offsetof(DXVA_Slice_H264_Short, BSNALunitDataLocation) ==
352 offsetof(DXVA_Slice_H264_Long, BSNALunitDataLocation));
353 av_assert0(offsetof(DXVA_Slice_H264_Short, SliceBytesInBuffer) ==
354 offsetof(DXVA_Slice_H264_Long, SliceBytesInBuffer));
355
356 if (is_slice_short(avctx, ctx))
357 slice = &ctx_pic->slice_short[i];
358 else
359 slice = (DXVA_Slice_H264_Short*)&ctx_pic->slice_long[i];
360
361 position = slice->BSNALunitDataLocation;
362 size = slice->SliceBytesInBuffer;
363 if (start_code_size + size > end - current) {
364 av_log(avctx, AV_LOG_ERROR, "Failed to build bitstream");
365 break;
366 }
367
368 slice->BSNALunitDataLocation = current - dxva_data;
369 slice->SliceBytesInBuffer = start_code_size + size;
370
371 if (!is_slice_short(avctx, ctx)) {
372 DXVA_Slice_H264_Long *slice_long = (DXVA_Slice_H264_Long*)slice;
374 slice_long->NumMbsForSlice =
375 slice_long[1].first_mb_in_slice - slice_long[0].first_mb_in_slice;
376 else
377 slice_long->NumMbsForSlice = mb_count - slice_long->first_mb_in_slice;
378 }
379
380 memcpy(current, start_code, start_code_size);
381 current += start_code_size;
382
383 memcpy(current, &ctx_pic->bitstream[position], size);
384 current += size;
385 }
386 padding = FFMIN(128 - ((current - dxva_data) & 127), end - current);
387 if (slice && padding > 0) {
388 memset(current, 0, padding);
389 current += padding;
390
391 slice->SliceBytesInBuffer += padding;
392 }
393#if CONFIG_D3D11VA
394 if (ff_dxva2_is_d3d11(avctx))
395 if (FAILED(ID3D11VideoContext_ReleaseDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context, D3D11VA_CONTEXT(ctx)->decoder, type)))
396 return -1;
397#endif
398#if CONFIG_DXVA2
399 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD)
400 if (FAILED(IDirectXVideoDecoder_ReleaseBuffer(DXVA2_CONTEXT(ctx)->decoder, type)))
401 return -1;
402#endif
404 return -1;
405
406#if CONFIG_D3D11VA
407 if (ff_dxva2_is_d3d11(avctx)) {
408 D3D11_VIDEO_DECODER_BUFFER_DESC *dsc11 = bs;
409 memset(dsc11, 0, sizeof(*dsc11));
410 dsc11->BufferType = type;
411 dsc11->DataSize = current - dxva_data;
412 dsc11->NumMBsInBuffer = mb_count;
413
414 type = D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL;
415
416 av_assert0((dsc11->DataSize & 127) == 0);
417 }
418#endif
419#if CONFIG_DXVA2
420 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
421 DXVA2_DecodeBufferDesc *dsc2 = bs;
422 memset(dsc2, 0, sizeof(*dsc2));
423 dsc2->CompressedBufferType = type;
424 dsc2->DataSize = current - dxva_data;
425 dsc2->NumMBsInBuffer = mb_count;
426
427 type = DXVA2_SliceControlBufferType;
428
429 av_assert0((dsc2->DataSize & 127) == 0);
430 }
431#endif
432
433 if (is_slice_short(avctx, ctx)) {
434 slice_data = ctx_pic->slice_short;
435 slice_size = ctx_pic->slice_count * sizeof(*ctx_pic->slice_short);
436 } else {
437 slice_data = ctx_pic->slice_long;
438 slice_size = ctx_pic->slice_count * sizeof(*ctx_pic->slice_long);
439 }
440 return ff_dxva2_commit_buffer(avctx, ctx, sc,
441 type,
442 slice_data, slice_size, mb_count);
443}
444
445
447 av_unused const AVBufferRef *buffer_ref,
448 av_unused const uint8_t *buffer,
449 av_unused uint32_t size)
450{
451 const H264Context *h = avctx->priv_data;
453 struct dxva2_picture_context *ctx_pic = h->cur_pic_ptr->hwaccel_picture_private;
454
455 if (!DXVA_CONTEXT_VALID(avctx, ctx))
456 return -1;
457 av_assert0(ctx_pic);
458
459 /* Fill up DXVA_PicParams_H264 */
461
462 /* Fill up DXVA_Qmatrix_H264 */
463 ff_dxva2_h264_fill_scaling_lists(avctx, ctx, &ctx_pic->qm);
464
465 ctx_pic->slice_count = 0;
466 ctx_pic->bitstream_size = 0;
467 ctx_pic->bitstream = NULL;
468 return 0;
469}
470
472 const uint8_t *buffer,
473 uint32_t size)
474{
475 const H264Context *h = avctx->priv_data;
476 const H264SliceContext *sl = &h->slice_ctx[0];
478 const H264Picture *current_picture = h->cur_pic_ptr;
479 struct dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
480 unsigned position;
481
482 if (ctx_pic->slice_count >= MAX_SLICES)
483 return -1;
484
485 if (!ctx_pic->bitstream)
486 ctx_pic->bitstream = buffer;
487 ctx_pic->bitstream_size += size;
488
489 position = buffer - ctx_pic->bitstream;
490 if (is_slice_short(avctx, ctx))
491 fill_slice_short(&ctx_pic->slice_short[ctx_pic->slice_count],
492 position, size);
493 else
494 fill_slice_long(avctx, &ctx_pic->slice_long[ctx_pic->slice_count],
495 &ctx_pic->pp, position, size);
496 ctx_pic->slice_count++;
497
499 ctx_pic->pp.wBitFields &= ~(1 << 15); /* Set IntraPicFlag to 0 */
500 return 0;
501}
502
504{
505 H264Context *h = avctx->priv_data;
506 H264SliceContext *sl = &h->slice_ctx[0];
507 struct dxva2_picture_context *ctx_pic =
508 h->cur_pic_ptr->hwaccel_picture_private;
509 int ret;
510
511 if (ctx_pic->slice_count <= 0 || ctx_pic->bitstream_size <= 0)
512 return -1;
513 ret = ff_dxva2_common_end_frame(avctx, h->cur_pic_ptr->f,
514 &ctx_pic->pp, sizeof(ctx_pic->pp),
515 &ctx_pic->qm, sizeof(ctx_pic->qm),
517 if (!ret)
518 ff_h264_draw_horiz_band(h, sl, 0, h->avctx->height);
519 return ret;
520}
521
522#if CONFIG_H264_DXVA2_HWACCEL
524 .p.name = "h264_dxva2",
525 .p.type = AVMEDIA_TYPE_VIDEO,
526 .p.id = AV_CODEC_ID_H264,
527 .p.pix_fmt = AV_PIX_FMT_DXVA2_VLD,
528 .init = ff_dxva2_decode_init,
529 .uninit = ff_dxva2_decode_uninit,
530 .start_frame = dxva2_h264_start_frame,
531 .decode_slice = dxva2_h264_decode_slice,
532 .end_frame = dxva2_h264_end_frame,
533 .frame_params = ff_dxva2_common_frame_params,
534 .frame_priv_data_size = sizeof(struct dxva2_picture_context),
535 .priv_data_size = sizeof(FFDXVASharedContext),
536};
537#endif
538
539#if CONFIG_H264_D3D11VA_HWACCEL
541 .p.name = "h264_d3d11va",
542 .p.type = AVMEDIA_TYPE_VIDEO,
543 .p.id = AV_CODEC_ID_H264,
544 .p.pix_fmt = AV_PIX_FMT_D3D11VA_VLD,
545 .init = ff_dxva2_decode_init,
546 .uninit = ff_dxva2_decode_uninit,
547 .start_frame = dxva2_h264_start_frame,
548 .decode_slice = dxva2_h264_decode_slice,
549 .end_frame = dxva2_h264_end_frame,
550 .frame_params = ff_dxva2_common_frame_params,
551 .frame_priv_data_size = sizeof(struct dxva2_picture_context),
552 .priv_data_size = sizeof(FFDXVASharedContext),
553};
554#endif
555
556#if CONFIG_H264_D3D11VA2_HWACCEL
558 .p.name = "h264_d3d11va2",
559 .p.type = AVMEDIA_TYPE_VIDEO,
560 .p.id = AV_CODEC_ID_H264,
561 .p.pix_fmt = AV_PIX_FMT_D3D11,
562 .init = ff_dxva2_decode_init,
563 .uninit = ff_dxva2_decode_uninit,
564 .start_frame = dxva2_h264_start_frame,
565 .decode_slice = dxva2_h264_decode_slice,
566 .end_frame = dxva2_h264_end_frame,
567 .frame_params = ff_dxva2_common_frame_params,
568 .frame_priv_data_size = sizeof(struct dxva2_picture_context),
569 .priv_data_size = sizeof(FFDXVASharedContext),
570};
571#endif
static AVFormatContext * ctx
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
#define flag(name)
Definition cbs_h264.c:60
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int FUNC sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
#define NULL
Definition coverity.c:32
#define MAX_SLICES
uint64_t pps
Definition dovi_rpuenc.c:36
int ff_dxva2_is_d3d11(const AVCodecContext *avctx)
Definition dxva2.c:1068
unsigned ff_dxva2_get_surface_index(const AVCodecContext *avctx, AVDXVAContext *ctx, const AVFrame *frame, int curr)
Definition dxva2.c:783
int ff_dxva2_decode_init(AVCodecContext *avctx)
Definition dxva2.c:668
int ff_dxva2_commit_buffer(AVCodecContext *avctx, AVDXVAContext *ctx, DECODER_BUFFER_DESC *dsc, unsigned type, const void *data, unsigned size, unsigned mb_count)
Definition dxva2.c:814
int ff_dxva2_decode_uninit(AVCodecContext *avctx)
Definition dxva2.c:743
int ff_dxva2_common_end_frame(AVCodecContext *avctx, AVFrame *frame, const void *pp, unsigned pp_size, const void *qm, unsigned qm_size, int(*commit_bs_si)(AVCodecContext *, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *slice))
Definition dxva2.c:903
int ff_dxva2_common_frame_params(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx)
Definition dxva2.c:602
static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *sc)
Definition dxva2_av1.c:351
void ff_dxva2_h264_fill_scaling_lists(const AVCodecContext *avctx, AVDXVAContext *ctx, DXVA_Qmatrix_H264 *qm)
Definition dxva2_h264.c:168
static int is_slice_short(const AVCodecContext *avctx, AVDXVAContext *ctx)
Definition dxva2_h264.c:195
static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *sc)
Definition dxva2_h264.c:302
static void fill_slice_short(DXVA_Slice_H264_Short *slice, unsigned position, unsigned size)
Definition dxva2_h264.c:202
static void fill_picture_entry(DXVA_PicEntry_H264 *pic, unsigned index, unsigned flag)
Definition dxva2_h264.c:44
static int get_refpic_index(const DXVA_PicParams_H264 *pp, int surface_index)
Definition dxva2_h264.c:211
static int dxva2_h264_start_frame(AVCodecContext *avctx, av_unused const AVBufferRef *buffer_ref, av_unused const uint8_t *buffer, av_unused uint32_t size)
Definition dxva2_h264.c:446
void ff_dxva2_h264_fill_picture_parameters(const AVCodecContext *avctx, AVDXVAContext *ctx, DXVA_PicParams_H264 *pp)
Definition dxva2_h264.c:51
static int dxva2_h264_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition dxva2_h264.c:471
static int dxva2_h264_end_frame(AVCodecContext *avctx)
Definition dxva2_h264.c:503
static void fill_slice_long(AVCodecContext *avctx, DXVA_Slice_H264_Long *slice, const DXVA_PicParams_H264 *pp, unsigned position, unsigned size)
Definition dxva2_h264.c:221
#define DXVA_CONTEXT(avctx)
#define DXVA_CONTEXT_CFG_BITSTREAM(avctx, ctx)
#define DXVA2_CONTEXT(ctx)
#define FF_DXVA2_WORKAROUND_INTEL_CLEARVIDEO
Work around for DXVA2/Direct3D11 and old Intel GPUs with ClearVideo interface.
#define FF_DXVA2_WORKAROUND_SCALING_LIST_ZIGZAG
Work around for DXVA2/Direct3D11 and old UVD/UVD+ ATI video cards.
#define D3D11VA_CONTEXT(ctx)
#define DXVA_CONTEXT_REPORT_ID(avctx, ctx)
#define DXVA_CONTEXT_WORKAROUND(avctx, ctx)
#define DXVA_CONTEXT_VALID(avctx, ctx)
void DECODER_BUFFER_DESC
#define MAX_SLICES
Definition dxva2_vc1.c:32
static struct @111144215057303131116103221376075045141373005341 current
static int get_bits_count(const GetBitContext *s)
Definition get_bits.h:254
@ AV_CODEC_ID_H264
Definition codec_id.h:77
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_SI
Switching Intra.
Definition avutil.h:282
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition avutil.h:280
int index
Definition gxfenc.c:90
H.264 parameter set handling.
int ff_h264_get_slice_type(const H264SliceContext *sl)
Reconstruct bitstream slice_type.
H.264 / AVC / MPEG-4 part10 codec.
#define FIELD_OR_MBAFF_PICTURE(h)
Definition h264dec.h:82
const struct FFHWAccel ff_h264_d3d11va2_hwaccel
const struct FFHWAccel ff_h264_d3d11va_hwaccel
const struct FFHWAccel ff_h264_dxva2_hwaccel
cl_device_type type
#define r
Definition input.c:42
static const chunk_decoder decoder[8]
Definition dfa.c:331
void ff_h264_draw_horiz_band(const H264Context *h, H264SliceContext *sl, int y, int height)
Definition h264dec.c:104
#define av_unused
Definition attributes.h:164
uint8_t w
Definition llvidencdsp.c:39
#define FFMIN(a, b)
Definition macros.h:49
const uint8_t ff_zigzag_direct[64]
Definition mathtables.c:137
const uint8_t ff_zigzag_scan[16+1]
Definition mathtables.c:148
#define PICT_TOP_FIELD
Definition mpegutils.h:31
#define PICT_BOTTOM_FIELD
Definition mpegutils.h:32
#define PICT_FRAME
Definition mpegutils.h:33
@ AV_PIX_FMT_DXVA2_VLD
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer.
Definition pixfmt.h:134
@ AV_PIX_FMT_D3D11
Hardware surfaces for Direct3D11.
Definition pixfmt.h:336
@ AV_PIX_FMT_D3D11VA_VLD
HW decoding through Direct3D11 via old API, Picture.data[3] contains a ID3D11VideoDecoderOutputView p...
Definition pixfmt.h:254
#define FF_ARRAY_ELEMS(a)
A reference to a data buffer.
Definition buffer.h:82
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
void * priv_data
Definition avcodec.h:470
H264Context.
Definition h264dec.h:338
void * hwaccel_picture_private
RefStruct reference for hardware accelerator private data.
Definition h264dec.h:128
AVFrame * f
Definition h264dec.h:113
int field_poc[2]
top/bottom POC
Definition h264dec.h:132
int luma_weight[48][2][2]
Definition h264_parse.h:77
int chroma_weight_flag[2]
7.4.3.2 chroma_weight_lX_flag
Definition h264_parse.h:75
int luma_weight_flag[2]
7.4.3.2 luma_weight_lX_flag
Definition h264_parse.h:74
int chroma_weight[48][2][2][2]
Definition h264_parse.h:78
const H264Picture * parent
Definition h264dec.h:175
int reference
Definition h264dec.h:171
unsigned int list_count
Definition h264dec.h:269
H264PredWeightTable pwt
Definition h264dec.h:198
int redundant_pic_count
Definition h264dec.h:245
int deblocking_filter
disable_deblocking_filter_idc with 1 <-> 0
Definition h264dec.h:194
H264Ref ref_list[2][48]
0..15: frame refs, 16..47: mbaff field refs.
Definition h264dec.h:270
int direct_spatial_mv_pred
Definition h264dec.h:252
GetBitContext gb
Definition h264dec.h:180
int slice_alpha_c0_offset
Definition h264dec.h:195
int slice_beta_offset
Definition h264dec.h:196
unsigned int ref_count[2]
num_ref_idx_l0/1_active_minus1 + 1
Definition h264dec.h:268
Picture parameter set.
Definition h264_ps.h:110
Sequence parameter set.
Definition h264_ps.h:44
DXVA_SliceInfo slice[MAX_SLICES]
Definition dxva2_mpeg2.c:37
DXVA_PicParams_H264 pp
Definition dxva2_h264.c:35
const uint8_t * bitstream
Definition dxva2_h264.c:40
DXVA_Slice_H264_Long slice_long[MAX_SLICES]
Definition dxva2_h264.c:39
DXVA_Qmatrix_H264 qm
Definition dxva2_h264.c:36
DXVA_Slice_H264_Short slice_short[MAX_SLICES]
Definition dxva2_h264.c:38
#define av_log(a,...)
static char buffer[20]
Definition seek.c:32
int size
static const uint8_t start_code[]