25 #include <sys/types.h>
56 if (res < 0 || !payload)
59 sei_data = (mfxU8*)(payload + 1);
62 sei_data[1] = (mfxU8)sei_size;
65 payload->BufSize = sei_size + 2;
66 payload->NumBit = payload->BufSize * 8;
68 payload->Data = sei_data;
70 enc_ctrl->NumExtParam = 0;
71 enc_ctrl->NumPayload = 1;
72 enc_ctrl->Payload[0] = payload;
100 #define OFFSET(x) offsetof(QSVH264EncContext, x)
101 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
126 {
"vcm",
"Use the video conferencing mode ratecontrol",
OFFSET(qsv.vcm),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
128 {
"idr_interval",
"Distance (in I-frames) between IDR frames",
OFFSET(qsv.idr_interval),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VE },
129 {
"pic_timing_sei",
"Insert picture timing SEI with pic_struct_syntax element",
OFFSET(qsv.pic_timing_sei),
AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1,
VE },
130 {
"single_sei_nal_unit",
"Put all the SEI messages into one NALU",
OFFSET(qsv.single_sei_nal_unit),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1,
VE },
131 {
"max_dec_frame_buffering",
"Maximum number of frames buffered in the DPB",
OFFSET(qsv.max_dec_frame_buffering),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, UINT16_MAX,
VE },
133 {
"look_ahead",
"Use VBR algorithm with look ahead",
OFFSET(qsv.look_ahead),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
VE },
134 {
"look_ahead_depth",
"Depth of look ahead in number frames",
OFFSET(qsv.look_ahead_depth),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 100,
VE },
135 {
"look_ahead_downsampling",
"Downscaling factor for the frames saved for the lookahead analysis",
OFFSET(qsv.look_ahead_downsampling),
136 AV_OPT_TYPE_INT, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, MFX_LOOKAHEAD_DS_UNKNOWN, MFX_LOOKAHEAD_DS_4x,
VE, .unit =
"look_ahead_downsampling" },
137 {
"unknown" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, INT_MIN, INT_MAX,
VE, .unit =
"look_ahead_downsampling" },
138 {
"auto" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_UNKNOWN }, INT_MIN, INT_MAX,
VE, .unit =
"look_ahead_downsampling" },
139 {
"off" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_OFF }, INT_MIN, INT_MAX,
VE, .unit =
"look_ahead_downsampling" },
140 {
"2x" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_2x }, INT_MIN, INT_MAX,
VE, .unit =
"look_ahead_downsampling" },
141 {
"4x" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_LOOKAHEAD_DS_4x }, INT_MIN, INT_MAX,
VE, .unit =
"look_ahead_downsampling" },
143 {
"int_ref_type",
"Intra refresh type. B frames should be set to 0.",
OFFSET(qsv.int_ref_type),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX,
VE, .unit =
"int_ref_type" },
148 {
"int_ref_cycle_size",
"Number of frames in the intra refresh cycle",
OFFSET(qsv.int_ref_cycle_size),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT16_MAX,
VE },
149 {
"int_ref_qp_delta",
"QP difference for the refresh MBs",
OFFSET(qsv.int_ref_qp_delta),
AV_OPT_TYPE_INT, { .i64 = INT16_MIN }, INT16_MIN, INT16_MAX,
VE },
150 {
"recovery_point_sei",
"Insert recovery point SEI messages",
OFFSET(qsv.recovery_point_sei),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1,
VE },
151 {
"int_ref_cycle_dist",
"Distance between the beginnings of the intra-refresh cycles in frames",
OFFSET(qsv.int_ref_cycle_dist),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT16_MAX,
VE },
153 {
"unknown" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN }, INT_MIN, INT_MAX,
VE, .unit =
"profile" },
154 {
"baseline",
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_BASELINE }, INT_MIN, INT_MAX,
VE, .unit =
"profile" },
155 {
"main" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_MAIN }, INT_MIN, INT_MAX,
VE, .unit =
"profile" },
156 {
"high" ,
NULL, 0,
AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_HIGH }, INT_MIN, INT_MAX,
VE, .unit =
"profile" },
163 {
"mfmode",
"Multi-Frame Mode",
OFFSET(qsv.mfmode),
AV_OPT_TYPE_INT, { .i64 = MFX_MF_AUTO }, MFX_MF_DEFAULT, MFX_MF_AUTO,
VE, .unit =
"mfmode"},
188 {
"flags",
"+cgop" },
193 .
p.
name =
"h264_qsv",
194 CODEC_LONG_NAME(
"H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (Intel Quick Sync Video acceleration)"),
206 .p.priv_class = &
class,
210 .p.wrapper_name =
"qsv",