Browse Source

obs-ffmpeg: Correctly assign argument for NVENC
When retrying again without Psycho Visual Tuning,
the argument psycho_aq should be false.

tududweb 3 years ago
parent
commit
6c364f78cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/obs-ffmpeg/jim-nvenc.c

+ 1 - 1
plugins/obs-ffmpeg/jim-nvenc.c

@@ -998,7 +998,7 @@ static bool init_encoder(struct nvenc_data *enc, bool hevc,
 		blog(LOG_WARNING, "[jim-nvenc] init_specific_encoder failed, "
 				  "trying again without Psycho Visual Tuning");
 		if (!init_specific_encoder(enc, hevc, settings, encoder, bf,
-					   psycho_aq)) {
+					   false)) {
 			return false;
 		}
 	}