]> git.sesse.net Git - ffmpeg/blob - libavcodec/qsvenc.c
h264: eliminate decode_postinit()
[ffmpeg] / libavcodec / qsvenc.c
1 /*
2  * Intel MediaSDK QSV encoder utility functions
3  *
4  * copyright (c) 2013 Yukinori Yamazoe
5  * copyright (c) 2015 Anton Khirnov
6  *
7  * This file is part of Libav.
8  *
9  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include <string.h>
25 #include <sys/types.h>
26 #include <mfx/mfxvideo.h>
27
28 #include "libavutil/common.h"
29 #include "libavutil/hwcontext.h"
30 #include "libavutil/hwcontext_qsv.h"
31 #include "libavutil/mem.h"
32 #include "libavutil/log.h"
33 #include "libavutil/time.h"
34 #include "libavutil/imgutils.h"
35
36 #include "avcodec.h"
37 #include "internal.h"
38 #include "qsv.h"
39 #include "qsv_internal.h"
40 #include "qsvenc.h"
41
42 static const struct {
43     mfxU16 profile;
44     const char *name;
45 } profile_names[] = {
46     { MFX_PROFILE_AVC_BASELINE,                 "baseline"              },
47     { MFX_PROFILE_AVC_MAIN,                     "main"                  },
48     { MFX_PROFILE_AVC_EXTENDED,                 "extended"              },
49     { MFX_PROFILE_AVC_HIGH,                     "high"                  },
50 #if QSV_VERSION_ATLEAST(1, 15)
51     { MFX_PROFILE_AVC_HIGH_422,                 "high 422"              },
52 #endif
53 #if QSV_VERSION_ATLEAST(1, 4)
54     { MFX_PROFILE_AVC_CONSTRAINED_BASELINE,     "constrained baseline"  },
55     { MFX_PROFILE_AVC_CONSTRAINED_HIGH,         "constrained high"      },
56     { MFX_PROFILE_AVC_PROGRESSIVE_HIGH,         "progressive high"      },
57 #endif
58     { MFX_PROFILE_MPEG2_SIMPLE,                 "simple"                },
59     { MFX_PROFILE_MPEG2_MAIN,                   "main"                  },
60     { MFX_PROFILE_MPEG2_HIGH,                   "high"                  },
61     { MFX_PROFILE_VC1_SIMPLE,                   "simple"                },
62     { MFX_PROFILE_VC1_MAIN,                     "main"                  },
63     { MFX_PROFILE_VC1_ADVANCED,                 "advanced"              },
64 #if QSV_VERSION_ATLEAST(1, 8)
65     { MFX_PROFILE_HEVC_MAIN,                    "main"                  },
66     { MFX_PROFILE_HEVC_MAIN10,                  "main10"                },
67     { MFX_PROFILE_HEVC_MAINSP,                  "mainsp"                },
68 #endif
69 };
70
71 static const char *print_profile(mfxU16 profile)
72 {
73     int i;
74     for (i = 0; i < FF_ARRAY_ELEMS(profile_names); i++)
75         if (profile == profile_names[i].profile)
76             return profile_names[i].name;
77     return "unknown";
78 }
79
80 static const struct {
81     mfxU16      rc_mode;
82     const char *name;
83 } rc_names[] = {
84     { MFX_RATECONTROL_CBR,     "CBR" },
85     { MFX_RATECONTROL_VBR,     "VBR" },
86     { MFX_RATECONTROL_CQP,     "CQP" },
87     { MFX_RATECONTROL_AVBR,    "AVBR" },
88 #if QSV_HAVE_LA
89     { MFX_RATECONTROL_LA,      "LA" },
90 #endif
91 #if QSV_HAVE_ICQ
92     { MFX_RATECONTROL_ICQ,     "ICQ" },
93     { MFX_RATECONTROL_LA_ICQ,  "LA_ICQ" },
94 #endif
95 #if QSV_HAVE_VCM
96     { MFX_RATECONTROL_VCM,     "VCM" },
97 #endif
98 #if QSV_VERSION_ATLEAST(1, 10)
99     { MFX_RATECONTROL_LA_EXT,  "LA_EXT" },
100 #endif
101 #if QSV_HAVE_LA_HRD
102     { MFX_RATECONTROL_LA_HRD,  "LA_HRD" },
103 #endif
104 #if QSV_HAVE_QVBR
105     { MFX_RATECONTROL_QVBR,    "QVBR" },
106 #endif
107 };
108
109 static const char *print_ratecontrol(mfxU16 rc_mode)
110 {
111     int i;
112     for (i = 0; i < FF_ARRAY_ELEMS(rc_names); i++)
113         if (rc_mode == rc_names[i].rc_mode)
114             return rc_names[i].name;
115     return "unknown";
116 }
117
118 static const char *print_threestate(mfxU16 val)
119 {
120     if (val == MFX_CODINGOPTION_ON)
121         return "ON";
122     else if (val == MFX_CODINGOPTION_OFF)
123         return "OFF";
124     return "unknown";
125 }
126
127 static void dump_video_param(AVCodecContext *avctx, QSVEncContext *q,
128                              mfxExtBuffer **coding_opts)
129 {
130     mfxInfoMFX *info = &q->param.mfx;
131
132     mfxExtCodingOption   *co = (mfxExtCodingOption*)coding_opts[0];
133 #if QSV_HAVE_CO2
134     mfxExtCodingOption2 *co2 = (mfxExtCodingOption2*)coding_opts[1];
135 #endif
136 #if QSV_HAVE_CO3
137     mfxExtCodingOption3 *co3 = (mfxExtCodingOption3*)coding_opts[2];
138 #endif
139
140     av_log(avctx, AV_LOG_VERBOSE, "profile: %s; level: %"PRIu16"\n",
141            print_profile(info->CodecProfile), info->CodecLevel);
142
143     av_log(avctx, AV_LOG_VERBOSE, "GopPicSize: %"PRIu16"; GopRefDist: %"PRIu16"; GopOptFlag: ",
144            info->GopPicSize, info->GopRefDist);
145     if (info->GopOptFlag & MFX_GOP_CLOSED)
146         av_log(avctx, AV_LOG_VERBOSE, "closed ");
147     if (info->GopOptFlag & MFX_GOP_STRICT)
148         av_log(avctx, AV_LOG_VERBOSE, "strict ");
149     av_log(avctx, AV_LOG_VERBOSE, "; IdrInterval: %"PRIu16"\n", info->IdrInterval);
150
151     av_log(avctx, AV_LOG_VERBOSE, "TargetUsage: %"PRIu16"; RateControlMethod: %s\n",
152            info->TargetUsage, print_ratecontrol(info->RateControlMethod));
153
154     if (info->RateControlMethod == MFX_RATECONTROL_CBR ||
155         info->RateControlMethod == MFX_RATECONTROL_VBR
156 #if QSV_HAVE_VCM
157         || info->RateControlMethod == MFX_RATECONTROL_VCM
158 #endif
159         ) {
160         av_log(avctx, AV_LOG_VERBOSE,
161                "InitialDelayInKB: %"PRIu16"; TargetKbps: %"PRIu16"; MaxKbps: %"PRIu16"\n",
162                info->InitialDelayInKB, info->TargetKbps, info->MaxKbps);
163     } else if (info->RateControlMethod == MFX_RATECONTROL_CQP) {
164         av_log(avctx, AV_LOG_VERBOSE, "QPI: %"PRIu16"; QPP: %"PRIu16"; QPB: %"PRIu16"\n",
165                info->QPI, info->QPP, info->QPB);
166     } else if (info->RateControlMethod == MFX_RATECONTROL_AVBR) {
167         av_log(avctx, AV_LOG_VERBOSE,
168                "TargetKbps: %"PRIu16"; Accuracy: %"PRIu16"; Convergence: %"PRIu16"\n",
169                info->TargetKbps, info->Accuracy, info->Convergence);
170     }
171 #if QSV_HAVE_LA
172     else if (info->RateControlMethod == MFX_RATECONTROL_LA
173 #if QSV_HAVE_LA_HRD
174              || info->RateControlMethod == MFX_RATECONTROL_LA_HRD
175 #endif
176              ) {
177         av_log(avctx, AV_LOG_VERBOSE,
178                "TargetKbps: %"PRIu16"; LookAheadDepth: %"PRIu16"\n",
179                info->TargetKbps, co2->LookAheadDepth);
180     }
181 #endif
182 #if QSV_HAVE_ICQ
183     else if (info->RateControlMethod == MFX_RATECONTROL_ICQ) {
184         av_log(avctx, AV_LOG_VERBOSE, "ICQQuality: %"PRIu16"\n", info->ICQQuality);
185     } else if (info->RateControlMethod == MFX_RATECONTROL_LA_ICQ) {
186         av_log(avctx, AV_LOG_VERBOSE, "ICQQuality: %"PRIu16"; LookAheadDepth: %"PRIu16"\n",
187                info->ICQQuality, co2->LookAheadDepth);
188     }
189 #endif
190 #if QSV_HAVE_QVBR
191     else if (info->RateControlMethod == MFX_RATECONTROL_QVBR) {
192         av_log(avctx, AV_LOG_VERBOSE, "QVBRQuality: %"PRIu16"\n",
193                co3->QVBRQuality);
194     }
195 #endif
196
197     av_log(avctx, AV_LOG_VERBOSE, "NumSlice: %"PRIu16"; NumRefFrame: %"PRIu16"\n",
198            info->NumSlice, info->NumRefFrame);
199     av_log(avctx, AV_LOG_VERBOSE, "RateDistortionOpt: %s\n",
200            print_threestate(co->RateDistortionOpt));
201
202 #if QSV_HAVE_CO2
203     av_log(avctx, AV_LOG_VERBOSE,
204            "RecoveryPointSEI: %s IntRefType: %"PRIu16"; IntRefCycleSize: %"PRIu16"; IntRefQPDelta: %"PRId16"\n",
205            print_threestate(co->RecoveryPointSEI), co2->IntRefType, co2->IntRefCycleSize, co2->IntRefQPDelta);
206
207     av_log(avctx, AV_LOG_VERBOSE, "MaxFrameSize: %"PRIu16"; ", co2->MaxFrameSize);
208 #if QSV_HAVE_MAX_SLICE_SIZE
209     av_log(avctx, AV_LOG_VERBOSE, "MaxSliceSize: %"PRIu16"; ", co2->MaxSliceSize);
210 #endif
211     av_log(avctx, AV_LOG_VERBOSE, "\n");
212
213     av_log(avctx, AV_LOG_VERBOSE,
214            "BitrateLimit: %s; MBBRC: %s; ExtBRC: %s\n",
215            print_threestate(co2->BitrateLimit), print_threestate(co2->MBBRC),
216            print_threestate(co2->ExtBRC));
217
218 #if QSV_HAVE_TRELLIS
219     av_log(avctx, AV_LOG_VERBOSE, "Trellis: ");
220     if (co2->Trellis & MFX_TRELLIS_OFF) {
221         av_log(avctx, AV_LOG_VERBOSE, "off");
222     } else if (!co2->Trellis) {
223         av_log(avctx, AV_LOG_VERBOSE, "auto");
224     } else {
225         if (co2->Trellis & MFX_TRELLIS_I) av_log(avctx, AV_LOG_VERBOSE, "I");
226         if (co2->Trellis & MFX_TRELLIS_P) av_log(avctx, AV_LOG_VERBOSE, "P");
227         if (co2->Trellis & MFX_TRELLIS_B) av_log(avctx, AV_LOG_VERBOSE, "B");
228     }
229     av_log(avctx, AV_LOG_VERBOSE, "\n");
230 #endif
231
232 #if QSV_VERSION_ATLEAST(1, 8)
233     av_log(avctx, AV_LOG_VERBOSE,
234            "RepeatPPS: %s; NumMbPerSlice: %"PRIu16"; LookAheadDS: ",
235            print_threestate(co2->RepeatPPS), co2->NumMbPerSlice);
236     switch (co2->LookAheadDS) {
237     case MFX_LOOKAHEAD_DS_OFF: av_log(avctx, AV_LOG_VERBOSE, "off");     break;
238     case MFX_LOOKAHEAD_DS_2x:  av_log(avctx, AV_LOG_VERBOSE, "2x");      break;
239     case MFX_LOOKAHEAD_DS_4x:  av_log(avctx, AV_LOG_VERBOSE, "4x");      break;
240     default:                   av_log(avctx, AV_LOG_VERBOSE, "unknown"); break;
241     }
242     av_log(avctx, AV_LOG_VERBOSE, "\n");
243
244     av_log(avctx, AV_LOG_VERBOSE, "AdaptiveI: %s; AdaptiveB: %s; BRefType: ",
245            print_threestate(co2->AdaptiveI), print_threestate(co2->AdaptiveB));
246     switch (co2->BRefType) {
247     case MFX_B_REF_OFF:     av_log(avctx, AV_LOG_VERBOSE, "off");       break;
248     case MFX_B_REF_PYRAMID: av_log(avctx, AV_LOG_VERBOSE, "pyramid");   break;
249     default:                av_log(avctx, AV_LOG_VERBOSE, "auto");      break;
250     }
251     av_log(avctx, AV_LOG_VERBOSE, "\n");
252 #endif
253
254 #if QSV_VERSION_ATLEAST(1, 9)
255     av_log(avctx, AV_LOG_VERBOSE,
256            "MinQPI: %"PRIu8"; MaxQPI: %"PRIu8"; MinQPP: %"PRIu8"; MaxQPP: %"PRIu8"; MinQPB: %"PRIu8"; MaxQPB: %"PRIu8"\n",
257            co2->MinQPI, co2->MaxQPI, co2->MinQPP, co2->MaxQPP, co2->MinQPB, co2->MaxQPB);
258 #endif
259 #endif
260
261     if (avctx->codec_id == AV_CODEC_ID_H264) {
262         av_log(avctx, AV_LOG_VERBOSE, "Entropy coding: %s; MaxDecFrameBuffering: %"PRIu16"\n",
263                co->CAVLC == MFX_CODINGOPTION_ON ? "CAVLC" : "CABAC", co->MaxDecFrameBuffering);
264         av_log(avctx, AV_LOG_VERBOSE,
265                "NalHrdConformance: %s; SingleSeiNalUnit: %s; VuiVclHrdParameters: %s VuiNalHrdParameters: %s\n",
266                print_threestate(co->NalHrdConformance), print_threestate(co->SingleSeiNalUnit),
267                print_threestate(co->VuiVclHrdParameters), print_threestate(co->VuiNalHrdParameters));
268     }
269 }
270
271 static int select_rc_mode(AVCodecContext *avctx, QSVEncContext *q)
272 {
273     const char *rc_desc;
274     mfxU16      rc_mode;
275
276     int want_la     = q->la_depth >= 0;
277     int want_qscale = !!(avctx->flags & AV_CODEC_FLAG_QSCALE);
278     int want_vcm    = q->vcm;
279
280     if (want_la && !QSV_HAVE_LA) {
281         av_log(avctx, AV_LOG_ERROR,
282                "Lookahead ratecontrol mode requested, but is not supported by this SDK version\n");
283         return AVERROR(ENOSYS);
284     }
285     if (want_vcm && !QSV_HAVE_VCM) {
286         av_log(avctx, AV_LOG_ERROR,
287                "VCM ratecontrol mode requested, but is not supported by this SDK version\n");
288         return AVERROR(ENOSYS);
289     }
290
291     if (want_la + want_qscale + want_vcm > 1) {
292         av_log(avctx, AV_LOG_ERROR,
293                "More than one of: { constant qscale, lookahead, VCM } requested, "
294                "only one of them can be used at a time.\n");
295         return AVERROR(EINVAL);
296     }
297
298     if (want_qscale) {
299         rc_mode = MFX_RATECONTROL_CQP;
300         rc_desc = "constant quantization parameter (CQP)";
301     }
302 #if QSV_HAVE_VCM
303     else if (want_vcm) {
304         rc_mode = MFX_RATECONTROL_VCM;
305         rc_desc = "video conferencing mode (VCM)";
306     }
307 #endif
308 #if QSV_HAVE_LA
309     else if (want_la) {
310         rc_mode = MFX_RATECONTROL_LA;
311         rc_desc = "VBR with lookahead (LA)";
312
313 #if QSV_HAVE_ICQ
314         if (avctx->global_quality > 0) {
315             rc_mode = MFX_RATECONTROL_LA_ICQ;
316             rc_desc = "intelligent constant quality with lookahead (LA_ICQ)";
317         }
318 #endif
319     }
320 #endif
321 #if QSV_HAVE_ICQ
322     else if (avctx->global_quality > 0) {
323         rc_mode = MFX_RATECONTROL_ICQ;
324         rc_desc = "intelligent constant quality (ICQ)";
325     }
326 #endif
327     else if (avctx->rc_max_rate == avctx->bit_rate) {
328         rc_mode = MFX_RATECONTROL_CBR;
329         rc_desc = "constant bitrate (CBR)";
330     } else if (!avctx->rc_max_rate) {
331         rc_mode = MFX_RATECONTROL_AVBR;
332         rc_desc = "average variable bitrate (AVBR)";
333     } else {
334         rc_mode = MFX_RATECONTROL_VBR;
335         rc_desc = "variable bitrate (VBR)";
336     }
337
338     q->param.mfx.RateControlMethod = rc_mode;
339     av_log(avctx, AV_LOG_VERBOSE, "Using the %s ratecontrol method\n", rc_desc);
340
341     return 0;
342 }
343
344 static int rc_supported(QSVEncContext *q)
345 {
346     mfxVideoParam param_out = { .mfx.CodecId = q->param.mfx.CodecId };
347     mfxStatus ret;
348
349     ret = MFXVideoENCODE_Query(q->session, &q->param, &param_out);
350     if (ret < 0 ||
351         param_out.mfx.RateControlMethod != q->param.mfx.RateControlMethod)
352         return 0;
353     return 1;
354 }
355
356 static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
357 {
358     float quant;
359     int ret;
360
361     ret = ff_qsv_codec_id_to_mfx(avctx->codec_id);
362     if (ret < 0)
363         return AVERROR_BUG;
364     q->param.mfx.CodecId = ret;
365
366     q->width_align = avctx->codec_id == AV_CODEC_ID_HEVC ? 32 : 16;
367
368     if (avctx->level > 0)
369         q->param.mfx.CodecLevel = avctx->level;
370
371     q->param.mfx.CodecProfile       = q->profile;
372     q->param.mfx.TargetUsage        = q->preset;
373     q->param.mfx.GopPicSize         = FFMAX(0, avctx->gop_size);
374     q->param.mfx.GopRefDist         = FFMAX(-1, avctx->max_b_frames) + 1;
375     q->param.mfx.GopOptFlag         = avctx->flags & AV_CODEC_FLAG_CLOSED_GOP ?
376                                       MFX_GOP_CLOSED : 0;
377     q->param.mfx.IdrInterval        = q->idr_interval;
378     q->param.mfx.NumSlice           = avctx->slices;
379     q->param.mfx.NumRefFrame        = FFMAX(0, avctx->refs);
380     q->param.mfx.EncodedOrder       = 0;
381     q->param.mfx.BufferSizeInKB     = 0;
382
383     if (avctx->hw_frames_ctx) {
384         AVHWFramesContext *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
385         AVQSVFramesContext *frames_hwctx = frames_ctx->hwctx;
386         q->param.mfx.FrameInfo = frames_hwctx->surfaces[0].Info;
387     } else {
388         q->param.mfx.FrameInfo.FourCC         = MFX_FOURCC_NV12;
389         q->param.mfx.FrameInfo.Width          = FFALIGN(avctx->width, q->width_align);
390         q->param.mfx.FrameInfo.Height         = FFALIGN(avctx->height, 32);
391         q->param.mfx.FrameInfo.CropX          = 0;
392         q->param.mfx.FrameInfo.CropY          = 0;
393         q->param.mfx.FrameInfo.CropW          = avctx->width;
394         q->param.mfx.FrameInfo.CropH          = avctx->height;
395         q->param.mfx.FrameInfo.AspectRatioW   = avctx->sample_aspect_ratio.num;
396         q->param.mfx.FrameInfo.AspectRatioH   = avctx->sample_aspect_ratio.den;
397         q->param.mfx.FrameInfo.PicStruct      = MFX_PICSTRUCT_PROGRESSIVE;
398         q->param.mfx.FrameInfo.ChromaFormat   = MFX_CHROMAFORMAT_YUV420;
399         q->param.mfx.FrameInfo.BitDepthLuma   = 8;
400         q->param.mfx.FrameInfo.BitDepthChroma = 8;
401     }
402
403     if (avctx->framerate.den > 0 && avctx->framerate.num > 0) {
404         q->param.mfx.FrameInfo.FrameRateExtN = avctx->framerate.num;
405         q->param.mfx.FrameInfo.FrameRateExtD = avctx->framerate.den;
406     } else {
407         q->param.mfx.FrameInfo.FrameRateExtN  = avctx->time_base.den;
408         q->param.mfx.FrameInfo.FrameRateExtD  = avctx->time_base.num;
409     }
410
411     ret = select_rc_mode(avctx, q);
412     if (ret < 0)
413         return ret;
414
415     switch (q->param.mfx.RateControlMethod) {
416     case MFX_RATECONTROL_CBR:
417     case MFX_RATECONTROL_VBR:
418 #if QSV_HAVE_VCM
419     case MFX_RATECONTROL_VCM:
420 #endif
421         q->param.mfx.InitialDelayInKB = avctx->rc_initial_buffer_occupancy / 1000;
422         q->param.mfx.TargetKbps       = avctx->bit_rate / 1000;
423         q->param.mfx.MaxKbps          = avctx->rc_max_rate / 1000;
424         break;
425     case MFX_RATECONTROL_CQP:
426         quant = avctx->global_quality / FF_QP2LAMBDA;
427
428         q->param.mfx.QPI = av_clip(quant * fabs(avctx->i_quant_factor) + avctx->i_quant_offset, 0, 51);
429         q->param.mfx.QPP = av_clip(quant, 0, 51);
430         q->param.mfx.QPB = av_clip(quant * fabs(avctx->b_quant_factor) + avctx->b_quant_offset, 0, 51);
431
432         break;
433     case MFX_RATECONTROL_AVBR:
434         q->param.mfx.TargetKbps  = avctx->bit_rate / 1000;
435         q->param.mfx.Convergence = q->avbr_convergence;
436         q->param.mfx.Accuracy    = q->avbr_accuracy;
437         break;
438 #if QSV_HAVE_LA
439     case MFX_RATECONTROL_LA:
440         q->param.mfx.TargetKbps  = avctx->bit_rate / 1000;
441         q->extco2.LookAheadDepth = q->la_depth;
442         break;
443 #if QSV_HAVE_ICQ
444     case MFX_RATECONTROL_LA_ICQ:
445         q->extco2.LookAheadDepth = q->la_depth;
446     case MFX_RATECONTROL_ICQ:
447         q->param.mfx.ICQQuality  = avctx->global_quality;
448         break;
449 #endif
450 #endif
451     }
452
453     // the HEVC encoder plugin currently fails if coding options
454     // are provided
455     if (avctx->codec_id != AV_CODEC_ID_HEVC) {
456         q->extco.Header.BufferId      = MFX_EXTBUFF_CODING_OPTION;
457         q->extco.Header.BufferSz      = sizeof(q->extco);
458 #if FF_API_CODER_TYPE
459 FF_DISABLE_DEPRECATION_WARNINGS
460         if (avctx->coder_type != 0)
461             q->cavlc = avctx->coder_type == FF_CODER_TYPE_VLC;
462 FF_ENABLE_DEPRECATION_WARNINGS
463 #endif
464         q->extco.CAVLC = q->cavlc ? MFX_CODINGOPTION_ON
465                                   : MFX_CODINGOPTION_UNKNOWN;
466
467         if (q->rdo >= 0)
468             q->extco.RateDistortionOpt = q->rdo > 0 ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
469
470         if (avctx->codec_id == AV_CODEC_ID_H264) {
471             if (avctx->strict_std_compliance != FF_COMPLIANCE_NORMAL)
472                 q->extco.NalHrdConformance = avctx->strict_std_compliance > FF_COMPLIANCE_NORMAL ?
473                                              MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
474
475             if (q->single_sei_nal_unit >= 0)
476                 q->extco.SingleSeiNalUnit = q->single_sei_nal_unit ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
477             if (q->recovery_point_sei >= 0)
478                 q->extco.RecoveryPointSEI = q->recovery_point_sei ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
479             q->extco.MaxDecFrameBuffering = q->max_dec_frame_buffering;
480         }
481
482         q->extparam_internal[q->nb_extparam_internal++] = (mfxExtBuffer *)&q->extco;
483
484 #if QSV_HAVE_CO2
485         if (avctx->codec_id == AV_CODEC_ID_H264) {
486             q->extco2.Header.BufferId     = MFX_EXTBUFF_CODING_OPTION2;
487             q->extco2.Header.BufferSz     = sizeof(q->extco2);
488
489             if (q->int_ref_type >= 0)
490                 q->extco2.IntRefType = q->int_ref_type;
491             if (q->int_ref_cycle_size >= 0)
492                 q->extco2.IntRefCycleSize = q->int_ref_cycle_size;
493             if (q->int_ref_qp_delta != INT16_MIN)
494                 q->extco2.IntRefQPDelta = q->int_ref_qp_delta;
495
496             if (q->bitrate_limit >= 0)
497                 q->extco2.BitrateLimit = q->bitrate_limit ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
498             if (q->mbbrc >= 0)
499                 q->extco2.MBBRC = q->mbbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
500             if (q->extbrc >= 0)
501                 q->extco2.ExtBRC = q->extbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
502
503             if (q->max_frame_size >= 0)
504                 q->extco2.MaxFrameSize = q->max_frame_size;
505 #if QSV_HAVE_MAX_SLICE_SIZE
506             if (q->max_slice_size >= 0)
507                 q->extco2.MaxSliceSize = q->max_slice_size;
508 #endif
509
510 #if QSV_HAVE_TRELLIS
511             q->extco2.Trellis = q->trellis;
512 #endif
513
514 #if QSV_HAVE_BREF_TYPE
515 #if FF_API_PRIVATE_OPT
516 FF_DISABLE_DEPRECATION_WARNINGS
517             if (avctx->b_frame_strategy >= 0)
518                 q->b_strategy = avctx->b_frame_strategy;
519 FF_ENABLE_DEPRECATION_WARNINGS
520 #endif
521             if (q->b_strategy >= 0)
522                 q->extco2.BRefType = q->b_strategy ? MFX_B_REF_PYRAMID : MFX_B_REF_OFF;
523             if (q->adaptive_i >= 0)
524                 q->extco2.AdaptiveI = q->adaptive_i ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
525             if (q->adaptive_b >= 0)
526                 q->extco2.AdaptiveB = q->adaptive_b ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
527 #endif
528
529             q->extparam_internal[q->nb_extparam_internal++] = (mfxExtBuffer *)&q->extco2;
530         }
531 #endif
532     }
533
534     if (!rc_supported(q)) {
535         av_log(avctx, AV_LOG_ERROR,
536                "Selected ratecontrol mode is not supported by the QSV "
537                "runtime. Choose a different mode.\n");
538         return AVERROR(ENOSYS);
539     }
540
541     return 0;
542 }
543
544 static int qsv_retrieve_enc_params(AVCodecContext *avctx, QSVEncContext *q)
545 {
546     AVCPBProperties *cpb_props;
547
548     uint8_t sps_buf[128];
549     uint8_t pps_buf[128];
550
551     mfxExtCodingOptionSPSPPS extradata = {
552         .Header.BufferId = MFX_EXTBUFF_CODING_OPTION_SPSPPS,
553         .Header.BufferSz = sizeof(extradata),
554         .SPSBuffer = sps_buf, .SPSBufSize = sizeof(sps_buf),
555         .PPSBuffer = pps_buf, .PPSBufSize = sizeof(pps_buf)
556     };
557
558     mfxExtCodingOption co = {
559         .Header.BufferId = MFX_EXTBUFF_CODING_OPTION,
560         .Header.BufferSz = sizeof(co),
561     };
562 #if QSV_HAVE_CO2
563     mfxExtCodingOption2 co2 = {
564         .Header.BufferId = MFX_EXTBUFF_CODING_OPTION2,
565         .Header.BufferSz = sizeof(co2),
566     };
567 #endif
568 #if QSV_HAVE_CO3
569     mfxExtCodingOption3 co3 = {
570         .Header.BufferId = MFX_EXTBUFF_CODING_OPTION3,
571         .Header.BufferSz = sizeof(co3),
572     };
573 #endif
574
575     mfxExtBuffer *ext_buffers[] = {
576         (mfxExtBuffer*)&extradata,
577         (mfxExtBuffer*)&co,
578 #if QSV_HAVE_CO2
579         (mfxExtBuffer*)&co2,
580 #endif
581 #if QSV_HAVE_CO3
582         (mfxExtBuffer*)&co3,
583 #endif
584     };
585
586     int need_pps = avctx->codec_id != AV_CODEC_ID_MPEG2VIDEO;
587     int ret;
588
589     q->param.ExtParam    = ext_buffers;
590     q->param.NumExtParam = FF_ARRAY_ELEMS(ext_buffers);
591
592     ret = MFXVideoENCODE_GetVideoParam(q->session, &q->param);
593     if (ret < 0)
594         return ff_qsv_error(ret);
595
596     q->packet_size = q->param.mfx.BufferSizeInKB * 1000;
597
598     if (!extradata.SPSBufSize || (need_pps && !extradata.PPSBufSize)) {
599         av_log(avctx, AV_LOG_ERROR, "No extradata returned from libmfx.\n");
600         return AVERROR_UNKNOWN;
601     }
602
603     avctx->extradata = av_malloc(extradata.SPSBufSize + need_pps * extradata.PPSBufSize +
604                                  AV_INPUT_BUFFER_PADDING_SIZE);
605     if (!avctx->extradata)
606         return AVERROR(ENOMEM);
607
608     memcpy(avctx->extradata,                        sps_buf, extradata.SPSBufSize);
609     if (need_pps)
610         memcpy(avctx->extradata + extradata.SPSBufSize, pps_buf, extradata.PPSBufSize);
611     avctx->extradata_size = extradata.SPSBufSize + need_pps * extradata.PPSBufSize;
612     memset(avctx->extradata + avctx->extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
613
614     cpb_props = ff_add_cpb_side_data(avctx);
615     if (!cpb_props)
616         return AVERROR(ENOMEM);
617     cpb_props->max_bitrate = avctx->rc_max_rate;
618     cpb_props->min_bitrate = avctx->rc_min_rate;
619     cpb_props->avg_bitrate = avctx->bit_rate;
620     cpb_props->buffer_size = avctx->rc_buffer_size;
621
622     dump_video_param(avctx, q, ext_buffers + 1);
623
624     return 0;
625 }
626
627 static int qsv_init_opaque_alloc(AVCodecContext *avctx, QSVEncContext *q)
628 {
629     AVQSVContext *qsv = avctx->hwaccel_context;
630     mfxFrameSurface1 *surfaces;
631     int nb_surfaces, i;
632
633     nb_surfaces = qsv->nb_opaque_surfaces + q->req.NumFrameSuggested + q->async_depth;
634
635     q->opaque_alloc_buf = av_buffer_allocz(sizeof(*surfaces) * nb_surfaces);
636     if (!q->opaque_alloc_buf)
637         return AVERROR(ENOMEM);
638
639     q->opaque_surfaces = av_malloc_array(nb_surfaces, sizeof(*q->opaque_surfaces));
640     if (!q->opaque_surfaces)
641         return AVERROR(ENOMEM);
642
643     surfaces = (mfxFrameSurface1*)q->opaque_alloc_buf->data;
644     for (i = 0; i < nb_surfaces; i++) {
645         surfaces[i].Info      = q->req.Info;
646         q->opaque_surfaces[i] = surfaces + i;
647     }
648
649     q->opaque_alloc.Header.BufferId = MFX_EXTBUFF_OPAQUE_SURFACE_ALLOCATION;
650     q->opaque_alloc.Header.BufferSz = sizeof(q->opaque_alloc);
651     q->opaque_alloc.In.Surfaces     = q->opaque_surfaces;
652     q->opaque_alloc.In.NumSurface   = nb_surfaces;
653     q->opaque_alloc.In.Type         = q->req.Type;
654
655     q->extparam_internal[q->nb_extparam_internal++] = (mfxExtBuffer *)&q->opaque_alloc;
656
657     qsv->nb_opaque_surfaces = nb_surfaces;
658     qsv->opaque_surfaces    = q->opaque_alloc_buf;
659     qsv->opaque_alloc_type  = q->req.Type;
660
661     return 0;
662 }
663
664 static int qsvenc_init_session(AVCodecContext *avctx, QSVEncContext *q)
665 {
666     int ret;
667
668     if (avctx->hwaccel_context) {
669         AVQSVContext *qsv = avctx->hwaccel_context;
670         q->session = qsv->session;
671     } else if (avctx->hw_frames_ctx) {
672         q->frames_ctx.hw_frames_ctx = av_buffer_ref(avctx->hw_frames_ctx);
673         if (!q->frames_ctx.hw_frames_ctx)
674             return AVERROR(ENOMEM);
675
676         ret = ff_qsv_init_session_hwcontext(avctx, &q->internal_session,
677                                             &q->frames_ctx, q->load_plugins,
678                                             q->param.IOPattern == MFX_IOPATTERN_IN_OPAQUE_MEMORY);
679         if (ret < 0) {
680             av_buffer_unref(&q->frames_ctx.hw_frames_ctx);
681             return ret;
682         }
683
684         q->session = q->internal_session;
685     } else {
686         ret = ff_qsv_init_internal_session(avctx, &q->internal_session,
687                                            q->load_plugins);
688         if (ret < 0)
689             return ret;
690
691         q->session = q->internal_session;
692     }
693
694     return 0;
695 }
696
697 int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
698 {
699     int iopattern = 0;
700     int opaque_alloc = 0;
701     int ret;
702
703     q->param.AsyncDepth = q->async_depth;
704
705     q->async_fifo = av_fifo_alloc((1 + q->async_depth) *
706                                   (sizeof(AVPacket) + sizeof(mfxSyncPoint*) + sizeof(mfxBitstream*)));
707     if (!q->async_fifo)
708         return AVERROR(ENOMEM);
709
710     if (avctx->hwaccel_context) {
711         AVQSVContext *qsv = avctx->hwaccel_context;
712
713         iopattern    = qsv->iopattern;
714         opaque_alloc = qsv->opaque_alloc;
715     }
716
717     if (avctx->hw_frames_ctx) {
718         AVHWFramesContext    *frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
719         AVQSVFramesContext *frames_hwctx = frames_ctx->hwctx;
720
721         if (!iopattern) {
722             if (frames_hwctx->frame_type & MFX_MEMTYPE_OPAQUE_FRAME)
723                 iopattern = MFX_IOPATTERN_IN_OPAQUE_MEMORY;
724             else if (frames_hwctx->frame_type &
725                      (MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET | MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET))
726                 iopattern = MFX_IOPATTERN_IN_VIDEO_MEMORY;
727         }
728     }
729
730     if (!iopattern)
731         iopattern = MFX_IOPATTERN_IN_SYSTEM_MEMORY;
732     q->param.IOPattern = iopattern;
733
734     ret = qsvenc_init_session(avctx, q);
735     if (ret < 0)
736         return ret;
737
738     ret = init_video_param(avctx, q);
739     if (ret < 0)
740         return ret;
741
742     ret = MFXVideoENCODE_QueryIOSurf(q->session, &q->param, &q->req);
743     if (ret < 0) {
744         av_log(avctx, AV_LOG_ERROR, "Error querying the encoding parameters\n");
745         return ff_qsv_error(ret);
746     }
747
748     if (opaque_alloc) {
749         ret = qsv_init_opaque_alloc(avctx, q);
750         if (ret < 0)
751             return ret;
752     }
753
754     if (avctx->hwaccel_context) {
755         AVQSVContext *qsv = avctx->hwaccel_context;
756         int i, j;
757
758         q->extparam = av_mallocz_array(qsv->nb_ext_buffers + q->nb_extparam_internal,
759                                        sizeof(*q->extparam));
760         if (!q->extparam)
761             return AVERROR(ENOMEM);
762
763         q->param.ExtParam = q->extparam;
764         for (i = 0; i < qsv->nb_ext_buffers; i++)
765             q->param.ExtParam[i] = qsv->ext_buffers[i];
766         q->param.NumExtParam = qsv->nb_ext_buffers;
767
768         for (i = 0; i < q->nb_extparam_internal; i++) {
769             for (j = 0; j < qsv->nb_ext_buffers; j++) {
770                 if (qsv->ext_buffers[j]->BufferId == q->extparam_internal[i]->BufferId)
771                     break;
772             }
773             if (j < qsv->nb_ext_buffers)
774                 continue;
775
776             q->param.ExtParam[q->param.NumExtParam++] = q->extparam_internal[i];
777         }
778     } else {
779         q->param.ExtParam    = q->extparam_internal;
780         q->param.NumExtParam = q->nb_extparam_internal;
781     }
782
783     ret = MFXVideoENCODE_Init(q->session, &q->param);
784     if (ret < 0) {
785         av_log(avctx, AV_LOG_ERROR, "Error initializing the encoder\n");
786         return ff_qsv_error(ret);
787     }
788
789     ret = qsv_retrieve_enc_params(avctx, q);
790     if (ret < 0) {
791         av_log(avctx, AV_LOG_ERROR, "Error retrieving encoding parameters.\n");
792         return ret;
793     }
794
795     q->avctx = avctx;
796
797     return 0;
798 }
799
800 static void clear_unused_frames(QSVEncContext *q)
801 {
802     QSVFrame *cur = q->work_frames;
803     while (cur) {
804         if (cur->surface && !cur->surface->Data.Locked) {
805             cur->surface = NULL;
806             av_frame_unref(cur->frame);
807         }
808         cur = cur->next;
809     }
810 }
811
812 static int get_free_frame(QSVEncContext *q, QSVFrame **f)
813 {
814     QSVFrame *frame, **last;
815
816     clear_unused_frames(q);
817
818     frame = q->work_frames;
819     last  = &q->work_frames;
820     while (frame) {
821         if (!frame->surface) {
822             *f = frame;
823             return 0;
824         }
825
826         last  = &frame->next;
827         frame = frame->next;
828     }
829
830     frame = av_mallocz(sizeof(*frame));
831     if (!frame)
832         return AVERROR(ENOMEM);
833     frame->frame = av_frame_alloc();
834     if (!frame->frame) {
835         av_freep(&frame);
836         return AVERROR(ENOMEM);
837     }
838     *last = frame;
839
840     *f = frame;
841
842     return 0;
843 }
844
845 static int submit_frame(QSVEncContext *q, const AVFrame *frame,
846                         mfxFrameSurface1 **surface)
847 {
848     QSVFrame *qf;
849     int ret;
850
851     ret = get_free_frame(q, &qf);
852     if (ret < 0)
853         return ret;
854
855     if (frame->format == AV_PIX_FMT_QSV) {
856         ret = av_frame_ref(qf->frame, frame);
857         if (ret < 0)
858             return ret;
859
860         qf->surface = (mfxFrameSurface1*)qf->frame->data[3];
861     } else {
862         /* make a copy if the input is not padded as libmfx requires */
863         if (frame->height & 31 || frame->linesize[0] & (q->width_align - 1)) {
864             qf->frame->height = FFALIGN(frame->height, 32);
865             qf->frame->width  = FFALIGN(frame->width, q->width_align);
866
867             ret = ff_get_buffer(q->avctx, qf->frame, AV_GET_BUFFER_FLAG_REF);
868             if (ret < 0)
869                 return ret;
870
871             qf->frame->height = frame->height;
872             qf->frame->width  = frame->width;
873             ret = av_frame_copy(qf->frame, frame);
874             if (ret < 0) {
875                 av_frame_unref(qf->frame);
876                 return ret;
877             }
878         } else {
879             ret = av_frame_ref(qf->frame, frame);
880             if (ret < 0)
881                 return ret;
882         }
883
884         qf->surface_internal.Info = q->param.mfx.FrameInfo;
885
886         qf->surface_internal.Info.PicStruct =
887             !frame->interlaced_frame ? MFX_PICSTRUCT_PROGRESSIVE :
888             frame->top_field_first   ? MFX_PICSTRUCT_FIELD_TFF :
889                                        MFX_PICSTRUCT_FIELD_BFF;
890         if (frame->repeat_pict == 1)
891             qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FIELD_REPEATED;
892         else if (frame->repeat_pict == 2)
893             qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FRAME_DOUBLING;
894         else if (frame->repeat_pict == 4)
895             qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FRAME_TRIPLING;
896
897         qf->surface_internal.Data.PitchLow  = qf->frame->linesize[0];
898         qf->surface_internal.Data.Y         = qf->frame->data[0];
899         qf->surface_internal.Data.UV        = qf->frame->data[1];
900
901         qf->surface = &qf->surface_internal;
902     }
903
904     qf->surface->Data.TimeStamp = av_rescale_q(frame->pts, q->avctx->time_base, (AVRational){1, 90000});
905
906     *surface = qf->surface;
907
908     return 0;
909 }
910
911 static void print_interlace_msg(AVCodecContext *avctx, QSVEncContext *q)
912 {
913     if (q->param.mfx.CodecId == MFX_CODEC_AVC) {
914         if (q->param.mfx.CodecProfile == MFX_PROFILE_AVC_BASELINE ||
915             q->param.mfx.CodecLevel < MFX_LEVEL_AVC_21 ||
916             q->param.mfx.CodecLevel > MFX_LEVEL_AVC_41)
917             av_log(avctx, AV_LOG_WARNING,
918                    "Interlaced coding is supported"
919                    " at Main/High Profile Level 2.1-4.1\n");
920     }
921 }
922
923 static int encode_frame(AVCodecContext *avctx, QSVEncContext *q,
924                         const AVFrame *frame)
925 {
926     AVPacket new_pkt = { 0 };
927     mfxBitstream *bs;
928
929     mfxFrameSurface1 *surf = NULL;
930     mfxSyncPoint *sync     = NULL;
931     int ret;
932
933     if (frame) {
934         ret = submit_frame(q, frame, &surf);
935         if (ret < 0) {
936             av_log(avctx, AV_LOG_ERROR, "Error submitting the frame for encoding.\n");
937             return ret;
938         }
939     }
940
941     ret = av_new_packet(&new_pkt, q->packet_size);
942     if (ret < 0) {
943         av_log(avctx, AV_LOG_ERROR, "Error allocating the output packet\n");
944         return ret;
945     }
946
947     bs = av_mallocz(sizeof(*bs));
948     if (!bs) {
949         av_packet_unref(&new_pkt);
950         return AVERROR(ENOMEM);
951     }
952     bs->Data      = new_pkt.data;
953     bs->MaxLength = new_pkt.size;
954
955     sync = av_mallocz(sizeof(*sync));
956     if (!sync) {
957         av_freep(&bs);
958         av_packet_unref(&new_pkt);
959         return AVERROR(ENOMEM);
960     }
961
962     do {
963         ret = MFXVideoENCODE_EncodeFrameAsync(q->session, NULL, surf, bs, sync);
964         if (ret == MFX_WRN_DEVICE_BUSY)
965             av_usleep(1);
966     } while (ret > 0);
967
968     if (ret < 0) {
969         av_packet_unref(&new_pkt);
970         av_freep(&bs);
971         av_freep(&sync);
972         return (ret == MFX_ERR_MORE_DATA) ? 0 : ff_qsv_error(ret);
973     }
974
975     if (ret == MFX_WRN_INCOMPATIBLE_VIDEO_PARAM && frame->interlaced_frame)
976         print_interlace_msg(avctx, q);
977
978     if (*sync) {
979         av_fifo_generic_write(q->async_fifo, &new_pkt, sizeof(new_pkt), NULL);
980         av_fifo_generic_write(q->async_fifo, &sync,    sizeof(sync),    NULL);
981         av_fifo_generic_write(q->async_fifo, &bs,      sizeof(bs),    NULL);
982     } else {
983         av_freep(&sync);
984         av_packet_unref(&new_pkt);
985         av_freep(&bs);
986     }
987
988     return 0;
989 }
990
991 int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q,
992                   AVPacket *pkt, const AVFrame *frame, int *got_packet)
993 {
994     int ret;
995
996     ret = encode_frame(avctx, q, frame);
997     if (ret < 0)
998         return ret;
999
1000     if (!av_fifo_space(q->async_fifo) ||
1001         (!frame && av_fifo_size(q->async_fifo))) {
1002         AVPacket new_pkt;
1003         mfxBitstream *bs;
1004         mfxSyncPoint *sync;
1005
1006         av_fifo_generic_read(q->async_fifo, &new_pkt, sizeof(new_pkt), NULL);
1007         av_fifo_generic_read(q->async_fifo, &sync,    sizeof(sync),    NULL);
1008         av_fifo_generic_read(q->async_fifo, &bs,      sizeof(bs),      NULL);
1009
1010         do {
1011             ret = MFXVideoCORE_SyncOperation(q->session, *sync, 1000);
1012         } while (ret == MFX_WRN_IN_EXECUTION);
1013
1014         new_pkt.dts  = av_rescale_q(bs->DecodeTimeStamp, (AVRational){1, 90000}, avctx->time_base);
1015         new_pkt.pts  = av_rescale_q(bs->TimeStamp,       (AVRational){1, 90000}, avctx->time_base);
1016         new_pkt.size = bs->DataLength;
1017
1018         if (bs->FrameType & MFX_FRAMETYPE_IDR ||
1019             bs->FrameType & MFX_FRAMETYPE_xIDR)
1020             new_pkt.flags |= AV_PKT_FLAG_KEY;
1021
1022 #if FF_API_CODED_FRAME
1023 FF_DISABLE_DEPRECATION_WARNINGS
1024         if (bs->FrameType & MFX_FRAMETYPE_I || bs->FrameType & MFX_FRAMETYPE_xI)
1025             avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
1026         else if (bs->FrameType & MFX_FRAMETYPE_P || bs->FrameType & MFX_FRAMETYPE_xP)
1027             avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
1028         else if (bs->FrameType & MFX_FRAMETYPE_B || bs->FrameType & MFX_FRAMETYPE_xB)
1029             avctx->coded_frame->pict_type = AV_PICTURE_TYPE_B;
1030 FF_ENABLE_DEPRECATION_WARNINGS
1031 #endif
1032
1033         av_freep(&bs);
1034         av_freep(&sync);
1035
1036         if (pkt->data) {
1037             if (pkt->size < new_pkt.size) {
1038                 av_log(avctx, AV_LOG_ERROR, "Submitted buffer not large enough: %d < %d\n",
1039                        pkt->size, new_pkt.size);
1040                 av_packet_unref(&new_pkt);
1041                 return AVERROR(EINVAL);
1042             }
1043
1044             memcpy(pkt->data, new_pkt.data, new_pkt.size);
1045             pkt->size = new_pkt.size;
1046
1047             ret = av_packet_copy_props(pkt, &new_pkt);
1048             av_packet_unref(&new_pkt);
1049             if (ret < 0)
1050                 return ret;
1051         } else
1052             *pkt = new_pkt;
1053
1054         *got_packet = 1;
1055     }
1056
1057     return 0;
1058 }
1059
1060 int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
1061 {
1062     QSVFrame *cur;
1063
1064     if (q->session)
1065         MFXVideoENCODE_Close(q->session);
1066     if (q->internal_session)
1067         MFXClose(q->internal_session);
1068     q->session          = NULL;
1069     q->internal_session = NULL;
1070
1071     av_buffer_unref(&q->frames_ctx.hw_frames_ctx);
1072     av_freep(&q->frames_ctx.mids);
1073     q->frames_ctx.nb_mids = 0;
1074
1075     cur = q->work_frames;
1076     while (cur) {
1077         q->work_frames = cur->next;
1078         av_frame_free(&cur->frame);
1079         av_freep(&cur);
1080         cur = q->work_frames;
1081     }
1082
1083     while (q->async_fifo && av_fifo_size(q->async_fifo)) {
1084         AVPacket pkt;
1085         mfxSyncPoint *sync;
1086         mfxBitstream *bs;
1087
1088         av_fifo_generic_read(q->async_fifo, &pkt,  sizeof(pkt),  NULL);
1089         av_fifo_generic_read(q->async_fifo, &sync, sizeof(sync), NULL);
1090         av_fifo_generic_read(q->async_fifo, &bs,   sizeof(bs),   NULL);
1091
1092         av_freep(&sync);
1093         av_freep(&bs);
1094         av_packet_unref(&pkt);
1095     }
1096     av_fifo_free(q->async_fifo);
1097     q->async_fifo = NULL;
1098
1099     av_freep(&q->opaque_surfaces);
1100     av_buffer_unref(&q->opaque_alloc_buf);
1101
1102     av_freep(&q->extparam);
1103
1104     return 0;
1105 }