summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2015-08-04 19:49:42 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2015-08-04 21:38:10 +0200
commit3a20e5bc3b8cd7ed1066ae184772ea1858d9eeea (patch)
tree0107a6a48e9d2df85693a7a680f216d22374c9d0 /libavcodec
parentbef740688d7d3838bab1caa01a597aa324de3b8c (diff)
avcodec/nvenc: Only set h264 parameter when encoding h264
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/nvenc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/nvenc.c b/libavcodec/nvenc.c
index 2edc228d1c..d9dcf964f5 100644
--- a/libavcodec/nvenc.c
+++ b/libavcodec/nvenc.c
@@ -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;