FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
dxva2_hevc.c
Go to the documentation of this file.
1 /*
2  * DXVA2 HEVC HW acceleration.
3  *
4  * copyright (c) 2014 - 2015 Hendrik Leppkes
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 "libavutil/avassert.h"
24 
25 #include "dxva2_internal.h"
26 #include "hevc.h"
27 
28 #define MAX_SLICES 256
29 
31  DXVA_PicParams_HEVC pp;
32  DXVA_Qmatrix_HEVC qm;
33  unsigned slice_count;
34  DXVA_Slice_HEVC_Short slice_short[MAX_SLICES];
36  unsigned bitstream_size;
37 };
38 
39 static void fill_picture_entry(DXVA_PicEntry_HEVC *pic,
40  unsigned index, unsigned flag)
41 {
42  av_assert0((index & 0x7f) == index && (flag & 0x01) == flag);
43  pic->bPicEntry = index | (flag << 7);
44 }
45 
46 static int get_refpic_index(const DXVA_PicParams_HEVC *pp, int surface_index)
47 {
48  int i;
49  for (i = 0; i < FF_ARRAY_ELEMS(pp->RefPicList); i++) {
50  if ((pp->RefPicList[i].bPicEntry & 0x7f) == surface_index)
51  return i;
52  }
53  return 0xff;
54 }
55 
56 static void fill_picture_parameters(const AVCodecContext *avctx, AVDXVAContext *ctx, const HEVCContext *h,
57  DXVA_PicParams_HEVC *pp)
58 {
59  const HEVCFrame *current_picture = h->ref;
60  const HEVCSPS *sps = h->ps.sps;
61  const HEVCPPS *pps = h->ps.pps;
62  int i, j;
63 
64  memset(pp, 0, sizeof(*pp));
65 
66  pp->PicWidthInMinCbsY = sps->min_cb_width;
67  pp->PicHeightInMinCbsY = sps->min_cb_height;
68 
69  pp->wFormatAndSequenceInfoFlags = (sps->chroma_format_idc << 0) |
70  (sps->separate_colour_plane_flag << 2) |
71  ((sps->bit_depth - 8) << 3) |
72  ((sps->bit_depth - 8) << 6) |
73  ((sps->log2_max_poc_lsb - 4) << 9) |
74  (0 << 13) |
75  (0 << 14) |
76  (0 << 15);
77 
78  fill_picture_entry(&pp->CurrPic, ff_dxva2_get_surface_index(avctx, ctx, current_picture->frame), 0);
79 
80  pp->sps_max_dec_pic_buffering_minus1 = sps->temporal_layer[sps->max_sub_layers - 1].max_dec_pic_buffering - 1;
81  pp->log2_min_luma_coding_block_size_minus3 = sps->log2_min_cb_size - 3;
82  pp->log2_diff_max_min_luma_coding_block_size = sps->log2_diff_max_min_coding_block_size;
83  pp->log2_min_transform_block_size_minus2 = sps->log2_min_tb_size - 2;
84  pp->log2_diff_max_min_transform_block_size = sps->log2_max_trafo_size - sps->log2_min_tb_size;
85  pp->max_transform_hierarchy_depth_inter = sps->max_transform_hierarchy_depth_inter;
86  pp->max_transform_hierarchy_depth_intra = sps->max_transform_hierarchy_depth_intra;
87  pp->num_short_term_ref_pic_sets = sps->nb_st_rps;
88  pp->num_long_term_ref_pics_sps = sps->num_long_term_ref_pics_sps;
89 
90  pp->num_ref_idx_l0_default_active_minus1 = pps->num_ref_idx_l0_default_active - 1;
91  pp->num_ref_idx_l1_default_active_minus1 = pps->num_ref_idx_l1_default_active - 1;
92  pp->init_qp_minus26 = pps->pic_init_qp_minus26;
93 
95  pp->ucNumDeltaPocsOfRefRpsIdx = h->sh.short_term_rps->rps_idx_num_delta_pocs;
96  pp->wNumBitsForShortTermRPSInSlice = h->sh.short_term_ref_pic_set_size;
97  }
98 
99  pp->dwCodingParamToolFlags = (sps->scaling_list_enable_flag << 0) |
100  (sps->amp_enabled_flag << 1) |
101  (sps->sao_enabled << 2) |
102  (sps->pcm_enabled_flag << 3) |
103  ((sps->pcm_enabled_flag ? (sps->pcm.bit_depth - 1) : 0) << 4) |
104  ((sps->pcm_enabled_flag ? (sps->pcm.bit_depth_chroma - 1) : 0) << 8) |
105  ((sps->pcm_enabled_flag ? (sps->pcm.log2_min_pcm_cb_size - 3) : 0) << 12) |
106  ((sps->pcm_enabled_flag ? (sps->pcm.log2_max_pcm_cb_size - sps->pcm.log2_min_pcm_cb_size) : 0) << 14) |
107  (sps->pcm.loop_filter_disable_flag << 16) |
108  (sps->long_term_ref_pics_present_flag << 17) |
109  (sps->sps_temporal_mvp_enabled_flag << 18) |
112  (pps->output_flag_present_flag << 21) |
113  (pps->num_extra_slice_header_bits << 22) |
114  (pps->sign_data_hiding_flag << 25) |
115  (pps->cabac_init_present_flag << 26) |
116  (0 << 27);
117 
118  pp->dwCodingSettingPicturePropertyFlags = (pps->constrained_intra_pred_flag << 0) |
119  (pps->transform_skip_enabled_flag << 1) |
120  (pps->cu_qp_delta_enabled_flag << 2) |
122  (pps->weighted_pred_flag << 4) |
123  (pps->weighted_bipred_flag << 5) |
124  (pps->transquant_bypass_enable_flag << 6) |
125  (pps->tiles_enabled_flag << 7) |
127  (pps->uniform_spacing_flag << 9) |
131  (pps->disable_dbf << 13) |
132  (pps->lists_modification_present_flag << 14) |
134  (IS_IRAP(h) << 16) |
135  (IS_IDR(h) << 17) |
136  /* IntraPicFlag */
137  (IS_IRAP(h) << 18) |
138  (0 << 19);
139  pp->pps_cb_qp_offset = pps->cb_qp_offset;
140  pp->pps_cr_qp_offset = pps->cr_qp_offset;
141  if (pps->tiles_enabled_flag) {
142  pp->num_tile_columns_minus1 = pps->num_tile_columns - 1;
143  pp->num_tile_rows_minus1 = pps->num_tile_rows - 1;
144 
145  if (!pps->uniform_spacing_flag) {
146  for (i = 0; i < pps->num_tile_columns; i++)
147  pp->column_width_minus1[i] = pps->column_width[i] - 1;
148 
149  for (i = 0; i < pps->num_tile_rows; i++)
150  pp->row_height_minus1[i] = pps->row_height[i] - 1;
151  }
152  }
153 
154  pp->diff_cu_qp_delta_depth = pps->diff_cu_qp_delta_depth;
155  pp->pps_beta_offset_div2 = pps->beta_offset / 2;
156  pp->pps_tc_offset_div2 = pps->tc_offset / 2;
157  pp->log2_parallel_merge_level_minus2 = pps->log2_parallel_merge_level - 2;
158  pp->CurrPicOrderCntVal = h->poc;
159 
160  // fill RefPicList from the DPB
161  for (i = 0, j = 0; i < FF_ARRAY_ELEMS(pp->RefPicList); i++) {
162  const HEVCFrame *frame = NULL;
163  while (!frame && j < FF_ARRAY_ELEMS(h->DPB)) {
164  if (&h->DPB[j] != current_picture && (h->DPB[j].flags & (HEVC_FRAME_FLAG_LONG_REF | HEVC_FRAME_FLAG_SHORT_REF)))
165  frame = &h->DPB[j];
166  j++;
167  }
168 
169  if (frame) {
170  fill_picture_entry(&pp->RefPicList[i], ff_dxva2_get_surface_index(avctx, ctx, frame->frame), !!(frame->flags & HEVC_FRAME_FLAG_LONG_REF));
171  pp->PicOrderCntValList[i] = frame->poc;
172  } else {
173  pp->RefPicList[i].bPicEntry = 0xff;
174  pp->PicOrderCntValList[i] = 0;
175  }
176  }
177 
178  #define DO_REF_LIST(ref_idx, ref_list) { \
179  const RefPicList *rpl = &h->rps[ref_idx]; \
180  for (i = 0, j = 0; i < FF_ARRAY_ELEMS(pp->ref_list); i++) { \
181  const HEVCFrame *frame = NULL; \
182  while (!frame && j < rpl->nb_refs) \
183  frame = rpl->ref[j++]; \
184  if (frame) \
185  pp->ref_list[i] = get_refpic_index(pp, ff_dxva2_get_surface_index(avctx, ctx, frame->frame)); \
186  else \
187  pp->ref_list[i] = 0xff; \
188  } \
189  }
190 
191  // Fill short term and long term lists
192  DO_REF_LIST(ST_CURR_BEF, RefPicSetStCurrBefore);
193  DO_REF_LIST(ST_CURR_AFT, RefPicSetStCurrAfter);
194  DO_REF_LIST(LT_CURR, RefPicSetLtCurr);
195 
196  pp->StatusReportFeedbackNumber = 1 + DXVA_CONTEXT_REPORT_ID(avctx, ctx)++;
197 }
198 
199 static void fill_scaling_lists(AVDXVAContext *ctx, const HEVCContext *h, DXVA_Qmatrix_HEVC *qm)
200 {
201  unsigned i, j, pos;
203  &h->ps.pps->scaling_list : &h->ps.sps->scaling_list;
204 
205  memset(qm, 0, sizeof(*qm));
206  for (i = 0; i < 6; i++) {
207  for (j = 0; j < 16; j++) {
209  qm->ucScalingLists0[i][j] = sl->sl[0][i][pos];
210  }
211 
212  for (j = 0; j < 64; j++) {
214  qm->ucScalingLists1[i][j] = sl->sl[1][i][pos];
215  qm->ucScalingLists2[i][j] = sl->sl[2][i][pos];
216 
217  if (i < 2)
218  qm->ucScalingLists3[i][j] = sl->sl[3][i * 3][pos];
219  }
220 
221  qm->ucScalingListDCCoefSizeID2[i] = sl->sl_dc[0][i];
222  if (i < 2)
223  qm->ucScalingListDCCoefSizeID3[i] = sl->sl_dc[1][i * 3];
224  }
225 }
226 
227 static void fill_slice_short(DXVA_Slice_HEVC_Short *slice,
228  unsigned position, unsigned size)
229 {
230  memset(slice, 0, sizeof(*slice));
231  slice->BSNALunitDataLocation = position;
232  slice->SliceBytesInBuffer = size;
233  slice->wBadSliceChopping = 0;
234 }
235 
239 {
240  const HEVCContext *h = avctx->priv_data;
241  AVDXVAContext *ctx = avctx->hwaccel_context;
242  const HEVCFrame *current_picture = h->ref;
243  struct hevc_dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
244  DXVA_Slice_HEVC_Short *slice = NULL;
245  void *dxva_data_ptr;
246  uint8_t *dxva_data, *current, *end;
247  unsigned dxva_size;
248  void *slice_data;
249  unsigned slice_size;
250  unsigned padding;
251  unsigned i;
252  unsigned type;
253 
254  /* Create an annex B bitstream buffer with only slice NAL and finalize slice */
255 #if CONFIG_D3D11VA
256  if (avctx->pix_fmt == AV_PIX_FMT_D3D11VA_VLD) {
257  type = D3D11_VIDEO_DECODER_BUFFER_BITSTREAM;
258  if (FAILED(ID3D11VideoContext_GetDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context,
259  D3D11VA_CONTEXT(ctx)->decoder,
260  type,
261  &dxva_size, &dxva_data_ptr)))
262  return -1;
263  }
264 #endif
265 #if CONFIG_DXVA2
266  if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
267  type = DXVA2_BitStreamDateBufferType;
268  if (FAILED(IDirectXVideoDecoder_GetBuffer(DXVA2_CONTEXT(ctx)->decoder,
269  type,
270  &dxva_data_ptr, &dxva_size)))
271  return -1;
272  }
273 #endif
274 
275  dxva_data = dxva_data_ptr;
276  current = dxva_data;
277  end = dxva_data + dxva_size;
278 
279  for (i = 0; i < ctx_pic->slice_count; i++) {
280  static const uint8_t start_code[] = { 0, 0, 1 };
281  static const unsigned start_code_size = sizeof(start_code);
282  unsigned position, size;
283 
284  slice = &ctx_pic->slice_short[i];
285 
286  position = slice->BSNALunitDataLocation;
287  size = slice->SliceBytesInBuffer;
288  if (start_code_size + size > end - current) {
289  av_log(avctx, AV_LOG_ERROR, "Failed to build bitstream");
290  break;
291  }
292 
293  slice->BSNALunitDataLocation = current - dxva_data;
294  slice->SliceBytesInBuffer = start_code_size + size;
295 
296  memcpy(current, start_code, start_code_size);
297  current += start_code_size;
298 
299  memcpy(current, &ctx_pic->bitstream[position], size);
300  current += size;
301  }
302  padding = FFMIN(128 - ((current - dxva_data) & 127), end - current);
303  if (slice && padding > 0) {
304  memset(current, 0, padding);
305  current += padding;
306 
307  slice->SliceBytesInBuffer += padding;
308  }
309 #if CONFIG_D3D11VA
310  if (avctx->pix_fmt == AV_PIX_FMT_D3D11VA_VLD)
311  if (FAILED(ID3D11VideoContext_ReleaseDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context, D3D11VA_CONTEXT(ctx)->decoder, type)))
312  return -1;
313 #endif
314 #if CONFIG_DXVA2
315  if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD)
316  if (FAILED(IDirectXVideoDecoder_ReleaseBuffer(DXVA2_CONTEXT(ctx)->decoder, type)))
317  return -1;
318 #endif
319  if (i < ctx_pic->slice_count)
320  return -1;
321 
322 #if CONFIG_D3D11VA
323  if (avctx->pix_fmt == AV_PIX_FMT_D3D11VA_VLD) {
324  D3D11_VIDEO_DECODER_BUFFER_DESC *dsc11 = bs;
325  memset(dsc11, 0, sizeof(*dsc11));
326  dsc11->BufferType = type;
327  dsc11->DataSize = current - dxva_data;
328  dsc11->NumMBsInBuffer = 0;
329 
330  type = D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL;
331  }
332 #endif
333 #if CONFIG_DXVA2
334  if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
335  DXVA2_DecodeBufferDesc *dsc2 = bs;
336  memset(dsc2, 0, sizeof(*dsc2));
337  dsc2->CompressedBufferType = type;
338  dsc2->DataSize = current - dxva_data;
339  dsc2->NumMBsInBuffer = 0;
340 
341  type = DXVA2_SliceControlBufferType;
342  }
343 #endif
344 
345  slice_data = ctx_pic->slice_short;
346  slice_size = ctx_pic->slice_count * sizeof(*ctx_pic->slice_short);
347 
348  av_assert0(((current - dxva_data) & 127) == 0);
349  return ff_dxva2_commit_buffer(avctx, ctx, sc,
350  type,
351  slice_data, slice_size, 0);
352 }
353 
354 
356  av_unused const uint8_t *buffer,
357  av_unused uint32_t size)
358 {
359  const HEVCContext *h = avctx->priv_data;
360  AVDXVAContext *ctx = avctx->hwaccel_context;
362 
363  if (DXVA_CONTEXT_DECODER(avctx, ctx) == NULL ||
364  DXVA_CONTEXT_CFG(avctx, ctx) == NULL ||
365  DXVA_CONTEXT_COUNT(avctx, ctx) <= 0)
366  return -1;
367  av_assert0(ctx_pic);
368 
369  /* Fill up DXVA_PicParams_HEVC */
370  fill_picture_parameters(avctx, ctx, h, &ctx_pic->pp);
371 
372  /* Fill up DXVA_Qmatrix_HEVC */
373  fill_scaling_lists(ctx, h, &ctx_pic->qm);
374 
375  ctx_pic->slice_count = 0;
376  ctx_pic->bitstream_size = 0;
377  ctx_pic->bitstream = NULL;
378  return 0;
379 }
380 
382  const uint8_t *buffer,
383  uint32_t size)
384 {
385  const HEVCContext *h = avctx->priv_data;
386  const HEVCFrame *current_picture = h->ref;
387  struct hevc_dxva2_picture_context *ctx_pic = current_picture->hwaccel_picture_private;
388  unsigned position;
389 
390  if (ctx_pic->slice_count >= MAX_SLICES)
391  return -1;
392 
393  if (!ctx_pic->bitstream)
394  ctx_pic->bitstream = buffer;
395  ctx_pic->bitstream_size += size;
396 
397  position = buffer - ctx_pic->bitstream;
398  fill_slice_short(&ctx_pic->slice_short[ctx_pic->slice_count], position, size);
399  ctx_pic->slice_count++;
400 
401  return 0;
402 }
403 
405 {
406  HEVCContext *h = avctx->priv_data;
408  int scale = ctx_pic->pp.dwCodingParamToolFlags & 1;
409  int ret;
410 
411  if (ctx_pic->slice_count <= 0 || ctx_pic->bitstream_size <= 0)
412  return -1;
413 
414  ret = ff_dxva2_common_end_frame(avctx, h->ref->frame,
415  &ctx_pic->pp, sizeof(ctx_pic->pp),
416  scale ? &ctx_pic->qm : NULL, scale ? sizeof(ctx_pic->qm) : 0,
418  return ret;
419 }
420 
421 #if CONFIG_HEVC_DXVA2_HWACCEL
422 AVHWAccel ff_hevc_dxva2_hwaccel = {
423  .name = "hevc_dxva2",
424  .type = AVMEDIA_TYPE_VIDEO,
425  .id = AV_CODEC_ID_HEVC,
426  .pix_fmt = AV_PIX_FMT_DXVA2_VLD,
427  .start_frame = dxva2_hevc_start_frame,
428  .decode_slice = dxva2_hevc_decode_slice,
429  .end_frame = dxva2_hevc_end_frame,
430  .frame_priv_data_size = sizeof(struct hevc_dxva2_picture_context),
431 };
432 #endif
433 
434 #if CONFIG_HEVC_D3D11VA_HWACCEL
435 AVHWAccel ff_hevc_d3d11va_hwaccel = {
436  .name = "hevc_d3d11va",
437  .type = AVMEDIA_TYPE_VIDEO,
438  .id = AV_CODEC_ID_HEVC,
439  .pix_fmt = AV_PIX_FMT_D3D11VA_VLD,
440  .start_frame = dxva2_hevc_start_frame,
441  .decode_slice = dxva2_hevc_decode_slice,
442  .end_frame = dxva2_hevc_end_frame,
443  .frame_priv_data_size = sizeof(struct hevc_dxva2_picture_context),
444 };
445 #endif
const HEVCPPS * pps
Definition: hevc.h:569
AVFrame * frame
Definition: hevc.h:719
#define NULL
Definition: coverity.c:32
unsigned int log2_min_cb_size
Definition: hevc.h:450
int short_term_ref_pic_set_sps_flag
Definition: hevc.h:590
HEVCFrame * ref
Definition: hevc.h:857
static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *sc)
Definition: dxva2_hevc.c:236
int max_dec_pic_buffering
Definition: hevc.h:418
const uint8_t * bitstream
Definition: dxva2_hevc.c:35
unsigned int * row_height
RowHeight.
Definition: hevc.h:548
void * hwaccel_picture_private
Definition: hevc.h:735
int pic_init_qp_minus26
Definition: hevc.h:496
const uint8_t ff_hevc_diag_scan4x4_x[16]
Definition: hevc_data.c:25
uint8_t weighted_bipred_flag
Definition: hevc.h:508
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1722
uint8_t seq_loop_filter_across_slices_enabled_flag
Definition: hevc.h:521
uint8_t cabac_init_present_flag
Definition: hevc.h:492
static void fill_slice_short(DXVA_Slice_HEVC_Short *slice, unsigned position, unsigned size)
Definition: dxva2_hevc.c:227
HEVCParamSets ps
Definition: hevc.h:844
int min_cb_height
Definition: hevc.h:474
int num_ref_idx_l0_default_active
num_ref_idx_l0_default_active_minus1 + 1
Definition: hevc.h:494
uint8_t entropy_coding_sync_enabled_flag
Definition: hevc.h:514
int log2_parallel_merge_level
log2_parallel_merge_level_minus2 + 2
Definition: hevc.h:533
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static int get_refpic_index(const DXVA_PicParams_HEVC *pp, int surface_index)
Definition: dxva2_hevc.c:46
int chroma_format_idc
Definition: hevc.h:400
uint8_t disable_dbf
Definition: hevc.h:525
unsigned int log2_max_trafo_size
Definition: hevc.h:453
DXVA_Qmatrix_HEVC qm
Definition: dxva2_hevc.c:32
uint8_t
void * hwaccel_context
Hardware accelerator context.
Definition: avcodec.h:2934
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
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:126
int num_ref_idx_l1_default_active
num_ref_idx_l1_default_active_minus1 + 1
Definition: hevc.h:495
unsigned int log2_min_pcm_cb_size
Definition: hevc.h:443
int min_cb_width
Definition: hevc.h:473
static AVFrame * frame
DXVA_Slice_HEVC_Short slice_short[MAX_SLICES]
Definition: dxva2_hevc.c:34
uint8_t scaling_list_data_present_flag
Definition: hevc.h:529
uint8_t bit_depth_chroma
Definition: hevc.h:442
uint8_t loop_filter_disable_flag
Definition: hevc.h:445
ptrdiff_t size
Definition: opengl_enc.c:101
uint8_t transquant_bypass_enable_flag
Definition: hevc.h:510
#define av_log(a,...)
int flag
Definition: checkasm.c:76
#define HEVC_FRAME_FLAG_LONG_REF
Definition: hevc.h:715
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
Definition: hevc.h:125
unsigned int log2_max_poc_lsb
Definition: hevc.h:413
uint8_t amp_enabled_flag
Definition: hevc.h:432
simple assert() macros that are a bit more flexible than ISO C assert().
const ShortTermRPS * short_term_rps
Definition: hevc.h:593
#define MAX_SLICES
Definition: dxva2_hevc.c:28
static void fill_picture_parameters(const AVCodecContext *avctx, AVDXVAContext *ctx, const HEVCContext *h, DXVA_PicParams_HEVC *pp)
Definition: dxva2_hevc.c:56
uint8_t tiles_enabled_flag
Definition: hevc.h:513
const HEVCSPS * sps
Definition: hevc.h:568
uint8_t lists_modification_present_flag
Definition: hevc.h:532
#define HEVC_FRAME_FLAG_SHORT_REF
Definition: hevc.h:714
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:3583
int max_transform_hierarchy_depth_inter
Definition: hevc.h:457
#define IS_IDR(s)
Definition: hevc.h:85
#define FFMIN(a, b)
Definition: common.h:81
int num_tile_columns
num_tile_columns_minus1 + 1
Definition: hevc.h:516
static const chunk_decoder decoder[8]
Definition: dfa.c:327
uint8_t cu_qp_delta_enabled_flag
Definition: hevc.h:501
static void fill_scaling_lists(AVDXVAContext *ctx, const HEVCContext *h, DXVA_Qmatrix_HEVC *qm)
Definition: dxva2_hevc.c:199
uint8_t sl_dc[2][6]
Definition: hevc.h:395
uint8_t sign_data_hiding_flag
Definition: hevc.h:490
uint8_t output_flag_present_flag
Definition: hevc.h:509
#define FF_ARRAY_ELEMS(a)
uint8_t constrained_intra_pred_flag
Definition: hevc.h:498
uint8_t sl[4][6][64]
Definition: hevc.h:394
uint8_t pic_slice_level_chroma_qp_offsets_present_flag
Definition: hevc.h:506
HEVCFrame DPB[32]
Definition: hevc.h:858
Definition: hevc.h:398
Definition: hevc.h:487
uint8_t transform_skip_enabled_flag
Definition: hevc.h:499
int short_term_ref_pic_set_size
Definition: hevc.h:591
#define IS_IRAP(s)
Definition: hevc.h:88
uint8_t uniform_spacing_flag
Definition: hevc.h:518
int max_sub_layers
Definition: hevc.h:416
unsigned ff_dxva2_get_surface_index(const AVCodecContext *avctx, const AVDXVAContext *ctx, const AVFrame *frame)
Definition: dxva2.c:38
ScalingList scaling_list
Definition: hevc.h:530
main external API structure.
Definition: avcodec.h:1502
struct HEVCSPS::@51 pcm
uint8_t sao_enabled
Definition: hevc.h:433
int num_extra_slice_header_bits
Definition: hevc.h:534
static void fill_picture_entry(DXVA_PicEntry_HEVC *pic, unsigned index, unsigned flag)
Definition: dxva2_hevc.c:39
uint8_t loop_filter_across_tiles_enabled_flag
Definition: hevc.h:519
uint8_t num_long_term_ref_pics_sps
Definition: hevc.h:438
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:53
GLint GLenum type
Definition: opengl_enc.c:105
uint8_t sps_temporal_mvp_enabled_flag
Definition: hevc.h:447
unsigned int nb_st_rps
Definition: hevc.h:429
int num_tile_rows
num_tile_rows_minus1 + 1
Definition: hevc.h:517
int index
Definition: gxfenc.c:89
const uint8_t ff_hevc_diag_scan8x8_y[64]
Definition: hevc_data.c:58
int poc
Definition: hevc.h:725
unsigned int log2_min_tb_size
Definition: hevc.h:452
int poc
Definition: hevc.h:859
void DECODER_BUFFER_DESC
uint8_t scaling_list_enable_flag
Definition: hevc.h:426
int tc_offset
tc_offset_div2 * 2
Definition: hevc.h:527
HW decoding through DXVA2, Picture.data[3] contains a LPDIRECT3DSURFACE9 pointer. ...
Definition: pixfmt.h:149
uint8_t flags
A combination of HEVC_FRAME_FLAG_*.
Definition: hevc.h:746
static const uint8_t start_code[]
Definition: h264.c:1292
int cr_qp_offset
Definition: hevc.h:505
ScalingList scaling_list
Definition: hevc.h:427
unsigned int log2_diff_max_min_coding_block_size
Definition: hevc.h:451
#define FAILED(hr)
Definition: windows2linux.h:48
unsigned int log2_max_pcm_cb_size
Definition: hevc.h:444
int max_transform_hierarchy_depth_intra
Definition: hevc.h:458
#define DO_REF_LIST(ref_idx, ref_list)
uint8_t weighted_pred_flag
Definition: hevc.h:507
unsigned int * column_width
ColumnWidth.
Definition: hevc.h:547
static int dxva2_hevc_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: dxva2_hevc.c:381
uint8_t slice_header_extension_present_flag
Definition: hevc.h:535
void * priv_data
Definition: avcodec.h:1544
uint8_t sps_strong_intra_smoothing_enable_flag
Definition: hevc.h:448
int rps_idx_num_delta_pocs
Definition: hevc.h:279
uint8_t long_term_ref_pics_present_flag
Definition: hevc.h:435
int diff_cu_qp_delta_depth
Definition: hevc.h:502
const uint8_t ff_hevc_diag_scan8x8_x[64]
Definition: hevc_data.c:39
struct HEVCSPS::@50 temporal_layer[MAX_SUB_LAYERS]
HW decoding through Direct3D11, Picture.data[3] contains a ID3D11VideoDecoderOutputView pointer...
Definition: pixfmt.h:268
static int dxva2_hevc_end_frame(AVCodecContext *avctx)
Definition: dxva2_hevc.c:404
int cb_qp_offset
Definition: hevc.h:504
uint8_t deblocking_filter_override_enabled_flag
Definition: hevc.h:524
int bit_depth
Definition: hevc.h:409
int beta_offset
beta_offset_div2 * 2
Definition: hevc.h:526
DXVA_PicParams_HEVC pp
Definition: dxva2_hevc.c:31
SliceHeader sh
Definition: hevc.h:852
int pcm_enabled_flag
Definition: hevc.h:414
static int dxva2_hevc_start_frame(AVCodecContext *avctx, av_unused const uint8_t *buffer, av_unused uint32_t size)
Definition: dxva2_hevc.c:355
for(j=16;j >0;--j)
uint8_t separate_colour_plane_flag
output (i.e. cropped) values
Definition: hevc.h:401
const uint8_t ff_hevc_diag_scan4x4_y[16]
Definition: hevc_data.c:32
GLuint buffer
Definition: opengl_enc.c:102
#define av_unused
Definition: attributes.h:118
uint8_t dependent_slice_segments_enabled_flag
Definition: hevc.h:512