diff options
Diffstat (limited to 'win/C#/interop/Model/Encoding/AudioEncoding.cs')
-rw-r--r-- | win/C#/interop/Model/Encoding/AudioEncoding.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/win/C#/interop/Model/Encoding/AudioEncoding.cs b/win/C#/interop/Model/Encoding/AudioEncoding.cs new file mode 100644 index 000000000..8ff112c35 --- /dev/null +++ b/win/C#/interop/Model/Encoding/AudioEncoding.cs @@ -0,0 +1,17 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace HandBrake.Interop
+{
+ public class AudioEncoding
+ {
+ public int InputNumber { get; set; }
+ public AudioEncoder Encoder { get; set; }
+ public int Bitrate { get; set; }
+ public Mixdown Mixdown { get; set; }
+ public string SampleRate { get; set; }
+ public double Drc { get; set; }
+ }
+}
|