namespace HandBrake.Interop
{
using System;
public class AudioEncoding
{
public int InputNumber { get; set; }
public AudioEncoder Encoder { get; set; }
///
/// Gets or sets the bitrate (in kbps) of this track.
///
public int Bitrate { get; set; }
public Mixdown Mixdown { get; set; }
///
/// Gets or sets the sample rate. Obsolete. Use SampleRateRaw instead.
///
[Obsolete("This property is ignored and only exists for backwards compatibility. Use SampleRateRaw instead.")]
public string SampleRate { get; set; }
///
/// Gets or sets the sample rate in Hz.
///
public int SampleRateRaw { get; set; }
public int Gain { get; set; }
public double Drc { get; set; }
public string Name { get; set; }
}
}