OSDN Git Service

Added preliminary NVEncC encoding support.
[x264-launcher/x264-launcher.git] / src / model_options.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include <QObject>
25 #include <QString>
26 #include <QMap>
27
28 class SysinfoModel;
29 class QSettings;
30
31 class OptionsModel
32 {
33 public:
34         OptionsModel(const SysinfoModel *sysinfo);
35         OptionsModel(const OptionsModel &rhs);
36         ~OptionsModel(void);
37
38         enum EncType
39         {
40                 EncType_X264  = 0,
41                 EncType_X265  = 1,
42                 EncType_NVEnc = 2,
43
44                 EncType_MIN  = EncType_X264,
45                 EncType_MAX  = EncType_NVEnc,
46         };
47
48         enum EncArch
49         {
50                 EncArch_x86_32 = 0,
51                 EncArch_x86_64 = 1,
52
53                 EncArch_MIN    = EncArch_x86_32,
54                 EncArch_MAX    = EncArch_x86_64
55         };
56
57         enum EncVariant
58         {
59                 EncVariant_8Bit  = 1,
60                 EncVariant_10Bit = 2,
61                 EncVariant_12Bit = 4,
62
63                 EncVariant_MIN   = EncVariant_8Bit,
64                 EncVariant_MAX   = EncVariant_12Bit
65         };
66
67         enum RCMode
68         {
69                 RCMode_CRF   = 0,
70                 RCMode_CQ    = 1,
71                 RCMode_2Pass = 2,
72                 RCMode_ABR   = 3,
73
74                 RCMode_MIN   = RCMode_CRF,
75                 RCMode_MAX   = RCMode_ABR,
76         };
77
78         static const char *const SETTING_UNSPECIFIED;
79         static const char *const PROFILE_UNRESTRICTED;
80
81         //Getter
82         EncType encType(void)         const { return m_encoderType; }
83         EncArch encArch(void)         const { return m_encoderArch; }
84         EncVariant encVariant(void)   const { return m_encoderVariant; }
85         RCMode rcMode(void)           const { return m_rcMode; }
86         unsigned int bitrate(void)    const { return m_bitrate; }
87         double quantizer(void)        const { return m_quantizer; }
88         QString preset(void)          const { return m_preset; }
89         QString tune(void)            const { return m_tune; }
90         QString profile(void)         const { return m_profile; }
91         QString customEncParams(void) const { return m_custom_encoder; }
92         QString customAvs2YUV(void)   const { return m_custom_avs2yuv; }
93
94         //Setter
95         void setEncType(EncType type)                  { m_encoderType = qBound(EncType_MIN, type, EncType_MAX); }
96         void setEncArch(EncArch arch)                  { m_encoderArch = qBound(EncArch_MIN, arch, EncArch_MAX); }
97         void setEncVariant(EncVariant variant)         { m_encoderVariant = qBound(EncVariant_MIN, variant, EncVariant_MAX); }
98         void setRCMode(RCMode mode)                    { m_rcMode = qBound(RCMode_CRF, mode, RCMode_ABR); }
99         void setBitrate(unsigned int bitrate)          { m_bitrate = qBound(10U, bitrate, 800000U); }
100         void setQuantizer(double quantizer)            { m_quantizer = qBound(0.0, quantizer, 52.0); }
101         void setPreset(const QString &preset)          { m_preset = preset.trimmed(); }
102         void setTune(const QString &tune)              { m_tune = tune.trimmed(); }
103         void setProfile(const QString &profile)        { m_profile = profile.trimmed(); }
104         void setCustomEncParams(const QString &custom) { m_custom_encoder = custom.trimmed(); }
105         void setCustomAvs2YUV(const QString &custom)   { m_custom_avs2yuv = custom.trimmed(); }
106
107         //Stuff
108         bool equals(const OptionsModel *model);
109
110         //Static functions
111         static QString rcMode2String(RCMode mode);
112         static bool saveTemplate(const OptionsModel *model, const QString &name);
113         static bool loadTemplate(OptionsModel *model, const QString &name);
114         static QMap<QString, OptionsModel*> loadAllTemplates(const SysinfoModel *sysinfo);
115         static bool templateExists(const QString &name);
116         static bool deleteTemplate(const QString &name);
117         static bool saveOptions(const OptionsModel *model, QSettings &settingsFile);
118         static bool loadOptions(OptionsModel *model, QSettings &settingsFile);
119
120 protected:
121         EncType m_encoderType;
122         EncArch m_encoderArch;
123         EncVariant m_encoderVariant;
124         RCMode m_rcMode;
125         unsigned int m_bitrate;
126         double m_quantizer;
127         QString m_preset;
128         QString m_tune;
129         QString m_profile;
130         QString m_custom_encoder;
131         QString m_custom_avs2yuv;
132
133 private:
134         static void fixTemplate(QSettings &settingsFile);
135 };