blob: 5b59720152e6d0fd492fad1a8017b038dddd5e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="SourceVideoInfo.cs" company="HandBrake Project (https://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The source framerate info.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Model
{
/// <summary>
/// The source framerate info.
/// </summary>
public class SourceVideoInfo
{
/// <summary>
/// Initializes a new instance of the <see cref="SourceVideoInfo"/> class.
/// </summary>
/// <param name="resolution">
/// The resolution.
/// </param>
/// <param name="parVal">
/// The par val.
/// </param>
public SourceVideoInfo(Size resolution, Size parVal)
{
this.Resolution = resolution;
this.ParVal = parVal;
}
/// <summary>
/// Gets the resolution (width/height) of this Title
/// </summary>
public Size Resolution { get; private set; }
/// <summary>
/// Gets the pixel aspect ratio.
/// </summary>
public Size ParVal { get; private set; }
}
}
|