]> sjero.net Git - qpsnr/blob - src/settings.cpp
Initial Commit of QPSNR (version 0.2.1)
[qpsnr] / src / settings.cpp
1 /*
2 *       qpsnr (C) 2010 E. Oriani, ema <AT> fastwebnet <DOT> it
3 *
4 *       This file is part of qpsnr.
5 *
6 *       qpsnr is free software: you can redistribute it and/or modify
7 *       it under the terms of the GNU General Public License as published by
8 *       the Free Software Foundation, either version 3 of the License, or
9 *       (at your option) any later version.
10 *
11 *       qpsnr is distributed in the hope that it will be useful,
12 *       but WITHOUT ANY WARRANTY; without even the implied warranty of
13 *       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 *       GNU General Public License for more details.
15 *
16 *       You should have received a copy of the GNU General Public License
17 *       along with qpsnr.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "settings.h"
21
22 namespace settings {
23         char            LOG = 0x07;
24         std::string     REF_VIDEO = "";
25         int             MAX_FRAMES = -1;
26         int             SKIP_FRAMES = -1;
27         bool            SAVE_IMAGES = false;
28         std::string     ANALYZER = "psnr";
29         bool            IGNORE_FPS = false;
30         int             VIDEO_SIZE_W = -1;
31         int             VIDEO_SIZE_H = -1;
32 }