Adjust wording of the nvenc_latency_over_power option

This commit is contained in:
Cameron Gutman 2024-02-26 21:49:24 -06:00
commit 84316b5ccd

View file

@ -947,17 +947,15 @@
</div>
</div>
<!-- Prefer lower encoding latency over increased power consumption -->
<!-- Prefer lower encoding latency over power savings -->
<div class="mb-3" v-if="platform === 'windows'">
<label for="nvenc_latency_over_power" class="form-label">Prefer lower encoding latency over increased power
consumption</label>
<label for="nvenc_latency_over_power" class="form-label">Prefer lower encoding latency over power savings</label>
<select id="nvenc_latency_over_power" class="form-select" v-model="config.nvenc_latency_over_power">
<option value="disabled">Disabled</option>
<option value="enabled">Enabled (default)</option>
</select>
<div class="form-text">
Adaptive P-State algorithm which NVIDIA drivers employ doesn't work well with low latency streaming, so
sunshine requests high power mode explicitly.<br>
Sunshine requests maximum GPU clock speed while streaming to reduce encoding latency.<br>
Disabling it is not recommended since this can lead to
<strong>significantly increased encoding latency</strong>.
</div>