Move things round a bit.
[dcpomatic.git] / src / lib / scaler.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/scaler.h
21  *  @brief A class to describe one of FFmpeg's software scalers.
22  */
23
24 #ifndef DVDOMATIC_SCALER_H
25 #define DVDOMATIC_SCALER_H
26
27 #include <string>
28 #include <vector>
29
30 /** @class Scaler
31  *  @brief Class to describe one of FFmpeg's software scalers
32  */
33 class Scaler
34 {
35 public:
36         Scaler (int f, int m, std::string i, std::string n);
37
38         /** @return id used for calls to FFmpeg's pp_postprocess */
39         int ffmpeg_id () const {
40                 return _ffmpeg_id;
41         }
42
43         /** @return number to use on an mplayer command line */
44         int mplayer_id () const {
45                 return _mplayer_id;
46         }
47
48         /** @return id for our use */
49         std::string id () const {
50                 return _id;
51         }
52
53         /** @return user-visible name for this scaler */
54         std::string name () const {
55                 return _name;
56         }
57         
58         static std::vector<Scaler const *> all ();
59         static void setup_scalers ();
60         static Scaler const * from_id (std::string id);
61         static Scaler const * from_index (int);
62         static int as_index (Scaler const *);
63
64 private:
65
66         /** id used for calls to FFmpeg's pp_postprocess */
67         int _ffmpeg_id;
68         int _mplayer_id;
69         /** id for our use */
70         std::string _id;
71         /** user-visible name for this scaler */
72         std::string _name;
73
74         /** sll available scalers */
75         static std::vector<Scaler const *> _scalers;
76 };
77
78 #endif