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