summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/Model/HBConfiguration.cs
blob: 837f0d94a4a42525590ecd69f3d3dbdaa9cf7d4c (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
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBConfiguration.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>
//   HandBrakes Configuration options
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.Interop.Model
{
    public class HBConfiguration
    {
        public HBConfiguration()
        {
        }

        public int PreviewScanCount { get; set; }

        public bool EnableQuickSyncDecoding { get; set; }

        public bool UseQSVDecodeForNonQSVEnc { get; set; }

        public bool EnableQsvLowPower { get; set; }
    }
}