// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // An audio track from the source video. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { /// /// An audio track from the source video. /// public class SourceAudioTrack { /// /// Gets or sets the bit rate. /// public int BitRate { get; set; } /// /// Gets or sets the channel layout. /// public int ChannelLayout { get; set; } /// /// Gets or sets the description. /// public string Description { get; set; } /// /// Gets or sets the language. /// public string Language { get; set; } /// /// Gets or sets the language code. /// public string LanguageCode { get; set; } /// /// Gets or sets the sample rate. /// public int SampleRate { get; set; } /// /// Gets or sets the codec. /// public int Codec { get; set; } } }