forked from FFmpeg/FFmpeg
avcodec/nvenc: Only set h264 parameter when encoding h264
This commit is contained in:
parent
bef740688d
commit
3a20e5bc3b
1 changed files with 3 additions and 1 deletions
|
@ -759,7 +759,9 @@ static av_cold int nvenc_encode_init(AVCodecContext *avctx)
|
|||
ctx->encode_config.rcParams.maxBitRate = avctx->rc_max_rate;
|
||||
|
||||
if (lossless) {
|
||||
ctx->encode_config.encodeCodecConfig.h264Config.qpPrimeYZeroTransformBypassFlag = 1;
|
||||
if (avctx->codec->id == AV_CODEC_ID_H264)
|
||||
ctx->encode_config.encodeCodecConfig.h264Config.qpPrimeYZeroTransformBypassFlag = 1;
|
||||
|
||||
ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
|
||||
ctx->encode_config.rcParams.constQP.qpInterB = 0;
|
||||
ctx->encode_config.rcParams.constQP.qpInterP = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue