FFmpeg
Loading...
Searching...
No Matches
dxva2_vp9.c
Go to the documentation of this file.
1/*
2 * DXVA2 VP9 HW acceleration.
3 *
4 * copyright (c) 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 "config_components.h"
24
25#include "libavutil/avassert.h"
26#include "libavutil/pixdesc.h"
27
28#include "dxva2_internal.h"
29#include "hwaccel_internal.h"
30#include "vp9shared.h"
31
33 DXVA_PicParams_VP9 pp;
34 DXVA_Slice_VPx_Short slice;
35 const uint8_t *bitstream;
37};
38
39static void fill_picture_entry(DXVA_PicEntry_VPx *pic,
40 unsigned index, unsigned flag)
41{
42 av_assert0((index & 0x7f) == index && (flag & 0x01) == flag);
43 pic->bPicEntry = index | (flag << 7);
44}
45
47 DXVA_PicParams_VP9 *pp)
48{
49 const VP9SharedContext *h = avctx->priv_data;
50 const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(avctx->sw_pix_fmt);
51 int i;
52
53 if (!pixdesc)
54 return -1;
55
56 memset(pp, 0, sizeof(*pp));
57
58 pp->profile = h->h.profile;
59 pp->wFormatAndPictureInfoFlags = ((h->h.keyframe == 0) << 0) |
60 ((h->h.invisible == 0) << 1) |
61 (h->h.errorres << 2) |
62 (pixdesc->log2_chroma_w << 3) | /* subsampling_x */
63 (pixdesc->log2_chroma_h << 4) | /* subsampling_y */
64 (0 << 5) | /* extra_plane */
65 (h->h.refreshctx << 6) |
66 (h->h.parallelmode << 7) |
67 (h->h.intraonly << 8) |
68 (h->h.framectxid << 9) |
69 (h->h.resetctx << 11) |
70 ((h->h.keyframe ? 0 : h->h.highprecisionmvs) << 13) |
71 (0 << 14); /* ReservedFormatInfo2Bits */
72
73 pp->width = avctx->width;
74 pp->height = avctx->height;
75 pp->BitDepthMinus8Luma = pixdesc->comp[0].depth - 8;
76 pp->BitDepthMinus8Chroma = pixdesc->comp[1].depth - 8;
77 /* swap 0/1 to match the reference */
78 pp->interp_filter = h->h.filtermode ^ (h->h.filtermode <= 1);
79 pp->Reserved8Bits = 0;
80
81 for (i = 0; i < 8; i++) {
82 if (h->refs[i].f) {
83 fill_picture_entry(&pp->ref_frame_map[i], ff_dxva2_get_surface_index(avctx, ctx, h->refs[i].f, 0), 0);
84 pp->ref_frame_coded_width[i] = h->refs[i].f->width;
85 pp->ref_frame_coded_height[i] = h->refs[i].f->height;
86 } else
87 pp->ref_frame_map[i].bPicEntry = 0xFF;
88 }
89
90 for (i = 0; i < 3; i++) {
91 uint8_t refidx = h->h.refidx[i];
92 if (h->refs[refidx].f)
93 fill_picture_entry(&pp->frame_refs[i], ff_dxva2_get_surface_index(avctx, ctx, h->refs[refidx].f, 0), 0);
94 else
95 pp->frame_refs[i].bPicEntry = 0xFF;
96
97 pp->ref_frame_sign_bias[i + 1] = h->h.signbias[i];
98 }
99
100 fill_picture_entry(&pp->CurrPic, ff_dxva2_get_surface_index(avctx, ctx, h->frames[CUR_FRAME].tf.f, 1), 0);
101
102 pp->filter_level = h->h.filter.level;
103 pp->sharpness_level = h->h.filter.sharpness;
104
105 pp->wControlInfoFlags = (h->h.lf_delta.enabled << 0) |
106 (h->h.lf_delta.updated << 1) |
107 (h->h.use_last_frame_mvs << 2) |
108 (0 << 3); /* ReservedControlInfo5Bits */
109
110 for (i = 0; i < 4; i++)
111 pp->ref_deltas[i] = h->h.lf_delta.ref[i];
112
113 for (i = 0; i < 2; i++)
114 pp->mode_deltas[i] = h->h.lf_delta.mode[i];
115
116 pp->base_qindex = h->h.yac_qi;
117 pp->y_dc_delta_q = h->h.ydc_qdelta;
118 pp->uv_dc_delta_q = h->h.uvdc_qdelta;
119 pp->uv_ac_delta_q = h->h.uvac_qdelta;
120
121 /* segmentation data */
122 pp->stVP9Segments.wSegmentInfoFlags = (h->h.segmentation.enabled << 0) |
123 (h->h.segmentation.update_map << 1) |
124 (h->h.segmentation.temporal << 2) |
125 (h->h.segmentation.absolute_vals << 3) |
126 (0 << 4); /* ReservedSegmentFlags4Bits */
127
128 for (i = 0; i < 7; i++)
129 pp->stVP9Segments.tree_probs[i] = h->h.segmentation.prob[i];
130
131 if (h->h.segmentation.temporal)
132 for (i = 0; i < 3; i++)
133 pp->stVP9Segments.pred_probs[i] = h->h.segmentation.pred_prob[i];
134 else
135 memset(pp->stVP9Segments.pred_probs, 255, sizeof(pp->stVP9Segments.pred_probs));
136
137 for (i = 0; i < 8; i++) {
138 pp->stVP9Segments.feature_mask[i] = (h->h.segmentation.feat[i].q_enabled << 0) |
139 (h->h.segmentation.feat[i].lf_enabled << 1) |
140 (h->h.segmentation.feat[i].ref_enabled << 2) |
141 (h->h.segmentation.feat[i].skip_enabled << 3);
142
143 pp->stVP9Segments.feature_data[i][0] = h->h.segmentation.feat[i].q_val;
144 pp->stVP9Segments.feature_data[i][1] = h->h.segmentation.feat[i].lf_val;
145 pp->stVP9Segments.feature_data[i][2] = h->h.segmentation.feat[i].ref_val;
146 pp->stVP9Segments.feature_data[i][3] = 0; /* no data for skip */
147 }
148
149 pp->log2_tile_cols = h->h.tiling.log2_tile_cols;
150 pp->log2_tile_rows = h->h.tiling.log2_tile_rows;
151
152 pp->uncompressed_header_size_byte_aligned = h->h.uncompressed_header_size;
153 pp->first_partition_size = h->h.compressed_header_size;
154
155 pp->StatusReportFeedbackNumber = 1 + DXVA_CONTEXT_REPORT_ID(avctx, ctx)++;
156 return 0;
157}
158
159static void fill_slice_short(DXVA_Slice_VPx_Short *slice,
160 unsigned position, unsigned size)
161{
162 memset(slice, 0, sizeof(*slice));
163 slice->BSNALunitDataLocation = position;
164 slice->SliceBytesInBuffer = size;
165 slice->wBadSliceChopping = 0;
166}
167
171{
172 const VP9SharedContext *h = avctx->priv_data;
174 struct vp9_dxva2_picture_context *ctx_pic = h->frames[CUR_FRAME].hwaccel_picture_private;
175 void *dxva_data_ptr = NULL;
176 uint8_t *dxva_data;
177 unsigned dxva_size;
178 unsigned padding;
179 unsigned type;
180
181#if CONFIG_D3D11VA
182 if (ff_dxva2_is_d3d11(avctx)) {
183 type = D3D11_VIDEO_DECODER_BUFFER_BITSTREAM;
184 if (FAILED(ID3D11VideoContext_GetDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context,
186 type,
187 &dxva_size, &dxva_data_ptr)))
188 return -1;
189 }
190#endif
191#if CONFIG_DXVA2
192 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
193 type = DXVA2_BitStreamDateBufferType;
194 if (FAILED(IDirectXVideoDecoder_GetBuffer(DXVA2_CONTEXT(ctx)->decoder,
195 type,
196 &dxva_data_ptr, &dxva_size)))
197 return -1;
198 }
199#endif
200
201 dxva_data = dxva_data_ptr;
202
203 if (!dxva_data || ctx_pic->slice.SliceBytesInBuffer > dxva_size) {
204 av_log(avctx, AV_LOG_ERROR, "Failed to build bitstream");
205 return -1;
206 }
207
208 memcpy(dxva_data, ctx_pic->bitstream, ctx_pic->slice.SliceBytesInBuffer);
209
210 padding = FFMIN(128 - ((ctx_pic->slice.SliceBytesInBuffer) & 127), dxva_size - ctx_pic->slice.SliceBytesInBuffer);
211 if (padding > 0) {
212 memset(dxva_data + ctx_pic->slice.SliceBytesInBuffer, 0, padding);
213 ctx_pic->slice.SliceBytesInBuffer += padding;
214 }
215
216#if CONFIG_D3D11VA
217 if (ff_dxva2_is_d3d11(avctx))
218 if (FAILED(ID3D11VideoContext_ReleaseDecoderBuffer(D3D11VA_CONTEXT(ctx)->video_context, D3D11VA_CONTEXT(ctx)->decoder, type)))
219 return -1;
220#endif
221#if CONFIG_DXVA2
222 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD)
223 if (FAILED(IDirectXVideoDecoder_ReleaseBuffer(DXVA2_CONTEXT(ctx)->decoder, type)))
224 return -1;
225#endif
226
227#if CONFIG_D3D11VA
228 if (ff_dxva2_is_d3d11(avctx)) {
229 D3D11_VIDEO_DECODER_BUFFER_DESC *dsc11 = bs;
230 memset(dsc11, 0, sizeof(*dsc11));
231 dsc11->BufferType = type;
232 dsc11->DataSize = ctx_pic->slice.SliceBytesInBuffer;
233 dsc11->NumMBsInBuffer = 0;
234
235 type = D3D11_VIDEO_DECODER_BUFFER_SLICE_CONTROL;
236 }
237#endif
238#if CONFIG_DXVA2
239 if (avctx->pix_fmt == AV_PIX_FMT_DXVA2_VLD) {
240 DXVA2_DecodeBufferDesc *dsc2 = bs;
241 memset(dsc2, 0, sizeof(*dsc2));
242 dsc2->CompressedBufferType = type;
243 dsc2->DataSize = ctx_pic->slice.SliceBytesInBuffer;
244 dsc2->NumMBsInBuffer = 0;
245
246 type = DXVA2_SliceControlBufferType;
247 }
248#endif
249
250 return ff_dxva2_commit_buffer(avctx, ctx, sc,
251 type,
252 &ctx_pic->slice, sizeof(ctx_pic->slice), 0);
253}
254
255
257 av_unused const AVBufferRef *buffer_ref,
258 av_unused const uint8_t *buffer,
259 av_unused uint32_t size)
260{
261 const VP9SharedContext *h = avctx->priv_data;
263 struct vp9_dxva2_picture_context *ctx_pic = h->frames[CUR_FRAME].hwaccel_picture_private;
264
265 if (!DXVA_CONTEXT_VALID(avctx, ctx))
266 return -1;
267 av_assert0(ctx_pic);
268
269 /* Fill up DXVA_PicParams_VP9 */
270 if (ff_dxva2_vp9_fill_picture_parameters(avctx, ctx, &ctx_pic->pp) < 0)
271 return -1;
272
273 ctx_pic->bitstream_size = 0;
274 ctx_pic->bitstream = NULL;
275 return 0;
276}
277
279 const uint8_t *buffer,
280 uint32_t size)
281{
282 const VP9SharedContext *h = avctx->priv_data;
283 struct vp9_dxva2_picture_context *ctx_pic = h->frames[CUR_FRAME].hwaccel_picture_private;
284 unsigned position;
285
286 if (!ctx_pic->bitstream)
287 ctx_pic->bitstream = buffer;
288 ctx_pic->bitstream_size += size;
289
290 position = buffer - ctx_pic->bitstream;
291 fill_slice_short(&ctx_pic->slice, position, size);
292
293 return 0;
294}
295
297{
298 VP9SharedContext *h = avctx->priv_data;
299 struct vp9_dxva2_picture_context *ctx_pic = h->frames[CUR_FRAME].hwaccel_picture_private;
300 int ret;
301
302 if (ctx_pic->bitstream_size <= 0)
303 return -1;
304
305 ret = ff_dxva2_common_end_frame(avctx, h->frames[CUR_FRAME].tf.f,
306 &ctx_pic->pp, sizeof(ctx_pic->pp),
307 NULL, 0,
309 return ret;
310}
311
312#if CONFIG_VP9_DXVA2_HWACCEL
314 .p.name = "vp9_dxva2",
315 .p.type = AVMEDIA_TYPE_VIDEO,
316 .p.id = AV_CODEC_ID_VP9,
317 .p.pix_fmt = AV_PIX_FMT_DXVA2_VLD,
318 .init = ff_dxva2_decode_init,
319 .uninit = ff_dxva2_decode_uninit,
320 .start_frame = dxva2_vp9_start_frame,
321 .decode_slice = dxva2_vp9_decode_slice,
322 .end_frame = dxva2_vp9_end_frame,
323 .frame_params = ff_dxva2_common_frame_params,
324 .frame_priv_data_size = sizeof(struct vp9_dxva2_picture_context),
325 .priv_data_size = sizeof(FFDXVASharedContext),
326};
327#endif
328
329#if CONFIG_VP9_D3D11VA_HWACCEL
331 .p.name = "vp9_d3d11va",
332 .p.type = AVMEDIA_TYPE_VIDEO,
333 .p.id = AV_CODEC_ID_VP9,
334 .p.pix_fmt = AV_PIX_FMT_D3D11VA_VLD,
335 .init = ff_dxva2_decode_init,
336 .uninit = ff_dxva2_decode_uninit,
337 .start_frame = dxva2_vp9_start_frame,
338 .decode_slice = dxva2_vp9_decode_slice,
339 .end_frame = dxva2_vp9_end_frame,
340 .frame_params = ff_dxva2_common_frame_params,
341 .frame_priv_data_size = sizeof(struct vp9_dxva2_picture_context),
342 .priv_data_size = sizeof(FFDXVASharedContext),
343};
344#endif
345
346#if CONFIG_VP9_D3D11VA2_HWACCEL
348 .p.name = "vp9_d3d11va2",
349 .p.type = AVMEDIA_TYPE_VIDEO,
350 .p.id = AV_CODEC_ID_VP9,
351 .p.pix_fmt = AV_PIX_FMT_D3D11,
352 .init = ff_dxva2_decode_init,
353 .uninit = ff_dxva2_decode_uninit,
354 .start_frame = dxva2_vp9_start_frame,
355 .decode_slice = dxva2_vp9_decode_slice,
356 .end_frame = dxva2_vp9_end_frame,
357 .frame_params = ff_dxva2_common_frame_params,
358 .frame_priv_data_size = sizeof(struct vp9_dxva2_picture_context),
359 .priv_data_size = sizeof(FFDXVASharedContext),
360};
361#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
#define NULL
Definition coverity.c:32
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
#define DXVA_CONTEXT(avctx)
#define DXVA2_CONTEXT(ctx)
#define D3D11VA_CONTEXT(ctx)
#define DXVA_CONTEXT_REPORT_ID(avctx, ctx)
#define DXVA_CONTEXT_VALID(avctx, ctx)
void DECODER_BUFFER_DESC
static void fill_slice_short(DXVA_Slice_VPx_Short *slice, unsigned position, unsigned size)
Definition dxva2_vp9.c:159
static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx, DECODER_BUFFER_DESC *bs, DECODER_BUFFER_DESC *sc)
Definition dxva2_vp9.c:168
int ff_dxva2_vp9_fill_picture_parameters(const AVCodecContext *avctx, AVDXVAContext *ctx, DXVA_PicParams_VP9 *pp)
Definition dxva2_vp9.c:46
static void fill_picture_entry(DXVA_PicEntry_VPx *pic, unsigned index, unsigned flag)
Definition dxva2_vp9.c:39
static int dxva2_vp9_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition dxva2_vp9.c:278
static int dxva2_vp9_start_frame(AVCodecContext *avctx, av_unused const AVBufferRef *buffer_ref, av_unused const uint8_t *buffer, av_unused uint32_t size)
Definition dxva2_vp9.c:256
static int dxva2_vp9_end_frame(AVCodecContext *avctx)
Definition dxva2_vp9.c:296
@ AV_CODEC_ID_VP9
Definition codec_id.h:217
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
int index
Definition gxfenc.c:90
const struct FFHWAccel ff_vp9_d3d11va2_hwaccel
const struct FFHWAccel ff_vp9_d3d11va_hwaccel
const struct FFHWAccel ff_vp9_dxva2_hwaccel
cl_device_type type
static const chunk_decoder decoder[8]
Definition dfa.c:331
#define av_unused
Definition attributes.h:164
#define FFMIN(a, b)
Definition macros.h:49
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
@ 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
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
int width
picture width / height.
Definition avcodec.h:604
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:650
void * priv_data
Definition avcodec.h:470
int depth
Number of bits in the component.
Definition pixdesc.h:57
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition pixdesc.h:105
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition pixdesc.h:80
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition pixdesc.h:89
DXVA_PicParams_VP9 pp
Definition dxva2_vp9.c:33
DXVA_Slice_VPx_Short slice
Definition dxva2_vp9.c:34
const uint8_t * bitstream
Definition dxva2_vp9.c:35
#define av_log(a,...)
static char buffer[20]
Definition seek.c:32
int size
#define CUR_FRAME
Definition vp9shared.h:172