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