diff options
author | sr55 <[email protected]> | 2011-09-17 19:15:51 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-09-17 19:15:51 +0000 |
commit | d428990eccd41c5ea9e67115a093ea0c09bc3e2a (patch) | |
tree | e21e539dec9df67e6c36fe45bf5673910bda67d5 /win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs | |
parent | ccbaa9137a2275647a22b86487109f694c0f732d (diff) |
Interop: Added support for various audio encoding options that were missing from various functions.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4228 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs index 81b529918..a4c7637b5 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoding.cs @@ -9,11 +9,21 @@ namespace HandBrake.Interop.Model.Encoding
{
- using System;
+ using System;
- public class AudioEncoding
+ /// <summary>
+ /// The Audio Encoding Model
+ /// </summary>
+ public class AudioEncoding
{
+ /// <summary>
+ /// Gets or sets InputNumber.
+ /// </summary>
public int InputNumber { get; set; }
+
+ /// <summary>
+ /// Gets or sets Encoder.
+ /// </summary>
public AudioEncoder Encoder { get; set; }
/// <summary>
@@ -21,6 +31,9 @@ namespace HandBrake.Interop.Model.Encoding /// </summary>
public int Bitrate { get; set; }
+ /// <summary>
+ /// Gets or sets Mixdown.
+ /// </summary>
public Mixdown Mixdown { get; set; }
/// <summary>
@@ -34,8 +47,19 @@ namespace HandBrake.Interop.Model.Encoding /// </summary>
public int SampleRateRaw { get; set; }
+ /// <summary>
+ /// Gets or sets Gain.
+ /// </summary>
public int Gain { get; set; }
+
+ /// <summary>
+ /// Gets or sets Drc.
+ /// </summary>
public double Drc { get; set; }
+
+ /// <summary>
+ /// Gets or sets Name.
+ /// </summary>
public string Name { get; set; }
}
}
|