]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/nvenc: Fix indentation
authorTimo Rothenpieler <timo@rothenpieler.org>
Tue, 4 Aug 2015 17:47:32 +0000 (19:47 +0200)
committerTimo Rothenpieler <timo@rothenpieler.org>
Tue, 4 Aug 2015 19:38:10 +0000 (21:38 +0200)
libavcodec/nvenc.c

index 93fa9c689c780ad8d1e2c52bd4baf8b03fdba785..2edc228d1ccfca8bb16de578b19a724e12dede2e 100644 (file)
@@ -759,14 +759,14 @@ 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;
-      ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CONSTQP;
-      ctx->encode_config.rcParams.constQP.qpInterB = 0;
-      ctx->encode_config.rcParams.constQP.qpInterP = 0;
-      ctx->encode_config.rcParams.constQP.qpIntra = 0;
-
-      avctx->qmin = -1;
-      avctx->qmax = -1;
+        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;
+        ctx->encode_config.rcParams.constQP.qpIntra = 0;
+
+        avctx->qmin = -1;
+        avctx->qmax = -1;
     } else if (ctx->cbr) {
         if (!ctx->twopass) {
             ctx->encode_config.rcParams.rateControlMode = NV_ENC_PARAMS_RC_CBR;