blob: 0cc7257a0856a7818adb4d64fa8626a83370f79d (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BitrateLimits.cs" company="HandBrake Project (http://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>
// Defines the BitrateLimits type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model
{
/// <summary>
/// Represents bitrate limits as a range.
/// </summary>
public class BitrateLimits
{
/// <summary>
/// The inclusive lower limit for the bitrate.
/// </summary>
public int Low { get; set; }
/// <summary>
/// The inclusive upper limit for the bitrate.
/// </summary>
public int High { get; set; }
}
}
|