25 #include <sys/types.h>
51 { MFX_PROFILE_AVC_BASELINE,
"avc baseline" },
52 { MFX_PROFILE_AVC_MAIN,
"avc main" },
53 { MFX_PROFILE_AVC_EXTENDED,
"avc extended" },
54 { MFX_PROFILE_AVC_HIGH,
"avc high" },
55 { MFX_PROFILE_AVC_HIGH_422,
"avc high 422" },
56 { MFX_PROFILE_AVC_CONSTRAINED_BASELINE,
"avc constrained baseline" },
57 { MFX_PROFILE_AVC_CONSTRAINED_HIGH,
"avc constrained high" },
58 { MFX_PROFILE_AVC_PROGRESSIVE_HIGH,
"avc progressive high" },
62 { MFX_PROFILE_MPEG2_SIMPLE,
"mpeg2 simple" },
63 { MFX_PROFILE_MPEG2_MAIN,
"mpeg2 main" },
64 { MFX_PROFILE_MPEG2_HIGH,
"mpeg2 high" },
68 { MFX_PROFILE_HEVC_MAIN,
"hevc main" },
69 { MFX_PROFILE_HEVC_MAIN10,
"hevc main10" },
70 { MFX_PROFILE_HEVC_MAINSP,
"hevc mainsp" },
71 { MFX_PROFILE_HEVC_REXT,
"hevc rext" },
72 #if QSV_VERSION_ATLEAST(1, 32)
73 { MFX_PROFILE_HEVC_SCC,
"hevc scc" },
78 { MFX_PROFILE_VP9_0,
"vp9 0" },
79 { MFX_PROFILE_VP9_1,
"vp9 1" },
80 { MFX_PROFILE_VP9_2,
"vp9 2" },
81 { MFX_PROFILE_VP9_3,
"vp9 3" },
85 #if QSV_VERSION_ATLEAST(1, 34)
86 { MFX_PROFILE_AV1_MAIN,
"av1 main" },
87 { MFX_PROFILE_AV1_HIGH,
"av1 high" },
88 { MFX_PROFILE_AV1_PRO,
"av1 professional" },
133 for (
i = 0;
i < num_profiles;
i++)
140 static const struct {
144 { MFX_RATECONTROL_CBR,
"CBR" },
145 { MFX_RATECONTROL_VBR,
"VBR" },
146 { MFX_RATECONTROL_CQP,
"CQP" },
148 { MFX_RATECONTROL_AVBR,
"AVBR" },
150 { MFX_RATECONTROL_LA,
"LA" },
151 { MFX_RATECONTROL_ICQ,
"ICQ" },
152 { MFX_RATECONTROL_LA_ICQ,
"LA_ICQ" },
154 { MFX_RATECONTROL_VCM,
"VCM" },
157 { MFX_RATECONTROL_LA_EXT,
"LA_EXT" },
159 { MFX_RATECONTROL_LA_HRD,
"LA_HRD" },
160 { MFX_RATECONTROL_QVBR,
"QVBR" },
163 #define UPDATE_PARAM(a, b) \
171 #define MFX_IMPL_VIA_MASK(impl) (0x0f00 & (impl))
184 if (
val == MFX_CODINGOPTION_ON)
186 else if (
val == MFX_CODINGOPTION_OFF)
192 mfxExtBuffer **coding_opts)
197 mfxExtCodingOption *co = (mfxExtCodingOption*)coding_opts[1];
198 mfxExtCodingOption2 *co2 =
NULL;
199 mfxExtCodingOption3 *co3 =
NULL;
200 mfxExtHEVCTiles *exthevctiles =
NULL;
202 mfxExtHyperModeParam *exthypermodeparam =
NULL;
205 const char *tmp_str =
NULL;
208 co2 = (mfxExtCodingOption2*)coding_opts[q->
co2_idx];
211 co3 = (mfxExtCodingOption3*)coding_opts[q->
co3_idx];
225 "GopPicSize: %"PRIu16
"; GopRefDist: %"PRIu16
"; GopOptFlag:%s%s; IdrInterval: %"PRIu16
"\n",
227 info->GopOptFlag & MFX_GOP_CLOSED ?
" closed" :
"",
228 info->GopOptFlag & MFX_GOP_STRICT ?
" strict" :
"",
234 if (
info->RateControlMethod == MFX_RATECONTROL_CBR ||
235 info->RateControlMethod == MFX_RATECONTROL_VBR
237 ||
info->RateControlMethod == MFX_RATECONTROL_VCM
241 "BufferSizeInKB: %"PRIu16
"; InitialDelayInKB: %"PRIu16
"; TargetKbps: %"PRIu16
"; MaxKbps: %"PRIu16
"; BRCParamMultiplier: %"PRIu16
"\n",
242 info->BufferSizeInKB,
info->InitialDelayInKB,
info->TargetKbps,
info->MaxKbps,
info->BRCParamMultiplier);
243 }
else if (
info->RateControlMethod == MFX_RATECONTROL_CQP) {
248 else if (
info->RateControlMethod == MFX_RATECONTROL_AVBR) {
250 "TargetKbps: %"PRIu16
"; Accuracy: %"PRIu16
"; Convergence: %"PRIu16
"; BRCParamMultiplier: %"PRIu16
"\n",
251 info->TargetKbps,
info->Accuracy,
info->Convergence,
info->BRCParamMultiplier);
254 else if (
info->RateControlMethod == MFX_RATECONTROL_LA
255 ||
info->RateControlMethod == MFX_RATECONTROL_LA_HRD
258 "TargetKbps: %"PRIu16
"; BRCParamMultiplier: %"PRIu16
"\n",
259 info->TargetKbps,
info->BRCParamMultiplier);
260 }
else if (
info->RateControlMethod == MFX_RATECONTROL_ICQ ||
261 info->RateControlMethod == MFX_RATECONTROL_LA_ICQ)
273 co->CAVLC == MFX_CODINGOPTION_ON ?
"CAVLC" :
"CABAC", co->MaxDecFrameBuffering);
275 "NalHrdConformance: %s; SingleSeiNalUnit: %s; VuiVclHrdParameters: %s VuiNalHrdParameters: %s\n",
280 "NalHrdConformance: %s; VuiNalHrdParameters: %s\n",
285 info->FrameInfo.FrameRateExtD,
info->FrameInfo.FrameRateExtN);
289 (
info->RateControlMethod == MFX_RATECONTROL_LA) ||
290 (
info->RateControlMethod == MFX_RATECONTROL_LA_HRD) ||
291 (
info->RateControlMethod == MFX_RATECONTROL_LA_ICQ))
294 av_log(avctx,
AV_LOG_VERBOSE,
"IntRefType: %"PRIu16
"; IntRefCycleSize: %"PRIu16
"; IntRefQPDelta: %"PRId16
"\n",
295 co2->IntRefType, co2->IntRefCycleSize, co2->IntRefQPDelta);
298 co2->MaxFrameSize, co2->MaxSliceSize);
301 "BitrateLimit: %s; MBBRC: %s; ExtBRC: %s\n",
305 if (co2->Trellis & MFX_TRELLIS_OFF) {
307 }
else if (!co2->Trellis) {
310 char trellis_type[4];
312 if (co2->Trellis & MFX_TRELLIS_I) trellis_type[
i++] =
'I';
313 if (co2->Trellis & MFX_TRELLIS_P) trellis_type[
i++] =
'P';
314 if (co2->Trellis & MFX_TRELLIS_B) trellis_type[
i++] =
'B';
319 switch (co2->LookAheadDS) {
320 case MFX_LOOKAHEAD_DS_OFF: tmp_str =
"off";
break;
321 case MFX_LOOKAHEAD_DS_2x: tmp_str =
"2x";
break;
322 case MFX_LOOKAHEAD_DS_4x: tmp_str =
"4x";
break;
323 default: tmp_str =
"unknown";
break;
326 "RepeatPPS: %s; NumMbPerSlice: %"PRIu16
"; LookAheadDS: %s\n",
329 switch (co2->BRefType) {
330 case MFX_B_REF_OFF: tmp_str =
"off";
break;
331 case MFX_B_REF_PYRAMID: tmp_str =
"pyramid";
break;
332 default: tmp_str =
"auto";
break;
335 "AdaptiveI: %s; AdaptiveB: %s; BRefType:%s\n",
339 "MinQPI: %"PRIu8
"; MaxQPI: %"PRIu8
"; MinQPP: %"PRIu8
"; MaxQPP: %"PRIu8
"; MinQPB: %"PRIu8
"; MaxQPB: %"PRIu8
"\n",
340 co2->MinQPI, co2->MaxQPI, co2->MinQPP, co2->MaxQPP, co2->MinQPB, co2->MaxQPB);
343 switch (co2->SkipFrame) {
344 case MFX_SKIPFRAME_NO_SKIP:
347 case MFX_SKIPFRAME_INSERT_DUMMY:
350 case MFX_SKIPFRAME_INSERT_NOTHING:
353 case MFX_SKIPFRAME_BRC_ONLY:
361 if (
info->RateControlMethod == MFX_RATECONTROL_QVBR)
364 switch (co3->PRefType) {
384 exthevctiles->NumTileColumns, exthevctiles->NumTileRows);
388 if (exthypermodeparam) {
391 if (exthypermodeparam->Mode == MFX_HYPERMODE_OFF)
393 if (exthypermodeparam->Mode == MFX_HYPERMODE_ON)
395 if (exthypermodeparam->Mode == MFX_HYPERMODE_ADAPTIVE)
404 mfxExtBuffer **coding_opts)
407 mfxExtVP9Param *vp9_param =
NULL;
408 mfxExtCodingOption2 *co2 =
NULL;
411 vp9_param = (mfxExtVP9Param *)coding_opts[q->
vp9_idx];
414 co2 = (mfxExtCodingOption2*)coding_opts[q->
co2_idx];
420 "GopPicSize: %"PRIu16
"; GopRefDist: %"PRIu16
"; GopOptFlag:%s%s; IdrInterval: %"PRIu16
"\n",
422 info->GopOptFlag & MFX_GOP_CLOSED ?
" closed" :
"",
423 info->GopOptFlag & MFX_GOP_STRICT ?
" strict" :
"",
429 if (
info->RateControlMethod == MFX_RATECONTROL_CBR ||
430 info->RateControlMethod == MFX_RATECONTROL_VBR) {
432 "BufferSizeInKB: %"PRIu16
"; InitialDelayInKB: %"PRIu16
"; TargetKbps: %"PRIu16
"; MaxKbps: %"PRIu16
"; BRCParamMultiplier: %"PRIu16
"\n",
433 info->BufferSizeInKB,
info->InitialDelayInKB,
info->TargetKbps,
info->MaxKbps,
info->BRCParamMultiplier);
434 }
else if (
info->RateControlMethod == MFX_RATECONTROL_CQP) {
438 else if (
info->RateControlMethod == MFX_RATECONTROL_ICQ) {
447 info->FrameInfo.FrameRateExtD,
info->FrameInfo.FrameRateExtN);
451 "IntRefType: %"PRIu16
"; IntRefCycleSize: %"PRIu16
"; IntRefQPDelta: %"PRId16
"\n",
452 co2->IntRefType, co2->IntRefCycleSize, co2->IntRefQPDelta);
457 "BitrateLimit: %s; MBBRC: %s; ExtBRC: %s\n",
464 "MinQPI: %"PRIu8
"; MaxQPI: %"PRIu8
"; MinQPP: %"PRIu8
"; MaxQPP: %"PRIu8
"; MinQPB: %"PRIu8
"; MaxQPB: %"PRIu8
"\n",
465 co2->MinQPI, co2->MaxQPI, co2->MinQPP, co2->MaxQPP, co2->MinQPB, co2->MaxQPB);
483 info->FrameInfo.FrameRateExtD,
info->FrameInfo.FrameRateExtN);
486 #if QSV_HAVE_EXT_AV1_PARAM
488 mfxExtBuffer **coding_opts)
491 mfxExtAV1TileParam *av1_tile_param = (mfxExtAV1TileParam *)coding_opts[0];
492 mfxExtAV1BitstreamParam *av1_bs_param = (mfxExtAV1BitstreamParam *)coding_opts[1];
493 mfxExtCodingOption2 *co2 = (mfxExtCodingOption2*)coding_opts[2];
494 mfxExtCodingOption3 *co3 = (mfxExtCodingOption3*)coding_opts[3];
500 "GopPicSize: %"PRIu16
"; GopRefDist: %"PRIu16
"; GopOptFlag:%s%s; IdrInterval: %"PRIu16
"\n",
502 info->GopOptFlag & MFX_GOP_CLOSED ?
" closed" :
"",
503 info->GopOptFlag & MFX_GOP_STRICT ?
" strict" :
"",
509 if (
info->RateControlMethod == MFX_RATECONTROL_CBR ||
510 info->RateControlMethod == MFX_RATECONTROL_VBR)
512 "BufferSizeInKB: %"PRIu16
"; InitialDelayInKB: %"PRIu16
"; TargetKbps: %"PRIu16
"; MaxKbps: %"PRIu16
"; BRCParamMultiplier: %"PRIu16
"\n",
513 info->BufferSizeInKB,
info->InitialDelayInKB,
info->TargetKbps,
info->MaxKbps,
info->BRCParamMultiplier);
514 else if (
info->RateControlMethod == MFX_RATECONTROL_CQP)
517 else if (
info->RateControlMethod == MFX_RATECONTROL_ICQ)
525 "IntRefType: %"PRIu16
"; IntRefCycleSize: %"PRIu16
526 "; IntRefQPDelta: %"PRId16
"; IntRefCycleDist: %"PRId16
"\n",
527 co2->IntRefType, co2->IntRefCycleSize,
528 co2->IntRefQPDelta, co3->IntRefCycleDist);
533 "BitrateLimit: %s; MBBRC: %s; ExtBRC: %s\n",
539 switch (co2->BRefType) {
545 switch (co3->PRefType) {
553 "MinQPI: %"PRIu8
"; MaxQPI: %"PRIu8
"; MinQPP: %"PRIu8
"; MaxQPP: %"PRIu8
"; MinQPB: %"PRIu8
"; MaxQPB: %"PRIu8
"\n",
554 co2->MinQPI, co2->MaxQPI, co2->MinQPP, co2->MaxQPP, co2->MinQPB, co2->MaxQPB);
557 info->FrameInfo.FrameRateExtD,
info->FrameInfo.FrameRateExtN);
560 "NumTileRows: %"PRIu16
"; NumTileColumns: %"PRIu16
"; NumTileGroups: %"PRIu16
"\n",
561 av1_tile_param->NumTileRows, av1_tile_param->NumTileColumns, av1_tile_param->NumTileGroups);
577 int want_vcm = q->
vcm;
581 "VCM ratecontrol mode requested, but is not supported by this SDK version\n");
585 if (want_la + want_qscale + want_vcm > 1) {
587 "More than one of: { constant qscale, lookahead, VCM } requested, "
588 "only one of them can be used at a time.\n");
594 rc_desc =
"constant quantization parameter (CQP)";
599 rc_desc =
"video conferencing mode (VCM)";
604 rc_desc =
"VBR with lookahead (LA)";
607 rc_mode = MFX_RATECONTROL_LA_ICQ;
608 rc_desc =
"intelligent constant quality with lookahead (LA_ICQ)";
613 rc_desc =
"intelligent constant quality (ICQ)";
617 rc_desc =
"constant bitrate (CBR)";
624 rc_mode = MFX_RATECONTROL_AVBR;
625 rc_desc =
"average variable bitrate (AVBR)";
629 rc_mode = MFX_RATECONTROL_QVBR;
630 rc_desc =
"constant quality with VBR algorithm (QVBR)";
634 rc_desc =
"variable bitrate (VBR)";
645 mfxVideoParam param_out = { .mfx.CodecId = q->
param.mfx.CodecId };
648 #define UNMATCH(x) (param_out.mfx.x != q->param.mfx.x)
657 if (
UNMATCH(RateControlMethod))
692 if (avctx->
level > 0)
704 q->
param.mfx.FrameInfo.CropX = 0;
705 q->
param.mfx.FrameInfo.CropY = 0;
710 q->
param.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420 +
711 !
desc->log2_chroma_w + !
desc->log2_chroma_h;
712 q->
param.mfx.FrameInfo.BitDepthLuma =
desc->comp[0].depth;
713 q->
param.mfx.FrameInfo.BitDepthChroma =
desc->comp[0].depth;
721 q->
param.mfx.FrameInfo.Width = frames_hwctx->surfaces[0].Info.Width;
722 q->
param.mfx.FrameInfo.Height = frames_hwctx->surfaces[0].Info.Height;
733 q->
param.mfx.Interleaved = 1;
735 q->
param.mfx.RestartInterval = 0;
752 int target_bitrate_kbps, max_bitrate_kbps, brc_param_multiplier;
753 int buffer_size_in_kilobytes, initial_delay_in_kilobytes;
761 if (avctx->
level > 0) {
772 "valid range is 0-%d, using %d instead\n",
773 MFX_TARGETUSAGE_BEST_SPEED, MFX_TARGETUSAGE_BEST_SPEED);
779 q->
param.mfx.LowPower = MFX_CODINGOPTION_ON;
781 q->
param.mfx.LowPower = MFX_CODINGOPTION_UNKNOWN;
783 q->
param.mfx.LowPower = MFX_CODINGOPTION_OFF;
796 q->
param.mfx.EncodedOrder = 0;
797 q->
param.mfx.BufferSizeInKB = 0;
807 q->
param.mfx.FrameInfo.CropX = 0;
808 q->
param.mfx.FrameInfo.CropY = 0;
813 q->
param.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420 +
814 !
desc->log2_chroma_w + !
desc->log2_chroma_h;
815 q->
param.mfx.FrameInfo.BitDepthLuma =
desc->comp[0].depth;
816 q->
param.mfx.FrameInfo.BitDepthChroma =
desc->comp[0].depth;
828 q->
param.mfx.FrameInfo.PicStruct = MFX_PICSTRUCT_FIELD_TFF;
832 q->
param.mfx.FrameInfo.PicStruct = MFX_PICSTRUCT_PROGRESSIVE;
845 q->
param.mfx.FrameInfo.Width = frames_hwctx->surfaces[0].Info.Width;
846 q->
param.mfx.FrameInfo.Height = frames_hwctx->surfaces[0].Info.Height;
865 target_bitrate_kbps = avctx->
bit_rate / 1000;
867 brc_param_multiplier = (
FFMAX(
FFMAX3(target_bitrate_kbps, max_bitrate_kbps, buffer_size_in_kilobytes),
868 initial_delay_in_kilobytes) + 0x10000) / 0x10000;
874 switch (q->
param.mfx.RateControlMethod) {
875 case MFX_RATECONTROL_CBR:
876 case MFX_RATECONTROL_VBR:
881 case MFX_RATECONTROL_VCM:
883 case MFX_RATECONTROL_QVBR:
884 q->
param.mfx.BufferSizeInKB = buffer_size_in_kilobytes / brc_param_multiplier;
885 q->
param.mfx.InitialDelayInKB = initial_delay_in_kilobytes / brc_param_multiplier;
886 q->
param.mfx.TargetKbps = target_bitrate_kbps / brc_param_multiplier;
887 q->
param.mfx.MaxKbps = max_bitrate_kbps / brc_param_multiplier;
888 q->
param.mfx.BRCParamMultiplier = brc_param_multiplier;
889 if (q->
param.mfx.RateControlMethod == MFX_RATECONTROL_QVBR)
892 case MFX_RATECONTROL_CQP:
911 case MFX_RATECONTROL_AVBR:
912 q->
param.mfx.TargetKbps = target_bitrate_kbps / brc_param_multiplier;
915 q->
param.mfx.BRCParamMultiplier = brc_param_multiplier;
918 case MFX_RATECONTROL_LA:
919 q->
param.mfx.TargetKbps = target_bitrate_kbps / brc_param_multiplier;
921 q->
param.mfx.BRCParamMultiplier = brc_param_multiplier;
923 case MFX_RATECONTROL_LA_ICQ:
925 case MFX_RATECONTROL_ICQ:
935 q->
extco.Header.BufferId = MFX_EXTBUFF_CODING_OPTION;
939 MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN;
943 q->
extco.RateDistortionOpt = q->
rdo > 0 ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
946 q->
extco.CAVLC = q->
cavlc ? MFX_CODINGOPTION_ON
947 : MFX_CODINGOPTION_UNKNOWN;
951 MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
958 q->
extco.AUDelimiter = q->
aud ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
962 MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
967 q->
extco.AUDelimiter = q->
aud ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
977 q->
extco2.Trellis = (avctx->
trellis == 0) ? MFX_TRELLIS_OFF : (MFX_TRELLIS_I | MFX_TRELLIS_P | MFX_TRELLIS_B);
979 q->
extco2.Trellis = MFX_TRELLIS_UNKNOWN;
982 q->
extco2.RepeatPPS = q->
repeat_pps ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
987 q->
extco2.ExtBRC = q->
extbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1007 q->
extco2.AdaptiveI = q->
adaptive_i ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1009 q->
extco2.AdaptiveB = q->
adaptive_b ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1015 "qmin and or qmax are set but invalid,"
1016 " please make sure min <= max\n");
1019 if (avctx->
qmin >= 0) {
1024 if (avctx->
qmax >= 0) {
1048 q->
extco2.MBBRC = q->
mbbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1052 q->
extco2.Header.BufferId = MFX_EXTBUFF_CODING_OPTION2;
1058 q->
extco2.ExtBRC = q->
extbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1062 q->
extco2.AdaptiveI = q->
adaptive_i ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1064 q->
extco2.AdaptiveB = q->
adaptive_b ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1068 q->
extco2.Header.BufferId = MFX_EXTBUFF_CODING_OPTION2;
1077 q->
extmfp.Header.BufferId = MFX_EXTBUFF_MULTI_FRAME_PARAM;
1086 q->
extco3.Header.BufferId = MFX_EXTBUFF_CODING_OPTION3;
1093 q->
extco3.PRefType = MFX_P_REF_DEFAULT;
1096 q->
extco3.PRefType = MFX_P_REF_SIMPLE;
1099 q->
extco3.PRefType = MFX_P_REF_PYRAMID;
1102 q->
extco3.PRefType = MFX_P_REF_DEFAULT;
1104 "invalid p_strategy, set to default\n");
1107 if (q->
extco3.PRefType == MFX_P_REF_PYRAMID &&
1110 "Please set max_b_frames(-bf) to 0 to enable P-pyramid\n");
1123 (q->
profile == MFX_PROFILE_HEVC_REXT ||
1124 q->
profile == MFX_PROFILE_UNKNOWN))
1125 q->
extco3.TargetChromaFormatPlus1 = MFX_CHROMAFORMAT_YUV444 + 1;
1137 MFX_CODINGOPTION_OFF;
1139 q->
extco3.TransformSkip = MFX_CODINGOPTION_UNKNOWN;
1140 q->
extco3.GPB = q->
gpb ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
1146 q->
extvp9param.Header.BufferId = MFX_EXTBUFF_VP9_PARAM;
1148 q->
extvp9param.WriteIVFHeaders = MFX_CODINGOPTION_OFF;
1149 #if QSV_HAVE_EXT_VP9_TILES
1156 #if QSV_HAVE_EXT_AV1_PARAM
1159 q->extav1tileparam.Header.BufferId = MFX_EXTBUFF_AV1_TILE_PARAM;
1160 q->extav1tileparam.Header.BufferSz =
sizeof(q->extav1tileparam);
1161 q->extav1tileparam.NumTileColumns = q->
tile_cols;
1162 q->extav1tileparam.NumTileRows = q->
tile_rows;
1165 q->extav1bsparam.Header.BufferId = MFX_EXTBUFF_AV1_BITSTREAM_PARAM;
1166 q->extav1bsparam.Header.BufferSz =
sizeof(q->extav1bsparam);
1167 q->extav1bsparam.WriteIVFHeaders = MFX_CODINGOPTION_OFF;
1171 "This version of runtime doesn't support AV1 encoding\n");
1178 q->
exthevctiles.Header.BufferId = MFX_EXTBUFF_HEVC_TILES;
1186 q->
extvsi.ColourDescriptionPresent = 0;
1191 q->
extvsi.ColourDescriptionPresent = 1;
1203 q->
extvsi.Header.BufferId = MFX_EXTBUFF_VIDEO_SIGNAL_INFO;
1212 MFXQueryIMPL(q->
session, &impl);
1218 if (q->
param.mfx.LowPower != MFX_CODINGOPTION_ON) {
1219 av_log(avctx,
AV_LOG_ERROR,
"Dual GFX mode supports only low-power encoding mode \n");
1222 if (q->
param.mfx.CodecId != MFX_CODEC_AVC && q->
param.mfx.CodecId != MFX_CODEC_HEVC) {
1224 "Supported: h264_qsv and hevc_qsv \n");
1227 if (q->
param.mfx.RateControlMethod != MFX_RATECONTROL_VBR &&
1228 q->
param.mfx.RateControlMethod != MFX_RATECONTROL_CQP &&
1229 q->
param.mfx.RateControlMethod != MFX_RATECONTROL_ICQ) {
1231 "Supported: VBR, CQP and ICQ \n");
1233 if ((q->
param.mfx.CodecId == MFX_CODEC_AVC && q->
param.mfx.IdrInterval != 0) ||
1234 (q->
param.mfx.CodecId == MFX_CODEC_HEVC && q->
param.mfx.IdrInterval != 1)) {
1235 av_log(avctx,
AV_LOG_WARNING,
"Dual GFX mode requires closed GOP for AVC and strict GOP for HEVC, -idr_interval 0 \n");
1237 if (q->
param.mfx.GopPicSize < 30) {
1238 av_log(avctx,
AV_LOG_WARNING,
"For better performance in dual GFX mode GopPicSize must be >= 30 \n");
1240 if (q->
param.AsyncDepth < 30) {
1241 av_log(avctx,
AV_LOG_WARNING,
"For better performance in dual GFX mode AsyncDepth must be >= 30 \n");
1244 q->exthypermodeparam.Header.BufferId = MFX_EXTBUFF_HYPER_MODE_PARAM;
1245 q->exthypermodeparam.Header.BufferSz =
sizeof(q->exthypermodeparam);
1246 q->exthypermodeparam.Mode = q->
dual_gfx;
1250 "This version of runtime doesn't support Hyper Encode\n");
1258 "some encoding parameters are not supported by the QSV "
1259 "runtime. Please double check the input parameters.\n");
1273 "Error calling GetVideoParam");
1289 mfxExtVP9Param vp9_extend_buf = {
1290 .Header.BufferId = MFX_EXTBUFF_VP9_PARAM,
1291 .Header.BufferSz =
sizeof(vp9_extend_buf),
1294 mfxExtCodingOption2 co2 = {
1295 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION2,
1296 .Header.BufferSz =
sizeof(co2),
1299 mfxExtCodingOption3 co3 = {
1300 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION3,
1301 .Header.BufferSz =
sizeof(co3),
1304 mfxExtBuffer *ext_buffers[3];
1305 int ext_buf_num = 0;
1312 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&co2;
1317 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&co3;
1322 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&vp9_extend_buf;
1325 q->
param.ExtParam = ext_buffers;
1326 q->
param.NumExtParam = ext_buf_num;
1331 "Error calling GetVideoParam");
1342 #if QSV_HAVE_EXT_AV1_PARAM
1344 mfxExtAV1TileParam av1_extend_tile_buf = {
1345 .Header.BufferId = MFX_EXTBUFF_AV1_TILE_PARAM,
1346 .Header.BufferSz =
sizeof(av1_extend_tile_buf),
1348 mfxExtAV1BitstreamParam av1_bs_param = {
1349 .Header.BufferId = MFX_EXTBUFF_AV1_BITSTREAM_PARAM,
1350 .Header.BufferSz =
sizeof(av1_bs_param),
1353 mfxExtCodingOption2 co2 = {
1354 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION2,
1355 .Header.BufferSz =
sizeof(co2),
1358 mfxExtCodingOption3 co3 = {
1359 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION3,
1360 .Header.BufferSz =
sizeof(co3),
1363 mfxExtBuffer *ext_buffers[] = {
1364 (mfxExtBuffer*)&av1_extend_tile_buf,
1365 (mfxExtBuffer*)&av1_bs_param,
1366 (mfxExtBuffer*)&co2,
1367 (mfxExtBuffer*)&co3,
1372 "This version of runtime doesn't support AV1 encoding\n");
1376 q->
param.ExtParam = ext_buffers;
1382 "Error calling GetVideoParam");
1385 dump_video_av1_param(avctx, q, ext_buffers);
1394 uint8_t sps_buf[512];
1395 uint8_t pps_buf[128];
1397 mfxExtCodingOptionSPSPPS extradata = {
1398 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION_SPSPPS,
1399 .Header.BufferSz =
sizeof(extradata),
1400 .SPSBuffer = sps_buf, .SPSBufSize =
sizeof(sps_buf),
1401 .PPSBuffer = pps_buf, .PPSBufSize =
sizeof(pps_buf)
1404 mfxExtCodingOption co = {
1405 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION,
1406 .Header.BufferSz =
sizeof(co),
1408 mfxExtCodingOption2 co2 = {
1409 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION2,
1410 .Header.BufferSz =
sizeof(co2),
1412 mfxExtCodingOption3 co3 = {
1413 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION3,
1414 .Header.BufferSz =
sizeof(co3),
1417 uint8_t vps_buf[128];
1418 mfxExtCodingOptionVPS extradata_vps = {
1419 .Header.BufferId = MFX_EXTBUFF_CODING_OPTION_VPS,
1420 .Header.BufferSz =
sizeof(extradata_vps),
1421 .VPSBuffer = vps_buf,
1422 .VPSBufSize =
sizeof(vps_buf),
1425 mfxExtHEVCTiles hevc_tile_buf = {
1426 .Header.BufferId = MFX_EXTBUFF_HEVC_TILES,
1427 .Header.BufferSz =
sizeof(hevc_tile_buf),
1431 mfxExtHyperModeParam hyper_mode_param_buf = {
1432 .Header.BufferId = MFX_EXTBUFF_HYPER_MODE_PARAM,
1433 .Header.BufferSz =
sizeof(hyper_mode_param_buf),
1440 int ret, ext_buf_num = 0, extradata_offset = 0;
1443 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&extradata;
1444 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&co;
1449 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&co2;
1454 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&co3;
1459 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&extradata_vps;
1462 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&hevc_tile_buf;
1467 ext_buffers[ext_buf_num++] = (mfxExtBuffer*)&hyper_mode_param_buf;
1471 q->
param.ExtParam = ext_buffers;
1472 q->
param.NumExtParam = ext_buf_num;
1477 "Error calling GetVideoParam");
1481 if (!extradata.SPSBufSize || (need_pps && !extradata.PPSBufSize)
1482 || (q->
hevc_vps && !extradata_vps.VPSBufSize)
1488 avctx->
extradata_size = extradata.SPSBufSize + need_pps * extradata.PPSBufSize;
1496 memcpy(avctx->
extradata, vps_buf, extradata_vps.VPSBufSize);
1497 extradata_offset += extradata_vps.VPSBufSize;
1500 memcpy(avctx->
extradata + extradata_offset, sps_buf, extradata.SPSBufSize);
1501 extradata_offset += extradata.SPSBufSize;
1503 memcpy(avctx->
extradata + extradata_offset, pps_buf, extradata.PPSBufSize);
1504 extradata_offset += extradata.PPSBufSize;
1525 mfxFrameSurface1 *surfaces;
1539 for (
i = 0;
i < nb_surfaces;
i++) {
1540 surfaces[
i].Info = q->
req.Info;
1544 q->
opaque_alloc.Header.BufferId = MFX_EXTBUFF_OPAQUE_SURFACE_ALLOCATION;
1575 q->
param.IOPattern == MFX_IOPATTERN_IN_OPAQUE_MEMORY,
1609 int opaque_alloc = 0;
1631 if (frames_hwctx->frame_type & MFX_MEMTYPE_OPAQUE_FRAME)
1632 iopattern = MFX_IOPATTERN_IN_OPAQUE_MEMORY;
1633 else if (frames_hwctx->frame_type &
1634 (MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET | MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET))
1635 iopattern = MFX_IOPATTERN_IN_VIDEO_MEMORY;
1637 if (frames_hwctx->frame_type &
1638 (MFX_MEMTYPE_VIDEO_MEMORY_DECODER_TARGET | MFX_MEMTYPE_VIDEO_MEMORY_PROCESSOR_TARGET))
1639 iopattern = MFX_IOPATTERN_IN_VIDEO_MEMORY;
1645 iopattern = MFX_IOPATTERN_IN_SYSTEM_MEMORY;
1646 q->
param.IOPattern = iopattern;
1656 "Error querying mfx version");
1690 if (j < qsv->nb_ext_buffers)
1701 if (
ret == MFX_WRN_PARTIAL_ACCELERATION) {
1703 }
else if (
ret < 0) {
1705 "Error querying encoder params");
1711 "Error querying (IOSurf) the encoding parameters");
1720 "however libmfx %d.%d doesn't support OPAQUE memory.\n",
1721 q->
ver.Major, q->
ver.Minor);
1729 "Error initializing the encoder");
1732 "Warning in encoder initialization");
1767 enc_ctrl->NumPayload = 0;
1768 enc_ctrl->NumExtParam = 0;
1806 last = &
frame->next;
1814 if (!
frame->frame) {
1831 int max_step[4], filled[4] = { 0 };
1837 for (
int i = 0;
i <
desc->nb_components;
i++) {
1839 int sheight, dheight, plane =
comp->plane;
1847 if (swidth < 0 || dwidth < 0) {
1865 for (
int j = 0; j < sheight; j++) {
1875 for (
int j = sheight; j < dheight; j++)
2009 MFX_PICSTRUCT_FIELD_BFF;
2011 qf->
surface.Info.PicStruct |= MFX_PICSTRUCT_FIELD_REPEATED;
2013 qf->
surface.Info.PicStruct |= MFX_PICSTRUCT_FRAME_DOUBLING;
2015 qf->
surface.Info.PicStruct |= MFX_PICSTRUCT_FRAME_TRIPLING;
2032 if (q->
param.mfx.CodecId == MFX_CODEC_AVC) {
2033 if (q->
param.mfx.CodecProfile == MFX_PROFILE_AVC_BASELINE ||
2034 q->
param.mfx.CodecLevel < MFX_LEVEL_AVC_21 ||
2035 q->
param.mfx.CodecLevel > MFX_LEVEL_AVC_41)
2037 "Interlaced coding is supported"
2038 " at Main/High Profile Level 2.2-4.0\n");
2043 mfxEncodeCtrl *enc_ctrl)
2059 mfxExtEncoderROI *enc_roi =
NULL;
2066 if (!roi_size || sd->
size % roi_size) {
2070 nb_roi = sd->
size / roi_size;
2073 "supported by driver (%d > %d).\n",
2081 enc_roi->Header.BufferId = MFX_EXTBUFF_ENCODER_ROI;
2082 enc_roi->Header.BufferSz =
sizeof(*enc_roi);
2083 enc_roi->NumROI = nb_roi;
2084 enc_roi->ROIMode = MFX_ROI_MODE_QP_DELTA;
2085 for (
i = 0;
i < nb_roi;
i++) {
2091 enc_roi->ROI[
i].DeltaQP =
2095 enc_roi->ROI[
i].DeltaQP);
2097 enc_ctrl->ExtParam[enc_ctrl->NumExtParam] = (mfxExtBuffer *)enc_roi;
2098 enc_ctrl->NumExtParam++;
2104 mfxEncodeCtrl *enc_ctrl)
2110 if (!skip_frame_dict)
2112 enc_ctrl->SkipFrame = strtol(skip_frame_dict->
value,
NULL, 10);
2118 int updated = 0, new_qp = 0;
2123 if (q->
param.mfx.RateControlMethod == MFX_RATECONTROL_CQP) {
2139 "Reset qp = %d/%d/%d for idr/p/b frames\n",
2158 "Reset MaxFrameSize: %d;\n", q->
extco2.MaxFrameSize);
2172 q->
param.mfx.GopPicSize);
2193 q->
extco2.IntRefQPDelta =
2197 "Reset IntRefType: %d; IntRefCycleSize: %d; "
2198 "IntRefQPDelta: %d; IntRefCycleDist: %d\n",
2228 "qmin and or qmax are set but invalid,"
2229 " please make sure min <= max\n");
2239 if (avctx->
qmin >= 0) {
2243 if (avctx->
qmax >= 0) {
2261 "MinQPP: %d; MaxQPP: %d; "
2262 "MinQPB: %d; MaxQPB: %d\n",
2283 q->
extco3.LowDelayBRC = MFX_CODINGOPTION_UNKNOWN;
2309 q->
param.mfx.FrameInfo.FrameRateExtN,
2310 q->
param.mfx.FrameInfo.FrameRateExtD,
2311 (
double)q->
param.mfx.FrameInfo.FrameRateExtN / q->
param.mfx.FrameInfo.FrameRateExtD);
2319 int target_bitrate_kbps, max_bitrate_kbps, brc_param_multiplier;
2320 int buffer_size_in_kilobytes, initial_delay_in_kilobytes;
2331 target_bitrate_kbps = avctx->
bit_rate / 1000;
2333 brc_param_multiplier = (
FFMAX(
FFMAX3(target_bitrate_kbps, max_bitrate_kbps, buffer_size_in_kilobytes),
2334 initial_delay_in_kilobytes) + 0x10000) / 0x10000;
2336 q->
param.mfx.BufferSizeInKB = buffer_size_in_kilobytes / brc_param_multiplier;
2337 q->
param.mfx.InitialDelayInKB = initial_delay_in_kilobytes / brc_param_multiplier;
2338 q->
param.mfx.TargetKbps = target_bitrate_kbps / brc_param_multiplier;
2339 q->
param.mfx.MaxKbps = max_bitrate_kbps / brc_param_multiplier;
2340 q->
param.mfx.BRCParamMultiplier = brc_param_multiplier;
2342 "Reset BufferSizeInKB: %d; InitialDelayInKB: %d; "
2343 "TargetKbps: %d; MaxKbps: %d; BRCParamMultiplier: %d\n",
2344 q->
param.mfx.BufferSizeInKB, q->
param.mfx.InitialDelayInKB,
2345 q->
param.mfx.TargetKbps, q->
param.mfx.MaxKbps, q->
param.mfx.BRCParamMultiplier);
2361 MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN;
2372 mfxExtAVCEncodedFrameInfo *enc_info =
NULL;
2373 mfxExtBuffer **enc_buf =
NULL;
2375 mfxFrameSurface1 *surf =
NULL;
2377 mfxEncodeCtrl* enc_ctrl =
NULL;
2392 enc_ctrl->FrameType = MFX_FRAMETYPE_I | MFX_FRAMETYPE_REF;
2394 enc_ctrl->FrameType |= MFX_FRAMETYPE_IDR;
2415 enc_info->Header.BufferId = MFX_EXTBUFF_ENCODED_FRAME_INFO;
2416 enc_info->Header.BufferSz =
sizeof (*enc_info);
2417 pkt.bs->NumExtParam = 1;
2418 enc_buf =
av_mallocz(
sizeof(mfxExtBuffer *));
2421 enc_buf[0] = (mfxExtBuffer *)enc_info;
2423 pkt.bs->ExtParam = enc_buf;
2448 ret = MFXVideoENCODE_EncodeFrameAsync(q->
session, enc_ctrl, surf,
pkt.bs,
pkt.sync);
2449 if (
ret == MFX_WRN_DEVICE_BUSY)
2451 }
while (
ret == MFX_WRN_DEVICE_BUSY ||
ret == MFX_WRN_IN_EXECUTION);
2457 ret = (
ret == MFX_ERR_MORE_DATA) ?
2491 int needReset = 0,
ret = 0;
2524 if (j < qsv->nb_ext_buffers)
2564 mfxExtAVCEncodedFrameInfo *enc_info;
2565 mfxExtBuffer **enc_buf;
2572 }
while (
ret == MFX_WRN_IN_EXECUTION);
2578 if (qpkt.
bs->FrameType & MFX_FRAMETYPE_IDR || qpkt.
bs->FrameType & MFX_FRAMETYPE_xIDR) {
2581 }
else if (qpkt.
bs->FrameType & MFX_FRAMETYPE_I || qpkt.
bs->FrameType & MFX_FRAMETYPE_xI)
2583 else if (qpkt.
bs->FrameType & MFX_FRAMETYPE_P || qpkt.
bs->FrameType & MFX_FRAMETYPE_xP)
2585 else if (qpkt.
bs->FrameType & MFX_FRAMETYPE_B || qpkt.
bs->FrameType & MFX_FRAMETYPE_xB)
2587 else if (qpkt.
bs->FrameType == MFX_FRAMETYPE_UNKNOWN && qpkt.
bs->DataLength) {
2596 enc_buf = qpkt.
bs->ExtParam;
2597 enc_info = (mfxExtAVCEncodedFrameInfo *)(*enc_buf);
2619 MFXVideoENCODE_Close(q->
session);
2640 mfxExtBuffer **enc_buf =
pkt.bs->ExtParam;
2641 mfxExtAVCEncodedFrameInfo *enc_info = (mfxExtAVCEncodedFrameInfo *)(*enc_buf);