mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-15 11:51:33 +00:00
libavcodec/qsvenc: add mbbrc to hevc_qsv
Add mbbrc to hevc_qsv For detailed description, please see "mbbrc" part in: https://github.com/Intel-Media-SDK/MediaSDK/blob/master/doc/mediasdk-man.md#mfxextcodingoption2 Signed-off-by: Wenbin Chen <wenbin.chen@intel.com>
This commit is contained in:
parent
4869ccb3f3
commit
342d4fb056
@ -3395,6 +3395,11 @@ Maximum encoded frame size in bytes.
|
||||
@item @var{max_slice_size}
|
||||
Maximum encoded slice size in bytes.
|
||||
|
||||
@item @var{mbbrc}
|
||||
Setting this flag enables macroblock level bitrate control that generally
|
||||
improves subjective visual quality. Enabling this flag may have negative impact
|
||||
on performance and objective visual quality metric.
|
||||
|
||||
@item @var{p_strategy}
|
||||
Enable P-pyramid: 0-default 1-simple 2-pyramid(bf need to be set to 0).
|
||||
|
||||
|
@ -878,8 +878,6 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
|
||||
if (avctx->codec_id == AV_CODEC_ID_H264) {
|
||||
if (q->bitrate_limit >= 0)
|
||||
q->extco2.BitrateLimit = q->bitrate_limit ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
|
||||
if (q->mbbrc >= 0)
|
||||
q->extco2.MBBRC = q->mbbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
|
||||
|
||||
#if QSV_HAVE_TRELLIS
|
||||
if (avctx->trellis >= 0)
|
||||
@ -936,6 +934,9 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
|
||||
q->extco2.MaxQPP = q->extco2.MaxQPB = q->extco2.MaxQPI;
|
||||
}
|
||||
#endif
|
||||
if (q->mbbrc >= 0)
|
||||
q->extco2.MBBRC = q->mbbrc ? MFX_CODINGOPTION_ON : MFX_CODINGOPTION_OFF;
|
||||
|
||||
q->extco2.Header.BufferId = MFX_EXTBUFF_CODING_OPTION2;
|
||||
q->extco2.Header.BufferSz = sizeof(q->extco2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user