summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Model/Encoding/Denoise.cs
blob: fc81e9f20570081897bd323a1f6947634cf0c949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*  Denoise.cs $
    This file is part of the HandBrake source code.
    Homepage: <http://handbrake.fr>.
    It may be used under the terms of the GNU General Public License. */

namespace HandBrake.ApplicationServices.Model.Encoding
{
    /// <summary>
    /// The Denose Filters
    /// </summary>
    public enum Denoise
    {
        Off = 0,
        Weak,
        Medium,
        Strong,
        Custom
    }
}