]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsvdec.c
bf843c8ca27da861869d1a08fc429f0cd6ede951
[ffmpeg] / libavcodec / qsvdec.c
1 /*
2  * Intel MediaSDK QSV codec-independent code
3  *
4  * copyright (c) 2013 Luca Barbato
5  * copyright (c) 2015 Anton Khirnov <anton@khirnov.net>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include <stdint.h>
25 #include <string.h>
26 #include <sys/types.h>
27
28 #include <mfx/mfxvideo.h>
29
30 #include "libavutil/common.h"
31 #include "libavutil/fifo.h"
32 #include "libavutil/frame.h"
33 #include "libavutil/hwcontext.h"
34 #include "libavutil/hwcontext_qsv.h"
35 #include "libavutil/mem.h"
36 #include "libavutil/log.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/pixfmt.h"
39 #include "libavutil/time.h"
40 #include "libavutil/imgutils.h"
41
42 #include "avcodec.h"
43 #include "internal.h"
44 #include "decode.h"
45 #include "hwconfig.h"
46 #include "qsv.h"
47 #include "qsv_internal.h"
48
49 typedef struct QSVContext {
50     // the session used for decoding
51     mfxSession session;
52
53     // the session we allocated internally, in case the caller did not provide
54     // one
55     QSVSession internal_qs;
56
57     QSVFramesContext frames_ctx;
58
59     /**
60      * a linked list of frames currently being used by QSV
61      */
62     QSVFrame *work_frames;
63
64     AVFifoBuffer *async_fifo;
65     int zero_consume_run;
66     int buffered_count;
67     int reinit_flag;
68
69     enum AVPixelFormat orig_pix_fmt;
70     uint32_t fourcc;
71     mfxFrameInfo frame_info;
72     AVBufferPool *pool;
73
74     int initialized;
75
76     // options set by the caller
77     int async_depth;
78     int iopattern;
79     int gpu_copy;
80
81     char *load_plugins;
82
83     mfxExtBuffer **ext_buffers;
84     int         nb_ext_buffers;
85 } QSVContext;
86
87 static const AVCodecHWConfigInternal *const qsv_hw_configs[] = {
88     &(const AVCodecHWConfigInternal) {
89         .public = {
90             .pix_fmt     = AV_PIX_FMT_QSV,
91             .methods     = AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX |
92                            AV_CODEC_HW_CONFIG_METHOD_AD_HOC,
93             .device_type = AV_HWDEVICE_TYPE_QSV,
94         },
95         .hwaccel = NULL,
96     },
97     NULL
98 };
99
100 static int qsv_get_continuous_buffer(AVCodecContext *avctx, AVFrame *frame,
101                                      AVBufferPool *pool)
102 {
103     int ret = 0;
104
105     ff_decode_frame_props(avctx, frame);
106
107     frame->width       = avctx->width;
108     frame->height      = avctx->height;
109
110     switch (avctx->pix_fmt) {
111     case AV_PIX_FMT_NV12:
112         frame->linesize[0] = FFALIGN(avctx->width, 128);
113         break;
114     case AV_PIX_FMT_P010:
115         frame->linesize[0] = 2 * FFALIGN(avctx->width, 128);
116         break;
117     default:
118         av_log(avctx, AV_LOG_ERROR, "Unsupported pixel format.\n");
119         return AVERROR(EINVAL);
120     }
121
122     frame->linesize[1] = frame->linesize[0];
123     frame->buf[0]      = av_buffer_pool_get(pool);
124     if (!frame->buf[0])
125         return AVERROR(ENOMEM);
126
127     frame->data[0] = frame->buf[0]->data;
128     frame->data[1] = frame->data[0] +
129                             frame->linesize[0] * FFALIGN(avctx->height, 64);
130
131     ret = ff_attach_decode_data(frame);
132     if (ret < 0)
133         return ret;
134
135     return 0;
136 }
137
138 static int qsv_init_session(AVCodecContext *avctx, QSVContext *q, mfxSession session,
139                             AVBufferRef *hw_frames_ref, AVBufferRef *hw_device_ref)
140 {
141     int ret;
142
143     if (q->gpu_copy == MFX_GPUCOPY_ON &&
144         !(q->iopattern & MFX_IOPATTERN_OUT_SYSTEM_MEMORY)) {
145         av_log(avctx, AV_LOG_WARNING, "GPU-accelerated memory copy "
146                         "only works in system memory mode.\n");
147         q->gpu_copy = MFX_GPUCOPY_OFF;
148     }
149     if (session) {
150         q->session = session;
151     } else if (hw_frames_ref) {
152         if (q->internal_qs.session) {
153             MFXClose(q->internal_qs.session);
154             q->internal_qs.session = NULL;
155         }
156         av_buffer_unref(&q->frames_ctx.hw_frames_ctx);
157
158         q->frames_ctx.hw_frames_ctx = av_buffer_ref(hw_frames_ref);
159         if (!q->frames_ctx.hw_frames_ctx)
160             return AVERROR(ENOMEM);
161
162         ret = ff_qsv_init_session_frames(avctx, &q->internal_qs.session,
163                                          &q->frames_ctx, q->load_plugins,
164                                          q->iopattern == MFX_IOPATTERN_OUT_OPAQUE_MEMORY,
165                                          q->gpu_copy);
166         if (ret < 0) {
167             av_buffer_unref(&q->frames_ctx.hw_frames_ctx);
168             return ret;
169         }
170
171         q->session = q->internal_qs.session;
172     } else if (hw_device_ref) {
173         if (q->internal_qs.session) {
174             MFXClose(q->internal_qs.session);
175             q->internal_qs.session = NULL;
176         }
177
178         ret = ff_qsv_init_session_device(avctx, &q->internal_qs.session,
179                                          hw_device_ref, q->load_plugins, q->gpu_copy);
180         if (ret < 0)
181             return ret;
182
183         q->session = q->internal_qs.session;
184     } else {
185         if (!q->internal_qs.session) {
186             ret = ff_qsv_init_internal_session(avctx, &q->internal_qs,
187                                                q->load_plugins, q->gpu_copy);
188             if (ret < 0)
189                 return ret;
190         }
191
192         q->session = q->internal_qs.session;
193     }
194
195     /* make sure the decoder is uninitialized */
196     MFXVideoDECODE_Close(q->session);
197
198     return 0;
199 }
200
201 static inline unsigned int qsv_fifo_item_size(void)
202 {
203     return sizeof(mfxSyncPoint*) + sizeof(QSVFrame*);
204 }
205
206 static inline unsigned int qsv_fifo_size(const AVFifoBuffer* fifo)
207 {
208     return av_fifo_size(fifo) / qsv_fifo_item_size();
209 }
210
211 static int qsv_decode_preinit(AVCodecContext *avctx, QSVContext *q, enum AVPixelFormat pix_fmt, mfxVideoParam *param)
212 {
213     mfxSession session = NULL;
214     int iopattern = 0;
215     int ret;
216     enum AVPixelFormat pix_fmts[3] = {
217         AV_PIX_FMT_QSV, /* opaque format in case of video memory output */
218         pix_fmt,        /* system memory format obtained from bitstream parser */
219         AV_PIX_FMT_NONE };
220
221     ret = ff_get_format(avctx, pix_fmts);
222     if (ret < 0) {
223         q->orig_pix_fmt = avctx->pix_fmt = AV_PIX_FMT_NONE;
224         return ret;
225     }
226
227     if (!q->async_fifo) {
228         q->async_fifo = av_fifo_alloc(q->async_depth * qsv_fifo_item_size());
229         if (!q->async_fifo)
230             return AVERROR(ENOMEM);
231     }
232
233     if (avctx->pix_fmt == AV_PIX_FMT_QSV && avctx->hwaccel_context) {
234         AVQSVContext *user_ctx = avctx->hwaccel_context;
235         session           = user_ctx->session;
236         iopattern         = user_ctx->iopattern;
237         q->ext_buffers    = user_ctx->ext_buffers;
238         q->nb_ext_buffers = user_ctx->nb_ext_buffers;
239     }
240
241     if (avctx->hw_frames_ctx) {
242         AVHWFramesContext    *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
243         AVQSVFramesContext *frames_hwctx = frames_ctx->hwctx;
244
245         if (!iopattern) {
246             if (frames_hwctx->frame_type & MFX_MEMTYPE_OPAQUE_FRAME)
247                 iopattern = MFX_IOPATTERN_OUT_OPAQUE_MEMORY;
248             else if (frames_hwctx->frame_type & MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET)
249                 iopattern = MFX_IOPATTERN_OUT_VIDEO_MEMORY;
250         }
251     }
252
253     if (!iopattern)
254         iopattern = MFX_IOPATTERN_OUT_SYSTEM_MEMORY;
255     q->iopattern = iopattern;
256
257     ff_qsv_print_iopattern(avctx, q->iopattern, "Decoder");
258
259     ret = qsv_init_session(avctx, q, session, avctx->hw_frames_ctx, avctx->hw_device_ctx);
260     if (ret < 0) {
261         av_log(avctx, AV_LOG_ERROR, "Error initializing an MFX session\n");
262         return ret;
263     }
264
265     param->IOPattern   = q->iopattern;
266     param->AsyncDepth  = q->async_depth;
267     param->ExtParam    = q->ext_buffers;
268     param->NumExtParam = q->nb_ext_buffers;
269
270     return 0;
271  }
272
273 static int qsv_decode_init_context(AVCodecContext *avctx, QSVContext *q, mfxVideoParam *param)
274 {
275     int ret;
276
277     avctx->width        = param->mfx.FrameInfo.CropW;
278     avctx->height       = param->mfx.FrameInfo.CropH;
279     avctx->coded_width  = param->mfx.FrameInfo.Width;
280     avctx->coded_height = param->mfx.FrameInfo.Height;
281     avctx->level        = param->mfx.CodecLevel;
282     avctx->profile      = param->mfx.CodecProfile;
283     avctx->field_order  = ff_qsv_map_picstruct(param->mfx.FrameInfo.PicStruct);
284     avctx->pix_fmt      = ff_qsv_map_fourcc(param->mfx.FrameInfo.FourCC);
285
286     ret = MFXVideoDECODE_Init(q->session, param);
287     if (ret < 0)
288         return ff_qsv_print_error(avctx, ret,
289                                   "Error initializing the MFX video decoder");
290
291     q->frame_info = param->mfx.FrameInfo;
292
293     if (!avctx->hw_frames_ctx)
294         q->pool = av_buffer_pool_init(av_image_get_buffer_size(avctx->pix_fmt,
295                     FFALIGN(avctx->width, 128), FFALIGN(avctx->height, 64), 1), av_buffer_allocz);
296     return 0;
297 }
298
299 static int qsv_decode_header(AVCodecContext *avctx, QSVContext *q,
300                              const AVPacket *avpkt, enum AVPixelFormat pix_fmt,
301                              mfxVideoParam *param)
302 {
303     int ret;
304
305     mfxBitstream bs = { 0 };
306
307     if (avpkt->size) {
308         bs.Data       = avpkt->data;
309         bs.DataLength = avpkt->size;
310         bs.MaxLength  = bs.DataLength;
311         bs.TimeStamp  = avpkt->pts;
312         if (avctx->field_order == AV_FIELD_PROGRESSIVE)
313             bs.DataFlag   |= MFX_BITSTREAM_COMPLETE_FRAME;
314     } else
315         return AVERROR_INVALIDDATA;
316
317
318     if(!q->session) {
319         ret = qsv_decode_preinit(avctx, q, pix_fmt, param);
320         if (ret < 0)
321             return ret;
322     }
323
324     ret = ff_qsv_codec_id_to_mfx(avctx->codec_id);
325     if (ret < 0)
326         return ret;
327
328     param->mfx.CodecId = ret;
329     ret = MFXVideoDECODE_DecodeHeader(q->session, &bs, param);
330     if (MFX_ERR_MORE_DATA == ret) {
331        return AVERROR(EAGAIN);
332     }
333     if (ret < 0)
334         return ff_qsv_print_error(avctx, ret,
335                 "Error decoding stream header");
336
337     return 0;
338 }
339
340 static int alloc_frame(AVCodecContext *avctx, QSVContext *q, QSVFrame *frame)
341 {
342     int ret;
343
344     if (q->pool)
345         ret = qsv_get_continuous_buffer(avctx, frame->frame, q->pool);
346     else
347         ret = ff_get_buffer(avctx, frame->frame, AV_GET_BUFFER_FLAG_REF);
348
349     if (ret < 0)
350         return ret;
351
352     if (frame->frame->format == AV_PIX_FMT_QSV) {
353         frame->surface = *(mfxFrameSurface1*)frame->frame->data[3];
354     } else {
355         frame->surface.Info = q->frame_info;
356
357         frame->surface.Data.PitchLow = frame->frame->linesize[0];
358         frame->surface.Data.Y        = frame->frame->data[0];
359         frame->surface.Data.UV       = frame->frame->data[1];
360     }
361
362     if (q->frames_ctx.mids) {
363         ret = ff_qsv_find_surface_idx(&q->frames_ctx, frame);
364         if (ret < 0)
365             return ret;
366
367         frame->surface.Data.MemId = &q->frames_ctx.mids[ret];
368     }
369     frame->surface.Data.ExtParam    = &frame->ext_param;
370     frame->surface.Data.NumExtParam = 1;
371     frame->ext_param                = (mfxExtBuffer*)&frame->dec_info;
372     frame->dec_info.Header.BufferId = MFX_EXTBUFF_DECODED_FRAME_INFO;
373     frame->dec_info.Header.BufferSz = sizeof(frame->dec_info);
374
375     frame->used = 1;
376
377     return 0;
378 }
379
380 static void qsv_clear_unused_frames(QSVContext *q)
381 {
382     QSVFrame *cur = q->work_frames;
383     while (cur) {
384         if (cur->used && !cur->surface.Data.Locked && !cur->queued) {
385             cur->used = 0;
386             av_frame_unref(cur->frame);
387         }
388         cur = cur->next;
389     }
390 }
391
392 static int get_surface(AVCodecContext *avctx, QSVContext *q, mfxFrameSurface1 **surf)
393 {
394     QSVFrame *frame, **last;
395     int ret;
396
397     qsv_clear_unused_frames(q);
398
399     frame = q->work_frames;
400     last  = &q->work_frames;
401     while (frame) {
402         if (!frame->used) {
403             ret = alloc_frame(avctx, q, frame);
404             if (ret < 0)
405                 return ret;
406             *surf = &frame->surface;
407             return 0;
408         }
409
410         last  = &frame->next;
411         frame = frame->next;
412     }
413
414     frame = av_mallocz(sizeof(*frame));
415     if (!frame)
416         return AVERROR(ENOMEM);
417     frame->frame = av_frame_alloc();
418     if (!frame->frame) {
419         av_freep(&frame);
420         return AVERROR(ENOMEM);
421     }
422     *last = frame;
423
424     ret = alloc_frame(avctx, q, frame);
425     if (ret < 0)
426         return ret;
427
428     *surf = &frame->surface;
429
430     return 0;
431 }
432
433 static QSVFrame *find_frame(QSVContext *q, mfxFrameSurface1 *surf)
434 {
435     QSVFrame *cur = q->work_frames;
436     while (cur) {
437         if (surf == &cur->surface)
438             return cur;
439         cur = cur->next;
440     }
441     return NULL;
442 }
443
444 static int qsv_decode(AVCodecContext *avctx, QSVContext *q,
445                       AVFrame *frame, int *got_frame,
446                       const AVPacket *avpkt)
447 {
448     QSVFrame *out_frame;
449     mfxFrameSurface1 *insurf;
450     mfxFrameSurface1 *outsurf;
451     mfxSyncPoint *sync;
452     mfxBitstream bs = { { { 0 } } };
453     int ret;
454
455     if (avpkt->size) {
456         bs.Data       = avpkt->data;
457         bs.DataLength = avpkt->size;
458         bs.MaxLength  = bs.DataLength;
459         bs.TimeStamp  = avpkt->pts;
460         if (avctx->field_order == AV_FIELD_PROGRESSIVE)
461             bs.DataFlag   |= MFX_BITSTREAM_COMPLETE_FRAME;
462     }
463
464     sync = av_mallocz(sizeof(*sync));
465     if (!sync) {
466         av_freep(&sync);
467         return AVERROR(ENOMEM);
468     }
469
470     do {
471         ret = get_surface(avctx, q, &insurf);
472         if (ret < 0) {
473             av_freep(&sync);
474             return ret;
475         }
476
477         ret = MFXVideoDECODE_DecodeFrameAsync(q->session, avpkt->size ? &bs : NULL,
478                                               insurf, &outsurf, sync);
479         if (ret == MFX_WRN_DEVICE_BUSY)
480             av_usleep(500);
481
482     } while (ret == MFX_WRN_DEVICE_BUSY || ret == MFX_ERR_MORE_SURFACE);
483
484     if (ret != MFX_ERR_NONE &&
485         ret != MFX_ERR_MORE_DATA &&
486         ret != MFX_WRN_VIDEO_PARAM_CHANGED &&
487         ret != MFX_ERR_MORE_SURFACE) {
488         av_freep(&sync);
489         return ff_qsv_print_error(avctx, ret,
490                                   "Error during QSV decoding.");
491     }
492
493     /* make sure we do not enter an infinite loop if the SDK
494      * did not consume any data and did not return anything */
495     if (!*sync && !bs.DataOffset) {
496         bs.DataOffset = avpkt->size;
497         ++q->zero_consume_run;
498         if (q->zero_consume_run > 1)
499             ff_qsv_print_warning(avctx, ret, "A decode call did not consume any data");
500     } else if (!*sync && bs.DataOffset) {
501         ++q->buffered_count;
502     } else {
503         q->zero_consume_run = 0;
504     }
505
506     if (*sync) {
507         QSVFrame *out_frame = find_frame(q, outsurf);
508
509         if (!out_frame) {
510             av_log(avctx, AV_LOG_ERROR,
511                    "The returned surface does not correspond to any frame\n");
512             av_freep(&sync);
513             return AVERROR_BUG;
514         }
515
516         out_frame->queued = 1;
517         av_fifo_generic_write(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
518         av_fifo_generic_write(q->async_fifo, &sync,      sizeof(sync),      NULL);
519     } else {
520         av_freep(&sync);
521     }
522
523     if ((qsv_fifo_size(q->async_fifo) >= q->async_depth) ||
524         (!avpkt->size && av_fifo_size(q->async_fifo))) {
525         AVFrame *src_frame;
526
527         av_fifo_generic_read(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
528         av_fifo_generic_read(q->async_fifo, &sync,      sizeof(sync),      NULL);
529         out_frame->queued = 0;
530
531         if (avctx->pix_fmt != AV_PIX_FMT_QSV) {
532             do {
533                 ret = MFXVideoCORE_SyncOperation(q->session, *sync, 1000);
534             } while (ret == MFX_WRN_IN_EXECUTION);
535         }
536
537         av_freep(&sync);
538
539         src_frame = out_frame->frame;
540
541         ret = av_frame_ref(frame, src_frame);
542         if (ret < 0)
543             return ret;
544
545         outsurf = &out_frame->surface;
546
547         frame->pts = outsurf->Data.TimeStamp;
548
549         frame->repeat_pict =
550             outsurf->Info.PicStruct & MFX_PICSTRUCT_FRAME_TRIPLING ? 4 :
551             outsurf->Info.PicStruct & MFX_PICSTRUCT_FRAME_DOUBLING ? 2 :
552             outsurf->Info.PicStruct & MFX_PICSTRUCT_FIELD_REPEATED ? 1 : 0;
553         frame->top_field_first =
554             outsurf->Info.PicStruct & MFX_PICSTRUCT_FIELD_TFF;
555         frame->interlaced_frame =
556             !(outsurf->Info.PicStruct & MFX_PICSTRUCT_PROGRESSIVE);
557         frame->pict_type = ff_qsv_map_pictype(out_frame->dec_info.FrameType);
558         //Key frame is IDR frame is only suitable for H264. For HEVC, IRAPs are key frames.
559         if (avctx->codec_id == AV_CODEC_ID_H264)
560             frame->key_frame = !!(out_frame->dec_info.FrameType & MFX_FRAMETYPE_IDR);
561
562         /* update the surface properties */
563         if (avctx->pix_fmt == AV_PIX_FMT_QSV)
564             ((mfxFrameSurface1*)frame->data[3])->Info = outsurf->Info;
565
566         *got_frame = 1;
567     }
568
569     return bs.DataOffset;
570 }
571
572 static void qsv_decode_close_qsvcontext(QSVContext *q)
573 {
574     QSVFrame *cur = q->work_frames;
575
576     if (q->session)
577         MFXVideoDECODE_Close(q->session);
578
579     while (q->async_fifo && av_fifo_size(q->async_fifo)) {
580         QSVFrame *out_frame;
581         mfxSyncPoint *sync;
582
583         av_fifo_generic_read(q->async_fifo, &out_frame, sizeof(out_frame), NULL);
584         av_fifo_generic_read(q->async_fifo, &sync,      sizeof(sync),      NULL);
585
586         av_freep(&sync);
587     }
588
589     while (cur) {
590         q->work_frames = cur->next;
591         av_frame_free(&cur->frame);
592         av_freep(&cur);
593         cur = q->work_frames;
594     }
595
596     av_fifo_free(q->async_fifo);
597     q->async_fifo = NULL;
598
599     ff_qsv_close_internal_session(&q->internal_qs);
600
601     av_buffer_unref(&q->frames_ctx.hw_frames_ctx);
602     av_buffer_unref(&q->frames_ctx.mids_buf);
603     av_buffer_pool_uninit(&q->pool);
604 }
605
606 static int qsv_process_data(AVCodecContext *avctx, QSVContext *q,
607                             AVFrame *frame, int *got_frame, const AVPacket *pkt)
608 {
609     int ret;
610     mfxVideoParam param = { 0 };
611     enum AVPixelFormat pix_fmt = AV_PIX_FMT_NV12;
612
613     if (!pkt->size)
614         return qsv_decode(avctx, q, frame, got_frame, pkt);
615
616     /* TODO: flush delayed frames on reinit */
617
618     // sw_pix_fmt, coded_width/height should be set for ff_get_format(),
619     // assume sw_pix_fmt is NV12 and coded_width/height to be 1280x720,
620     // the assumption may be not corret but will be updated after header decoded if not true.
621     if (q->orig_pix_fmt != AV_PIX_FMT_NONE)
622         pix_fmt = q->orig_pix_fmt;
623     if (!avctx->coded_width)
624         avctx->coded_width = 1280;
625     if (!avctx->coded_height)
626         avctx->coded_height = 720;
627
628     ret = qsv_decode_header(avctx, q, pkt, pix_fmt, &param);
629
630     if (ret >= 0 && (q->orig_pix_fmt != ff_qsv_map_fourcc(param.mfx.FrameInfo.FourCC) ||
631         avctx->coded_width  != param.mfx.FrameInfo.Width ||
632         avctx->coded_height != param.mfx.FrameInfo.Height)) {
633         AVPacket zero_pkt = {0};
634
635         if (q->buffered_count) {
636             q->reinit_flag = 1;
637             /* decode zero-size pkt to flush the buffered pkt before reinit */
638             q->buffered_count--;
639             return qsv_decode(avctx, q, frame, got_frame, &zero_pkt);
640         }
641         q->reinit_flag = 0;
642
643         q->orig_pix_fmt = avctx->pix_fmt = pix_fmt = ff_qsv_map_fourcc(param.mfx.FrameInfo.FourCC);
644
645         avctx->coded_width  = param.mfx.FrameInfo.Width;
646         avctx->coded_height = param.mfx.FrameInfo.Height;
647
648         ret = qsv_decode_preinit(avctx, q, pix_fmt, &param);
649         if (ret < 0)
650             goto reinit_fail;
651         q->initialized = 0;
652     }
653
654     if (!q->initialized) {
655         ret = qsv_decode_init_context(avctx, q, &param);
656         if (ret < 0)
657             goto reinit_fail;
658         q->initialized = 1;
659     }
660
661     return qsv_decode(avctx, q, frame, got_frame, pkt);
662
663 reinit_fail:
664     q->orig_pix_fmt = avctx->pix_fmt = AV_PIX_FMT_NONE;
665     return ret;
666 }
667
668 enum LoadPlugin {
669     LOAD_PLUGIN_NONE,
670     LOAD_PLUGIN_HEVC_SW,
671     LOAD_PLUGIN_HEVC_HW,
672 };
673
674 typedef struct QSVDecContext {
675     AVClass *class;
676     QSVContext qsv;
677
678     int load_plugin;
679
680     AVFifoBuffer *packet_fifo;
681
682     AVPacket buffer_pkt;
683 } QSVDecContext;
684
685 static void qsv_clear_buffers(QSVDecContext *s)
686 {
687     AVPacket pkt;
688     while (av_fifo_size(s->packet_fifo) >= sizeof(pkt)) {
689         av_fifo_generic_read(s->packet_fifo, &pkt, sizeof(pkt), NULL);
690         av_packet_unref(&pkt);
691     }
692
693     av_packet_unref(&s->buffer_pkt);
694 }
695
696 static av_cold int qsv_decode_close(AVCodecContext *avctx)
697 {
698     QSVDecContext *s = avctx->priv_data;
699
700     av_freep(&s->qsv.load_plugins);
701
702     qsv_decode_close_qsvcontext(&s->qsv);
703
704     qsv_clear_buffers(s);
705
706     av_fifo_free(s->packet_fifo);
707
708     return 0;
709 }
710
711 static av_cold int qsv_decode_init(AVCodecContext *avctx)
712 {
713     QSVDecContext *s = avctx->priv_data;
714     int ret;
715     const char *uid = NULL;
716
717     if (avctx->codec_id == AV_CODEC_ID_VP8) {
718         uid = "f622394d8d87452f878c51f2fc9b4131";
719     } else if (avctx->codec_id == AV_CODEC_ID_VP9) {
720         uid = "a922394d8d87452f878c51f2fc9b4131";
721     }
722     else if (avctx->codec_id == AV_CODEC_ID_HEVC && s->load_plugin != LOAD_PLUGIN_NONE) {
723         static const char * const uid_hevcdec_sw = "15dd936825ad475ea34e35f3f54217a6";
724         static const char * const uid_hevcdec_hw = "33a61c0b4c27454ca8d85dde757c6f8e";
725
726         if (s->qsv.load_plugins[0]) {
727             av_log(avctx, AV_LOG_WARNING,
728                    "load_plugins is not empty, but load_plugin is not set to 'none'."
729                    "The load_plugin value will be ignored.\n");
730         } else {
731             if (s->load_plugin == LOAD_PLUGIN_HEVC_SW)
732                 uid = uid_hevcdec_sw;
733             else
734                 uid = uid_hevcdec_hw;
735         }
736     }
737     if (uid) {
738         av_freep(&s->qsv.load_plugins);
739         s->qsv.load_plugins = av_strdup(uid);
740         if (!s->qsv.load_plugins)
741             return AVERROR(ENOMEM);
742     }
743
744     s->qsv.orig_pix_fmt = AV_PIX_FMT_NV12;
745     s->packet_fifo = av_fifo_alloc(sizeof(AVPacket));
746     if (!s->packet_fifo) {
747         ret = AVERROR(ENOMEM);
748         goto fail;
749     }
750
751     return 0;
752 fail:
753     qsv_decode_close(avctx);
754     return ret;
755 }
756
757 static int qsv_decode_frame(AVCodecContext *avctx, void *data,
758                             int *got_frame, AVPacket *avpkt)
759 {
760     QSVDecContext *s = avctx->priv_data;
761     AVFrame *frame    = data;
762     int ret;
763
764     /* buffer the input packet */
765     if (avpkt->size) {
766         AVPacket input_ref;
767
768         if (av_fifo_space(s->packet_fifo) < sizeof(input_ref)) {
769             ret = av_fifo_realloc2(s->packet_fifo,
770                                    av_fifo_size(s->packet_fifo) + sizeof(input_ref));
771             if (ret < 0)
772                 return ret;
773         }
774
775         ret = av_packet_ref(&input_ref, avpkt);
776         if (ret < 0)
777             return ret;
778         av_fifo_generic_write(s->packet_fifo, &input_ref, sizeof(input_ref), NULL);
779     }
780
781     /* process buffered data */
782     while (!*got_frame) {
783         /* prepare the input data */
784         if (s->buffer_pkt.size <= 0) {
785             /* no more data */
786             if (av_fifo_size(s->packet_fifo) < sizeof(AVPacket))
787                 return avpkt->size ? avpkt->size : qsv_process_data(avctx, &s->qsv, frame, got_frame, avpkt);
788             /* in progress of reinit, no read from fifo and keep the buffer_pkt */
789             if (!s->qsv.reinit_flag) {
790                 av_packet_unref(&s->buffer_pkt);
791                 av_fifo_generic_read(s->packet_fifo, &s->buffer_pkt, sizeof(s->buffer_pkt), NULL);
792             }
793         }
794
795         ret = qsv_process_data(avctx, &s->qsv, frame, got_frame, &s->buffer_pkt);
796         if (ret < 0){
797             /* Drop buffer_pkt when failed to decode the packet. Otherwise,
798                the decoder will keep decoding the failure packet. */
799             av_packet_unref(&s->buffer_pkt);
800             return ret;
801         }
802         if (s->qsv.reinit_flag)
803             continue;
804
805         s->buffer_pkt.size -= ret;
806         s->buffer_pkt.data += ret;
807     }
808
809     return avpkt->size;
810 }
811
812 static void qsv_decode_flush(AVCodecContext *avctx)
813 {
814     QSVDecContext *s = avctx->priv_data;
815
816     qsv_clear_buffers(s);
817
818     s->qsv.orig_pix_fmt = AV_PIX_FMT_NONE;
819     s->qsv.initialized = 0;
820 }
821
822 #define OFFSET(x) offsetof(QSVDecContext, x)
823 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
824
825 #define DEFINE_QSV_DECODER_WITH_OPTION(x, X, bsf_name, opt) \
826 static const AVClass x##_qsv_class = { \
827     .class_name = #x "_qsv", \
828     .item_name  = av_default_item_name, \
829     .option     = opt, \
830     .version    = LIBAVUTIL_VERSION_INT, \
831 }; \
832 AVCodec ff_##x##_qsv_decoder = { \
833     .name           = #x "_qsv", \
834     .long_name      = NULL_IF_CONFIG_SMALL(#X " video (Intel Quick Sync Video acceleration)"), \
835     .priv_data_size = sizeof(QSVDecContext), \
836     .type           = AVMEDIA_TYPE_VIDEO, \
837     .id             = AV_CODEC_ID_##X, \
838     .init           = qsv_decode_init, \
839     .decode         = qsv_decode_frame, \
840     .flush          = qsv_decode_flush, \
841     .close          = qsv_decode_close, \
842     .bsfs           = bsf_name, \
843     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HYBRID, \
844     .priv_class     = &x##_qsv_class, \
845     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12, \
846                                                     AV_PIX_FMT_P010, \
847                                                     AV_PIX_FMT_QSV, \
848                                                     AV_PIX_FMT_NONE }, \
849     .hw_configs     = qsv_hw_configs, \
850     .wrapper_name   = "qsv", \
851 }; \
852
853 #define DEFINE_QSV_DECODER(x, X, bsf_name) DEFINE_QSV_DECODER_WITH_OPTION(x, X, bsf_name, options)
854
855 #if CONFIG_HEVC_QSV_DECODER
856 static const AVOption hevc_options[] = {
857     { "async_depth", "Internal parallelization depth, the higher the value the higher the latency.", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 1, INT_MAX, VD },
858
859     { "load_plugin", "A user plugin to load in an internal session", OFFSET(load_plugin), AV_OPT_TYPE_INT, { .i64 = LOAD_PLUGIN_HEVC_HW }, LOAD_PLUGIN_NONE, LOAD_PLUGIN_HEVC_HW, VD, "load_plugin" },
860     { "none",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_NONE },    0, 0, VD, "load_plugin" },
861     { "hevc_sw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_SW }, 0, 0, VD, "load_plugin" },
862     { "hevc_hw",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LOAD_PLUGIN_HEVC_HW }, 0, 0, VD, "load_plugin" },
863
864     { "load_plugins", "A :-separate list of hexadecimal plugin UIDs to load in an internal session",
865         OFFSET(qsv.load_plugins), AV_OPT_TYPE_STRING, { .str = "" }, 0, 0, VD },
866
867     { "gpu_copy", "A GPU-accelerated copy between video and system memory", OFFSET(qsv.gpu_copy), AV_OPT_TYPE_INT, { .i64 = MFX_GPUCOPY_DEFAULT }, MFX_GPUCOPY_DEFAULT, MFX_GPUCOPY_OFF, VD, "gpu_copy"},
868         { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_DEFAULT }, 0, 0, VD, "gpu_copy"},
869         { "on",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_ON },      0, 0, VD, "gpu_copy"},
870         { "off",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_OFF },     0, 0, VD, "gpu_copy"},
871     { NULL },
872 };
873 DEFINE_QSV_DECODER_WITH_OPTION(hevc, HEVC, "hevc_mp4toannexb", hevc_options)
874 #endif
875
876 static const AVOption options[] = {
877     { "async_depth", "Internal parallelization depth, the higher the value the higher the latency.", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 1, INT_MAX, VD },
878
879     { "gpu_copy", "A GPU-accelerated copy between video and system memory", OFFSET(qsv.gpu_copy), AV_OPT_TYPE_INT, { .i64 = MFX_GPUCOPY_DEFAULT }, MFX_GPUCOPY_DEFAULT, MFX_GPUCOPY_OFF, VD, "gpu_copy"},
880         { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_DEFAULT }, 0, 0, VD, "gpu_copy"},
881         { "on",      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_ON },      0, 0, VD, "gpu_copy"},
882         { "off",     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_GPUCOPY_OFF },     0, 0, VD, "gpu_copy"},
883     { NULL },
884 };
885
886 #if CONFIG_H264_QSV_DECODER
887 DEFINE_QSV_DECODER(h264, H264, "h264_mp4toannexb")
888 #endif
889
890 #if CONFIG_MPEG2_QSV_DECODER
891 DEFINE_QSV_DECODER(mpeg2, MPEG2VIDEO, NULL)
892 #endif
893
894 #if CONFIG_VC1_QSV_DECODER
895 DEFINE_QSV_DECODER(vc1, VC1, NULL)
896 #endif
897
898 #if CONFIG_MJPEG_QSV_DECODER
899 DEFINE_QSV_DECODER(mjpeg, MJPEG, NULL)
900 #endif
901
902 #if CONFIG_VP8_QSV_DECODER
903 DEFINE_QSV_DECODER(vp8, VP8, NULL)
904 #endif
905
906 #if CONFIG_VP9_QSV_DECODER
907 DEFINE_QSV_DECODER(vp9, VP9, NULL)
908 #endif
909
910 #if CONFIG_AV1_QSV_DECODER
911 DEFINE_QSV_DECODER(av1, AV1, NULL)
912 #endif