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
24 #define _WIN32_WINNT 0x0600
25 #define DXVA2API_USE_BITFIELDS
35 #include "libavcodec/dxva2.h"
37 #include "libavutil/avassert.h"
38 #include "libavutil/buffer.h"
39 #include "libavutil/frame.h"
40 #include "libavutil/imgutils.h"
41 #include "libavutil/pixfmt.h"
43 /* define all the GUIDs used directly here,
44 to avoid problems with inconsistent dxva2api.h versions in mingw-w64 and different MSVC version */
46 DEFINE_GUID(IID_IDirectXVideoDecoderService, 0xfc51a551,0xd5e7,0x11d9,0xaf,0x55,0x00,0x05,0x4e,0x43,0xff,0x02);
48 DEFINE_GUID(DXVA2_ModeMPEG2_VLD, 0xee27417f, 0x5e28,0x4e65,0xbe,0xea,0x1d,0x26,0xb5,0x08,0xad,0xc9);
49 DEFINE_GUID(DXVA2_ModeMPEG2and1_VLD, 0x86695f12, 0x340e,0x4f04,0x9f,0xd3,0x92,0x53,0xdd,0x32,0x74,0x60);
50 DEFINE_GUID(DXVA2_ModeH264_E, 0x1b81be68, 0xa0c7,0x11d3,0xb9,0x84,0x00,0xc0,0x4f,0x2e,0x73,0xc5);
51 DEFINE_GUID(DXVA2_ModeH264_F, 0x1b81be69, 0xa0c7,0x11d3,0xb9,0x84,0x00,0xc0,0x4f,0x2e,0x73,0xc5);
52 DEFINE_GUID(DXVADDI_Intel_ModeH264_E, 0x604F8E68, 0x4951,0x4C54,0x88,0xFE,0xAB,0xD2,0x5C,0x15,0xB3,0xD6);
53 DEFINE_GUID(DXVA2_ModeVC1_D, 0x1b81beA3, 0xa0c7,0x11d3,0xb9,0x84,0x00,0xc0,0x4f,0x2e,0x73,0xc5);
54 DEFINE_GUID(DXVA2_ModeVC1_D2010, 0x1b81beA4, 0xa0c7,0x11d3,0xb9,0x84,0x00,0xc0,0x4f,0x2e,0x73,0xc5);
55 DEFINE_GUID(DXVA2_ModeHEVC_VLD_Main, 0x5b11d51b, 0x2f4c,0x4452,0xbc,0xc3,0x09,0xf2,0xa1,0x16,0x0c,0xc0);
56 DEFINE_GUID(DXVA2_NoEncrypt, 0x1b81beD0, 0xa0c7,0x11d3,0xb9,0x84,0x00,0xc0,0x4f,0x2e,0x73,0xc5);
57 DEFINE_GUID(GUID_NULL, 0x00000000, 0x0000,0x0000,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00);
59 typedef IDirect3D9* WINAPI pDirect3DCreate9(UINT);
60 typedef HRESULT WINAPI pCreateDeviceManager9(UINT *, IDirect3DDeviceManager9 **);
62 typedef struct dxva2_mode {
67 static const dxva2_mode dxva2_modes[] = {
69 { &DXVA2_ModeMPEG2_VLD, AV_CODEC_ID_MPEG2VIDEO },
70 { &DXVA2_ModeMPEG2and1_VLD, AV_CODEC_ID_MPEG2VIDEO },
73 { &DXVA2_ModeH264_F, AV_CODEC_ID_H264 },
74 { &DXVA2_ModeH264_E, AV_CODEC_ID_H264 },
75 /* Intel specific H.264 mode */
76 { &DXVADDI_Intel_ModeH264_E, AV_CODEC_ID_H264 },
79 { &DXVA2_ModeVC1_D2010, AV_CODEC_ID_VC1 },
80 { &DXVA2_ModeVC1_D2010, AV_CODEC_ID_WMV3 },
81 { &DXVA2_ModeVC1_D, AV_CODEC_ID_VC1 },
82 { &DXVA2_ModeVC1_D, AV_CODEC_ID_WMV3 },
85 { &DXVA2_ModeHEVC_VLD_Main, AV_CODEC_ID_HEVC },
90 typedef struct surface_info {
95 typedef struct DXVA2Context {
102 IDirect3DDevice9 *d3d9device;
103 IDirect3DDeviceManager9 *d3d9devmgr;
104 IDirectXVideoDecoderService *decoder_service;
105 IDirectXVideoDecoder *decoder;
108 DXVA2_ConfigPictureDecode decoder_config;
110 LPDIRECT3DSURFACE9 *surfaces;
111 surface_info *surface_infos;
112 uint32_t num_surfaces;
113 uint64_t surface_age;
118 typedef struct DXVA2SurfaceWrapper {
120 LPDIRECT3DSURFACE9 surface;
121 IDirectXVideoDecoder *decoder;
122 } DXVA2SurfaceWrapper;
124 static void dxva2_destroy_decoder(AVCodecContext *s)
126 InputStream *ist = s->opaque;
127 DXVA2Context *ctx = ist->hwaccel_ctx;
130 for (int i = 0; i < ctx->num_surfaces; i++) {
131 if (ctx->surfaces[i])
132 IDirect3DSurface9_Release(ctx->surfaces[i]);
135 av_freep(&ctx->surfaces);
136 av_freep(&ctx->surface_infos);
137 ctx->num_surfaces = 0;
138 ctx->surface_age = 0;
141 IDirectXVideoDecoder_Release(ctx->decoder);
146 static void dxva2_uninit(AVCodecContext *s)
148 InputStream *ist = s->opaque;
149 DXVA2Context *ctx = ist->hwaccel_ctx;
151 ist->hwaccel_uninit = NULL;
152 ist->hwaccel_get_buffer = NULL;
153 ist->hwaccel_retrieve_data = NULL;
156 dxva2_destroy_decoder(s);
158 if (ctx->decoder_service)
159 IDirectXVideoDecoderService_Release(ctx->decoder_service);
161 if (ctx->d3d9devmgr && ctx->deviceHandle != INVALID_HANDLE_VALUE)
162 IDirect3DDeviceManager9_CloseDeviceHandle(ctx->d3d9devmgr, ctx->deviceHandle);
165 IDirect3DDeviceManager9_Release(ctx->d3d9devmgr);
168 IDirect3DDevice9_Release(ctx->d3d9device);
171 IDirect3D9_Release(ctx->d3d9);
174 FreeLibrary(ctx->d3dlib);
177 FreeLibrary(ctx->dxva2lib);
179 av_frame_free(&ctx->tmp_frame);
181 av_freep(&ist->hwaccel_ctx);
182 av_freep(&s->hwaccel_context);
185 static void dxva2_release_buffer(void *opaque, uint8_t *data)
187 DXVA2SurfaceWrapper *w = opaque;
188 DXVA2Context *ctx = w->ctx;
191 for (i = 0; i < ctx->num_surfaces; i++) {
192 if (ctx->surfaces[i] == w->surface) {
193 ctx->surface_infos[i].used = 0;
197 IDirect3DSurface9_Release(w->surface);
198 IDirectXVideoDecoder_Release(w->decoder);
202 static int dxva2_get_buffer(AVCodecContext *s, AVFrame *frame, int flags)
204 InputStream *ist = s->opaque;
205 DXVA2Context *ctx = ist->hwaccel_ctx;
206 int i, old_unused = -1;
207 LPDIRECT3DSURFACE9 surface;
208 DXVA2SurfaceWrapper *w = NULL;
210 av_assert0(frame->format == AV_PIX_FMT_DXVA2_VLD);
212 for (i = 0; i < ctx->num_surfaces; i++) {
213 surface_info *info = &ctx->surface_infos[i];
214 if (!info->used && (old_unused == -1 || info->age < ctx->surface_infos[old_unused].age))
217 if (old_unused == -1) {
218 av_log(NULL, AV_LOG_ERROR, "No free DXVA2 surface!\n");
219 return AVERROR(ENOMEM);
223 surface = ctx->surfaces[i];
225 w = av_mallocz(sizeof(*w));
227 return AVERROR(ENOMEM);
229 frame->buf[0] = av_buffer_create((uint8_t*)surface, 0,
230 dxva2_release_buffer, w,
231 AV_BUFFER_FLAG_READONLY);
232 if (!frame->buf[0]) {
234 return AVERROR(ENOMEM);
238 w->surface = surface;
239 IDirect3DSurface9_AddRef(w->surface);
240 w->decoder = ctx->decoder;
241 IDirectXVideoDecoder_AddRef(w->decoder);
243 ctx->surface_infos[i].used = 1;
244 ctx->surface_infos[i].age = ctx->surface_age++;
246 frame->data[3] = (uint8_t *)surface;
251 static int dxva2_retrieve_data(AVCodecContext *s, AVFrame *frame)
253 LPDIRECT3DSURFACE9 surface = (LPDIRECT3DSURFACE9)frame->data[3];
254 InputStream *ist = s->opaque;
255 DXVA2Context *ctx = ist->hwaccel_ctx;
256 D3DSURFACE_DESC surfaceDesc;
257 D3DLOCKED_RECT LockedRect;
261 IDirect3DSurface9_GetDesc(surface, &surfaceDesc);
263 ctx->tmp_frame->width = frame->width;
264 ctx->tmp_frame->height = frame->height;
265 ctx->tmp_frame->format = AV_PIX_FMT_NV12;
267 ret = av_frame_get_buffer(ctx->tmp_frame, 32);
271 hr = IDirect3DSurface9_LockRect(surface, &LockedRect, NULL, D3DLOCK_READONLY);
273 av_log(NULL, AV_LOG_ERROR, "Unable to lock DXVA2 surface\n");
274 return AVERROR_UNKNOWN;
277 av_image_copy_plane(ctx->tmp_frame->data[0], ctx->tmp_frame->linesize[0],
278 (uint8_t*)LockedRect.pBits,
279 LockedRect.Pitch, frame->width, frame->height);
281 av_image_copy_plane(ctx->tmp_frame->data[1], ctx->tmp_frame->linesize[1],
282 (uint8_t*)LockedRect.pBits + LockedRect.Pitch * surfaceDesc.Height,
283 LockedRect.Pitch, frame->width, frame->height / 2);
285 IDirect3DSurface9_UnlockRect(surface);
287 ret = av_frame_copy_props(ctx->tmp_frame, frame);
291 av_frame_unref(frame);
292 av_frame_move_ref(frame, ctx->tmp_frame);
296 av_frame_unref(ctx->tmp_frame);
300 static int dxva2_alloc(AVCodecContext *s)
302 InputStream *ist = s->opaque;
303 int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
305 pDirect3DCreate9 *createD3D = NULL;
306 pCreateDeviceManager9 *createDeviceManager = NULL;
308 D3DPRESENT_PARAMETERS d3dpp = {0};
309 D3DDISPLAYMODE d3ddm;
310 unsigned resetToken = 0;
311 UINT adapter = D3DADAPTER_DEFAULT;
313 ctx = av_mallocz(sizeof(*ctx));
315 return AVERROR(ENOMEM);
317 ctx->deviceHandle = INVALID_HANDLE_VALUE;
319 ist->hwaccel_ctx = ctx;
320 ist->hwaccel_uninit = dxva2_uninit;
321 ist->hwaccel_get_buffer = dxva2_get_buffer;
322 ist->hwaccel_retrieve_data = dxva2_retrieve_data;
324 ctx->d3dlib = LoadLibrary("d3d9.dll");
326 av_log(NULL, loglevel, "Failed to load D3D9 library\n");
329 ctx->dxva2lib = LoadLibrary("dxva2.dll");
330 if (!ctx->dxva2lib) {
331 av_log(NULL, loglevel, "Failed to load DXVA2 library\n");
335 createD3D = (pDirect3DCreate9 *)GetProcAddress(ctx->d3dlib, "Direct3DCreate9");
337 av_log(NULL, loglevel, "Failed to locate Direct3DCreate9\n");
340 createDeviceManager = (pCreateDeviceManager9 *)GetProcAddress(ctx->dxva2lib, "DXVA2CreateDirect3DDeviceManager9");
341 if (!createDeviceManager) {
342 av_log(NULL, loglevel, "Failed to locate DXVA2CreateDirect3DDeviceManager9\n");
346 ctx->d3d9 = createD3D(D3D_SDK_VERSION);
348 av_log(NULL, loglevel, "Failed to create IDirect3D object\n");
352 if (ist->hwaccel_device) {
353 adapter = atoi(ist->hwaccel_device);
354 av_log(NULL, AV_LOG_INFO, "Using HWAccel device %d\n", adapter);
357 IDirect3D9_GetAdapterDisplayMode(ctx->d3d9, adapter, &d3ddm);
358 d3dpp.Windowed = TRUE;
359 d3dpp.BackBufferWidth = 640;
360 d3dpp.BackBufferHeight = 480;
361 d3dpp.BackBufferCount = 0;
362 d3dpp.BackBufferFormat = d3ddm.Format;
363 d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD;
364 d3dpp.Flags = D3DPRESENTFLAG_VIDEO;
366 hr = IDirect3D9_CreateDevice(ctx->d3d9, adapter, D3DDEVTYPE_HAL, GetShellWindow(),
367 D3DCREATE_SOFTWARE_VERTEXPROCESSING | D3DCREATE_MULTITHREADED | D3DCREATE_FPU_PRESERVE,
368 &d3dpp, &ctx->d3d9device);
370 av_log(NULL, loglevel, "Failed to create Direct3D device\n");
374 hr = createDeviceManager(&resetToken, &ctx->d3d9devmgr);
376 av_log(NULL, loglevel, "Failed to create Direct3D device manager\n");
380 hr = IDirect3DDeviceManager9_ResetDevice(ctx->d3d9devmgr, ctx->d3d9device, resetToken);
382 av_log(NULL, loglevel, "Failed to bind Direct3D device to device manager\n");
386 hr = IDirect3DDeviceManager9_OpenDeviceHandle(ctx->d3d9devmgr, &ctx->deviceHandle);
388 av_log(NULL, loglevel, "Failed to open device handle\n");
392 hr = IDirect3DDeviceManager9_GetVideoService(ctx->d3d9devmgr, ctx->deviceHandle, &IID_IDirectXVideoDecoderService, (void **)&ctx->decoder_service);
394 av_log(NULL, loglevel, "Failed to create IDirectXVideoDecoderService\n");
398 ctx->tmp_frame = av_frame_alloc();
402 s->hwaccel_context = av_mallocz(sizeof(struct dxva_context));
403 if (!s->hwaccel_context)
409 return AVERROR(EINVAL);
412 static int dxva2_get_decoder_configuration(AVCodecContext *s, const GUID *device_guid,
413 const DXVA2_VideoDesc *desc,
414 DXVA2_ConfigPictureDecode *config)
416 InputStream *ist = s->opaque;
417 int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
418 DXVA2Context *ctx = ist->hwaccel_ctx;
419 unsigned cfg_count = 0, best_score = 0;
420 DXVA2_ConfigPictureDecode *cfg_list = NULL;
421 DXVA2_ConfigPictureDecode best_cfg = {{0}};
425 hr = IDirectXVideoDecoderService_GetDecoderConfigurations(ctx->decoder_service, device_guid, desc, NULL, &cfg_count, &cfg_list);
427 av_log(NULL, loglevel, "Unable to retrieve decoder configurations\n");
428 return AVERROR(EINVAL);
431 for (i = 0; i < cfg_count; i++) {
432 DXVA2_ConfigPictureDecode *cfg = &cfg_list[i];
435 if (cfg->ConfigBitstreamRaw == 1)
437 else if (s->codec_id == AV_CODEC_ID_H264 && cfg->ConfigBitstreamRaw == 2)
441 if (IsEqualGUID(&cfg->guidConfigBitstreamEncryption, &DXVA2_NoEncrypt))
443 if (score > best_score) {
448 CoTaskMemFree(cfg_list);
451 av_log(NULL, loglevel, "No valid decoder configuration available\n");
452 return AVERROR(EINVAL);
459 static int dxva2_create_decoder(AVCodecContext *s)
461 InputStream *ist = s->opaque;
462 int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
463 DXVA2Context *ctx = ist->hwaccel_ctx;
464 struct dxva_context *dxva_ctx = s->hwaccel_context;
465 GUID *guid_list = NULL;
466 unsigned guid_count = 0, i, j;
467 GUID device_guid = GUID_NULL;
468 D3DFORMAT target_format = 0;
469 DXVA2_VideoDesc desc = { 0 };
470 DXVA2_ConfigPictureDecode config;
472 int surface_alignment;
475 hr = IDirectXVideoDecoderService_GetDecoderDeviceGuids(ctx->decoder_service, &guid_count, &guid_list);
477 av_log(NULL, loglevel, "Failed to retrieve decoder device GUIDs\n");
481 for (i = 0; dxva2_modes[i].guid; i++) {
482 D3DFORMAT *target_list = NULL;
483 unsigned target_count = 0;
484 const dxva2_mode *mode = &dxva2_modes[i];
485 if (mode->codec != s->codec_id)
488 for (j = 0; j < guid_count; j++) {
489 if (IsEqualGUID(mode->guid, &guid_list[j]))
495 hr = IDirectXVideoDecoderService_GetDecoderRenderTargets(ctx->decoder_service, mode->guid, &target_count, &target_list);
499 for (j = 0; j < target_count; j++) {
500 const D3DFORMAT format = target_list[j];
501 if (format == MKTAG('N','V','1','2')) {
502 target_format = format;
506 CoTaskMemFree(target_list);
508 device_guid = *mode->guid;
512 CoTaskMemFree(guid_list);
514 if (IsEqualGUID(&device_guid, &GUID_NULL)) {
515 av_log(NULL, loglevel, "No decoder device for codec found\n");
519 desc.SampleWidth = s->coded_width;
520 desc.SampleHeight = s->coded_height;
521 desc.Format = target_format;
523 ret = dxva2_get_decoder_configuration(s, &device_guid, &desc, &config);
528 /* decoding MPEG-2 requires additional alignment on some Intel GPUs,
529 but it causes issues for H.264 on certain AMD GPUs..... */
530 if (s->codec_id == AV_CODEC_ID_MPEG2VIDEO)
531 surface_alignment = 32;
532 /* the HEVC DXVA2 spec asks for 128 pixel aligned surfaces to ensure
533 all coding features have enough room to work with */
534 else if (s->codec_id == AV_CODEC_ID_HEVC)
535 surface_alignment = 128;
537 surface_alignment = 16;
539 /* 4 base work surfaces */
540 ctx->num_surfaces = 4;
542 /* add surfaces based on number of possible refs */
543 if (s->codec_id == AV_CODEC_ID_H264 || s->codec_id == AV_CODEC_ID_HEVC)
544 ctx->num_surfaces += 16;
546 ctx->num_surfaces += 2;
548 /* add extra surfaces for frame threading */
549 if (s->active_thread_type & FF_THREAD_FRAME)
550 ctx->num_surfaces += s->thread_count;
552 ctx->surfaces = av_mallocz(ctx->num_surfaces * sizeof(*ctx->surfaces));
553 ctx->surface_infos = av_mallocz(ctx->num_surfaces * sizeof(*ctx->surface_infos));
555 if (!ctx->surfaces || !ctx->surface_infos) {
556 av_log(NULL, loglevel, "Unable to allocate surface arrays\n");
560 hr = IDirectXVideoDecoderService_CreateSurface(ctx->decoder_service,
561 FFALIGN(s->coded_width, surface_alignment),
562 FFALIGN(s->coded_height, surface_alignment),
563 ctx->num_surfaces - 1,
564 target_format, D3DPOOL_DEFAULT, 0,
565 DXVA2_VideoDecoderRenderTarget,
566 ctx->surfaces, NULL);
568 av_log(NULL, loglevel, "Failed to create %d video surfaces\n", ctx->num_surfaces);
572 hr = IDirectXVideoDecoderService_CreateVideoDecoder(ctx->decoder_service, &device_guid,
573 &desc, &config, ctx->surfaces,
574 ctx->num_surfaces, &ctx->decoder);
576 av_log(NULL, loglevel, "Failed to create DXVA2 video decoder\n");
580 ctx->decoder_guid = device_guid;
581 ctx->decoder_config = config;
583 dxva_ctx->cfg = &ctx->decoder_config;
584 dxva_ctx->decoder = ctx->decoder;
585 dxva_ctx->surface = ctx->surfaces;
586 dxva_ctx->surface_count = ctx->num_surfaces;
588 if (IsEqualGUID(&ctx->decoder_guid, &DXVADDI_Intel_ModeH264_E))
589 dxva_ctx->workaround |= FF_DXVA2_WORKAROUND_INTEL_CLEARVIDEO;
593 dxva2_destroy_decoder(s);
594 return AVERROR(EINVAL);
597 int dxva2_init(AVCodecContext *s)
599 InputStream *ist = s->opaque;
600 int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
604 if (!ist->hwaccel_ctx) {
605 ret = dxva2_alloc(s);
609 ctx = ist->hwaccel_ctx;
611 if (s->codec_id == AV_CODEC_ID_H264 &&
612 (s->profile & ~FF_PROFILE_H264_CONSTRAINED) > FF_PROFILE_H264_HIGH) {
613 av_log(NULL, loglevel, "Unsupported H.264 profile for DXVA2 HWAccel: %d\n", s->profile);
614 return AVERROR(EINVAL);
618 dxva2_destroy_decoder(s);
620 ret = dxva2_create_decoder(s);
622 av_log(NULL, loglevel, "Error creating the DXVA2 decoder\n");