]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsv.c
lavc: Remove old vaapi decode infrastructure
[ffmpeg] / libavcodec / qsv.c
1 /*
2  * Intel MediaSDK QSV encoder/decoder shared code
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <mfx/mfxvideo.h>
22 #include <mfx/mfxplugin.h>
23
24 #include <stdio.h>
25 #include <string.h>
26
27 #include "libavutil/avstring.h"
28 #include "libavutil/common.h"
29 #include "libavutil/error.h"
30 #include "libavutil/hwcontext.h"
31 #include "libavutil/hwcontext_qsv.h"
32
33 #include "avcodec.h"
34 #include "qsv_internal.h"
35
36 int ff_qsv_codec_id_to_mfx(enum AVCodecID codec_id)
37 {
38     switch (codec_id) {
39     case AV_CODEC_ID_H264:
40         return MFX_CODEC_AVC;
41 #if QSV_VERSION_ATLEAST(1, 8)
42     case AV_CODEC_ID_HEVC:
43         return MFX_CODEC_HEVC;
44 #endif
45     case AV_CODEC_ID_MPEG1VIDEO:
46     case AV_CODEC_ID_MPEG2VIDEO:
47         return MFX_CODEC_MPEG2;
48     case AV_CODEC_ID_VC1:
49         return MFX_CODEC_VC1;
50     default:
51         break;
52     }
53
54     return AVERROR(ENOSYS);
55 }
56
57 static const struct {
58     mfxStatus   mfxerr;
59     int         averr;
60     const char *desc;
61 } qsv_errors[] = {
62     { MFX_ERR_NONE,                     0,               "success"                              },
63     { MFX_ERR_UNKNOWN,                  AVERROR_UNKNOWN, "unknown error"                        },
64     { MFX_ERR_NULL_PTR,                 AVERROR(EINVAL), "NULL pointer"                         },
65     { MFX_ERR_UNSUPPORTED,              AVERROR(ENOSYS), "unsupported"                          },
66     { MFX_ERR_MEMORY_ALLOC,             AVERROR(ENOMEM), "failed to allocate memory"            },
67     { MFX_ERR_NOT_ENOUGH_BUFFER,        AVERROR(ENOMEM), "insufficient input/output buffer"     },
68     { MFX_ERR_INVALID_HANDLE,           AVERROR(EINVAL), "invalid handle"                       },
69     { MFX_ERR_LOCK_MEMORY,              AVERROR(EIO),    "failed to lock the memory block"      },
70     { MFX_ERR_NOT_INITIALIZED,          AVERROR_BUG,     "not initialized"                      },
71     { MFX_ERR_NOT_FOUND,                AVERROR(ENOSYS), "specified object was not found"       },
72     { MFX_ERR_MORE_DATA,                AVERROR(EAGAIN), "expect more data at input"            },
73     { MFX_ERR_MORE_SURFACE,             AVERROR(EAGAIN), "expect more surface at output"        },
74     { MFX_ERR_ABORTED,                  AVERROR_UNKNOWN, "operation aborted"                    },
75     { MFX_ERR_DEVICE_LOST,              AVERROR(EIO),    "device lost"                          },
76     { MFX_ERR_INCOMPATIBLE_VIDEO_PARAM, AVERROR(EINVAL), "incompatible video parameters"        },
77     { MFX_ERR_INVALID_VIDEO_PARAM,      AVERROR(EINVAL), "invalid video parameters"             },
78     { MFX_ERR_UNDEFINED_BEHAVIOR,       AVERROR_BUG,     "undefined behavior"                   },
79     { MFX_ERR_DEVICE_FAILED,            AVERROR(EIO),    "device failed"                        },
80     { MFX_ERR_MORE_BITSTREAM,           AVERROR(EAGAIN), "expect more bitstream at output"      },
81     { MFX_ERR_INCOMPATIBLE_AUDIO_PARAM, AVERROR(EINVAL), "incompatible audio parameters"        },
82     { MFX_ERR_INVALID_AUDIO_PARAM,      AVERROR(EINVAL), "invalid audio parameters"             },
83
84     { MFX_WRN_IN_EXECUTION,             0,               "operation in execution"               },
85     { MFX_WRN_DEVICE_BUSY,              0,               "device busy"                          },
86     { MFX_WRN_VIDEO_PARAM_CHANGED,      0,               "video parameters changed"             },
87     { MFX_WRN_PARTIAL_ACCELERATION,     0,               "partial acceleration"                 },
88     { MFX_WRN_INCOMPATIBLE_VIDEO_PARAM, 0,               "incompatible video parameters"        },
89     { MFX_WRN_VALUE_NOT_CHANGED,        0,               "value is saturated"                   },
90     { MFX_WRN_OUT_OF_RANGE,             0,               "value out of range"                   },
91     { MFX_WRN_FILTER_SKIPPED,           0,               "filter skipped"                       },
92     { MFX_WRN_INCOMPATIBLE_AUDIO_PARAM, 0,               "incompatible audio parameters"        },
93 };
94
95 int ff_qsv_map_error(mfxStatus mfx_err, const char **desc)
96 {
97     int i;
98     for (i = 0; i < FF_ARRAY_ELEMS(qsv_errors); i++) {
99         if (qsv_errors[i].mfxerr == mfx_err) {
100             if (desc)
101                 *desc = qsv_errors[i].desc;
102             return qsv_errors[i].averr;
103         }
104     }
105     if (desc)
106         *desc = "unknown error";
107     return AVERROR_UNKNOWN;
108 }
109
110 int ff_qsv_print_error(void *log_ctx, mfxStatus err,
111                        const char *error_string)
112 {
113     const char *desc;
114     int ret;
115     ret = ff_qsv_map_error(err, &desc);
116     av_log(log_ctx, AV_LOG_ERROR, "%s: %s (%d)\n", error_string, desc, err);
117     return ret;
118 }
119
120 int ff_qsv_print_warning(void *log_ctx, mfxStatus err,
121                          const char *warning_string)
122 {
123     const char *desc;
124     int ret;
125     ret = ff_qsv_map_error(err, &desc);
126     av_log(log_ctx, AV_LOG_WARNING, "%s: %s (%d)\n", warning_string, desc, err);
127     return ret;
128 }
129
130 int ff_qsv_map_pixfmt(enum AVPixelFormat format, uint32_t *fourcc)
131 {
132     switch (format) {
133     case AV_PIX_FMT_YUV420P:
134     case AV_PIX_FMT_YUVJ420P:
135     case AV_PIX_FMT_NV12:
136         *fourcc = MFX_FOURCC_NV12;
137         return AV_PIX_FMT_NV12;
138     case AV_PIX_FMT_YUV420P10:
139     case AV_PIX_FMT_P010:
140         *fourcc = MFX_FOURCC_P010;
141         return AV_PIX_FMT_P010;
142     default:
143         return AVERROR(ENOSYS);
144     }
145 }
146
147 static int qsv_load_plugins(mfxSession session, const char *load_plugins,
148                             void *logctx)
149 {
150     if (!load_plugins || !*load_plugins)
151         return 0;
152
153     while (*load_plugins) {
154         mfxPluginUID uid;
155         mfxStatus ret;
156         int i, err = 0;
157
158         char *plugin = av_get_token(&load_plugins, ":");
159         if (!plugin)
160             return AVERROR(ENOMEM);
161         if (strlen(plugin) != 2 * sizeof(uid.Data)) {
162             av_log(logctx, AV_LOG_ERROR, "Invalid plugin UID length\n");
163             err = AVERROR(EINVAL);
164             goto load_plugin_fail;
165         }
166
167         for (i = 0; i < sizeof(uid.Data); i++) {
168             err = sscanf(plugin + 2 * i, "%2hhx", uid.Data + i);
169             if (err != 1) {
170                 av_log(logctx, AV_LOG_ERROR, "Invalid plugin UID\n");
171                 err = AVERROR(EINVAL);
172                 goto load_plugin_fail;
173             }
174
175         }
176
177         ret = MFXVideoUSER_Load(session, &uid, 1);
178         if (ret < 0) {
179             char errorbuf[128];
180             snprintf(errorbuf, sizeof(errorbuf),
181                      "Could not load the requested plugin '%s'", plugin);
182             err = ff_qsv_print_error(logctx, ret, errorbuf);
183             goto load_plugin_fail;
184         }
185
186         if (*load_plugins)
187             load_plugins++;
188 load_plugin_fail:
189         av_freep(&plugin);
190         if (err < 0)
191             return err;
192     }
193
194     return 0;
195
196 }
197
198 int ff_qsv_init_internal_session(AVCodecContext *avctx, mfxSession *session,
199                                  const char *load_plugins)
200 {
201     mfxIMPL impl   = MFX_IMPL_AUTO_ANY;
202     mfxVersion ver = { { QSV_VERSION_MINOR, QSV_VERSION_MAJOR } };
203
204     const char *desc;
205     int ret;
206
207     ret = MFXInit(impl, &ver, session);
208     if (ret < 0)
209         return ff_qsv_print_error(avctx, ret,
210                                   "Error initializing an internal MFX session");
211
212     ret = qsv_load_plugins(*session, load_plugins, avctx);
213     if (ret < 0) {
214         av_log(avctx, AV_LOG_ERROR, "Error loading plugins\n");
215         return ret;
216     }
217
218     MFXQueryIMPL(*session, &impl);
219
220     switch (MFX_IMPL_BASETYPE(impl)) {
221     case MFX_IMPL_SOFTWARE:
222         desc = "software";
223         break;
224     case MFX_IMPL_HARDWARE:
225     case MFX_IMPL_HARDWARE2:
226     case MFX_IMPL_HARDWARE3:
227     case MFX_IMPL_HARDWARE4:
228         desc = "hardware accelerated";
229         break;
230     default:
231         desc = "unknown";
232     }
233
234     av_log(avctx, AV_LOG_VERBOSE,
235            "Initialized an internal MFX session using %s implementation\n",
236            desc);
237
238     return 0;
239 }
240
241 static mfxStatus qsv_frame_alloc(mfxHDL pthis, mfxFrameAllocRequest *req,
242                                  mfxFrameAllocResponse *resp)
243 {
244     QSVFramesContext *ctx = pthis;
245     mfxFrameInfo      *i  = &req->Info;
246     mfxFrameInfo      *i1 = &ctx->info;
247
248     if (!(req->Type & MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET) ||
249         !(req->Type & (MFX_MEMTYPE_FROM_DECODE | MFX_MEMTYPE_FROM_ENCODE)) ||
250         !(req->Type & MFX_MEMTYPE_EXTERNAL_FRAME))
251         return MFX_ERR_UNSUPPORTED;
252     if (i->Width  != i1->Width || i->Height != i1->Height ||
253         i->FourCC != i1->FourCC || i->ChromaFormat != i1->ChromaFormat) {
254         av_log(ctx, AV_LOG_ERROR, "Mismatching surface properties in an "
255                "allocation request: %dx%d %d %d vs %dx%d %d %d\n",
256                i->Width,  i->Height,  i->FourCC,  i->ChromaFormat,
257                i1->Width, i1->Height, i1->FourCC, i1->ChromaFormat);
258         return MFX_ERR_UNSUPPORTED;
259     }
260
261     resp->mids           = ctx->mids;
262     resp->NumFrameActual = ctx->nb_mids;
263
264     return MFX_ERR_NONE;
265 }
266
267 static mfxStatus qsv_frame_free(mfxHDL pthis, mfxFrameAllocResponse *resp)
268 {
269     return MFX_ERR_NONE;
270 }
271
272 static mfxStatus qsv_frame_lock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
273 {
274     return MFX_ERR_UNSUPPORTED;
275 }
276
277 static mfxStatus qsv_frame_unlock(mfxHDL pthis, mfxMemId mid, mfxFrameData *ptr)
278 {
279     return MFX_ERR_UNSUPPORTED;
280 }
281
282 static mfxStatus qsv_frame_get_hdl(mfxHDL pthis, mfxMemId mid, mfxHDL *hdl)
283 {
284     *hdl = mid;
285     return MFX_ERR_NONE;
286 }
287
288 int ff_qsv_init_session_hwcontext(AVCodecContext *avctx, mfxSession *psession,
289                                   QSVFramesContext *qsv_frames_ctx,
290                                   const char *load_plugins, int opaque)
291 {
292     static const mfxHandleType handle_types[] = {
293         MFX_HANDLE_VA_DISPLAY,
294         MFX_HANDLE_D3D9_DEVICE_MANAGER,
295         MFX_HANDLE_D3D11_DEVICE,
296     };
297     mfxFrameAllocator frame_allocator = {
298         .pthis  = qsv_frames_ctx,
299         .Alloc  = qsv_frame_alloc,
300         .Lock   = qsv_frame_lock,
301         .Unlock = qsv_frame_unlock,
302         .GetHDL = qsv_frame_get_hdl,
303         .Free   = qsv_frame_free,
304     };
305
306     AVHWFramesContext    *frames_ctx = (AVHWFramesContext*)qsv_frames_ctx->hw_frames_ctx->data;
307     AVQSVFramesContext *frames_hwctx = frames_ctx->hwctx;
308     AVQSVDeviceContext *device_hwctx = frames_ctx->device_ctx->hwctx;
309     mfxSession        parent_session = device_hwctx->session;
310
311     mfxSession    session;
312     mfxVersion    ver;
313     mfxIMPL       impl;
314     mfxHDL        handle = NULL;
315     mfxHandleType handle_type;
316     mfxStatus err;
317
318     int i, ret;
319
320     err = MFXQueryIMPL(parent_session, &impl);
321     if (err == MFX_ERR_NONE)
322         err = MFXQueryVersion(parent_session, &ver);
323     if (err != MFX_ERR_NONE)
324         return ff_qsv_print_error(avctx, err,
325                                   "Error querying the session attributes");
326
327     for (i = 0; i < FF_ARRAY_ELEMS(handle_types); i++) {
328         err = MFXVideoCORE_GetHandle(parent_session, handle_types[i], &handle);
329         if (err == MFX_ERR_NONE) {
330             handle_type = handle_types[i];
331             break;
332         }
333         handle = NULL;
334     }
335     if (!handle) {
336         av_log(avctx, AV_LOG_VERBOSE, "No supported hw handle could be retrieved "
337                "from the session\n");
338     }
339
340     err = MFXInit(impl, &ver, &session);
341     if (err != MFX_ERR_NONE)
342         return ff_qsv_print_error(avctx, err,
343                                   "Error initializing a child MFX session");
344
345     if (handle) {
346         err = MFXVideoCORE_SetHandle(session, handle_type, handle);
347         if (err != MFX_ERR_NONE)
348             return ff_qsv_print_error(avctx, err,
349                                       "Error setting a HW handle");
350     }
351
352     ret = qsv_load_plugins(session, load_plugins, avctx);
353     if (ret < 0) {
354         av_log(avctx, AV_LOG_ERROR, "Error loading plugins\n");
355         return ret;
356     }
357
358     if (!opaque) {
359         av_freep(&qsv_frames_ctx->mids);
360         qsv_frames_ctx->mids = av_mallocz_array(frames_hwctx->nb_surfaces,
361                                                 sizeof(*qsv_frames_ctx->mids));
362         if (!qsv_frames_ctx->mids)
363             return AVERROR(ENOMEM);
364
365         qsv_frames_ctx->info    = frames_hwctx->surfaces[0].Info;
366         qsv_frames_ctx->nb_mids = frames_hwctx->nb_surfaces;
367         for (i = 0; i < frames_hwctx->nb_surfaces; i++)
368             qsv_frames_ctx->mids[i] = frames_hwctx->surfaces[i].Data.MemId;
369
370         err = MFXVideoCORE_SetFrameAllocator(session, &frame_allocator);
371         if (err != MFX_ERR_NONE)
372             return ff_qsv_print_error(avctx, err,
373                                       "Error setting a frame allocator");
374     }
375
376     *psession = session;
377     return 0;
378 }