mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'deefca02c275ce4bc5ccbee690463ffef81a18b8'
* commit 'deefca02c275ce4bc5ccbee690463ffef81a18b8': qsvenc: add the Access Unit Delimiter NAL Unit support Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
b065c71e9d
|
@ -595,6 +595,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
if (q->recovery_point_sei >= 0)
|
||||
q->extco.RecoveryPointSEI = q->recovery_point_sei ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
|
||||
q->extco.MaxDecFrameBuffering = q->max_dec_frame_buffering;
|
||||
q->extco.AUDelimiter = q->aud ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
|
||||
}
|
||||
|
||||
q->extparam_internal[q->nb_extparam_internal++] = (mfxExtBuffer *)&q->extco;
|
||||
|
|
|
@ -138,6 +138,8 @@ typedef struct QSVEncContext {
|
|||
int max_frame_size;
|
||||
int max_slice_size;
|
||||
|
||||
int aud;
|
||||
|
||||
int single_sei_nal_unit;
|
||||
int max_dec_frame_buffering;
|
||||
int trellis;
|
||||
|
|
|
@ -142,6 +142,9 @@ static const AVOption options[] = {
|
|||
{ "high" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_HIGH }, INT_MIN, INT_MAX, VE, "profile" },
|
||||
|
||||
{ "a53cc" , "Use A53 Closed Captions (if available)", OFFSET(qsv.a53_cc), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, VE},
|
||||
|
||||
{ "aud", "Insert the Access Unit Delimiter NAL", OFFSET(qsv.aud), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE},
|
||||
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue