summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-02-05 15:13:36 +0000
committersr55 <[email protected]>2012-02-05 15:13:36 +0000
commit3036d09839b774caba47f4a325f83adac7ba1b02 (patch)
treecab7e7ccf6d736ac5ebfca8031101d388f453861 /win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs
parent53e2efcc66a556b2e3b7788a2152d6ed9a033f1b (diff)
WinGui: Fixes to the preset system and plist exporter. (Missing keys)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4438 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs
index 9857bb6ad..e13337ea7 100644
--- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs
@@ -144,7 +144,7 @@ namespace HandBrake.Interop.Model
/// <returns>The highest possible mixdown for that audio encoder.</returns>
public static int GetMaxMixdownIndex(HBAudioEncoder audioEncoder)
{
- // To find best case scenario, pass in highest number of channels and 6 channel discrete mixdown.
+ // To find best case scenario, pass in highest number of channels and 6-channel discrete mixdown.
int maxMixdownId = HBFunctions.hb_get_best_mixdown((uint)audioEncoder.Id, NativeConstants.HB_INPUT_CH_LAYOUT_3F4R, NativeConstants.HB_AMIXDOWN_6CH);
for (int i = 0; i < Mixdowns.Count; i++)