summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Encoding/AudioEncoding.cs
blob: b329ab419bd5016a0a7cc1215fad8b4546bb878e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace HandBrake.Interop.Model.Encoding
{
    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; }
    }
}