diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs index 0821749b5..49be026d4 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs @@ -1,10 +1,7 @@ -using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace HandBrake.Interop
+namespace HandBrake.Interop
{
+ using System;
+
public class AudioEncoding
{
public int InputNumber { get; set; }
@@ -14,10 +11,11 @@ namespace HandBrake.Interop /// Gets or sets the bitrate (in kbps) of this track.
/// </summary>
public int Bitrate { get; set; }
+
public Mixdown Mixdown { get; set; }
/// <summary>
- /// Obsolete. Use SampleRateRaw instead.
+ /// Gets or sets the sample rate. Obsolete. Use SampleRateRaw instead.
/// </summary>
[Obsolete("This property is ignored and only exists for backwards compatibility. Use SampleRateRaw instead.")]
public string SampleRate { get; set; }
|