diff options
author | sr55 <[email protected]> | 2012-02-05 15:13:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-02-05 15:13:36 +0000 |
commit | 3036d09839b774caba47f4a325f83adac7ba1b02 (patch) | |
tree | cab7e7ccf6d736ac5ebfca8031101d388f453861 /win/CS/HandBrake.Interop/HandBrakeInterop | |
parent | 53e2efcc66a556b2e3b7788a2152d6ed9a033f1b (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')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoders.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs | 2 |
2 files changed, 2 insertions, 2 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++) diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs index 3fc6b78e4..280a5cd2d 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs @@ -31,7 +31,7 @@ namespace HandBrake.Interop.Model.Encoding [Display(Name = "Dolby Surround")]
DolbySurround,
- [Display(Name = "6 Channel Discrete")]
+ [Display(Name = "6-channel discrete")]
SixChannelDiscrete,
[Display(Name = "None")]
|