Skip to content

Commit ef1fb2b

Browse files
committed
Rename QSV media engine count in Options to Adapter count.
1 parent 26dbb93 commit ef1fb2b

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

VidCoder/Resources/OptionsRes.Designer.cs

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VidCoder/Resources/OptionsRes.resx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,10 +470,10 @@ Polling: Periodically checks the contents of the folders. Uses significant CPU a
470470
<value>Supported codecs: {0}</value>
471471
<comment>Format string for codec lists. {0} is replaced with comma-separated list of codecs.</comment>
472472
</data>
473-
<data name="QsvMediaEngineCount" xml:space="preserve">
474-
<value>Media Engines: {0}</value>
475-
<comment>Indicator for how many QSV media engines are available on the system.
476-
{0} is the number of media engines, for example "2"</comment>
473+
<data name="QsvAdapterCount" xml:space="preserve">
474+
<value>Adapters: {0}</value>
475+
<comment>Indicator for how many QSV adapters are available on the system.
476+
{0} is the number of adapters, for example "2"</comment>
477477
</data>
478478
<data name="EnableQuickSyncHyperEncodeToolTip" xml:space="preserve">
479479
<value>Use multiple media engines to speed up a single encode where supported. Disable to allow load balancing multiple parallel encodes across media engines.</value>

VidCoder/View/OptionsDialog.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@
476476
<StackPanel Orientation="Vertical" Visibility="{Binding IsQuickSyncAvailable, Converter={StaticResource VisibilityConverter}}">
477477
<controls:AvailabilityIndicator />
478478
<TextBlock Margin="0 2 0 0" Text="{Binding QsvEncoders}" />
479-
<TextBlock Margin="0 2 0 0" Text="{Binding QsvMediaEngineCount}" />
479+
<TextBlock Margin="0 2 0 0" Text="{Binding QsvAdapterCount}" />
480480

481481
<CheckBox
482482
Margin="0 6 0 0"

VidCoder/ViewModel/OptionsDialogViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public OptionsDialogViewModel(IUpdater updateService)
184184
this.PlayerChoices = Players.All;
185185

186186
int qsvCount = HandBrakeEncoderHelpers.GetQsvAdaptorList().Count();
187-
this.QsvMediaEngineCount = string.Format(OptionsRes.QsvMediaEngineCount, qsvCount);
187+
this.QsvAdapterCount = string.Format(OptionsRes.QsvAdapterCount, qsvCount);
188188

189189
int tabIndex = Config.OptionsDialogLastTab;
190190
if (tabIndex >= this.Tabs.Count)
@@ -725,7 +725,7 @@ private static string GetEncodersByPrefix(List<HBVideoEncoder> encoders, string
725725

726726
public string MFEncoders => GetEncodersByPrefix(HandBrakeEncoderHelpers.VideoEncoders, "mf_");
727727

728-
public string QsvMediaEngineCount { get; }
728+
public string QsvAdapterCount { get; }
729729

730730
public bool EnableQuickSyncDecoding
731731
{

0 commit comments

Comments
 (0)