// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The source framerate info. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model { /// /// The source framerate info. /// public class SourceVideoInfo { /// /// Initializes a new instance of the class. /// /// /// The resolution. /// /// /// The par val. /// public SourceVideoInfo(Size resolution, Size parVal) { this.Resolution = resolution; this.ParVal = parVal; } /// /// Gets the resolution (width/height) of this Title /// public Size Resolution { get; private set; } /// /// Gets the pixel aspect ratio. /// public Size ParVal { get; private set; } } }