14077ff1dc803349c75b4faf3452f411531e007b
[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 DCPOMATIC_SCALER_H
25 #define DCPOMATIC_SCALER_H
26
27 #include <string>
28 #include <vector>
29 #include <boost/utility.hpp>
30
31 /** @class Scaler
32  *  @brief Class to describe one of FFmpeg's software scalers
33  */
34 class Scaler : public boost::noncopyable
35 {
36 public:
37         Scaler (int f, std::string i, std::string n);
38
39         /** @return id used for calls to FFmpeg's sws_getContext */
40         int ffmpeg_id () const {
41                 return _ffmpeg_id;
42         }
43
44         /** @return id for our use */
45         std::string id () const {
46                 return _id;
47         }
48
49         /** @return user-visible name for this scaler */
50         std::string name () const {
51                 return _name;
52         }
53         
54         static std::vector<Scaler const *> all ();
55         static void setup_scalers ();
56         static Scaler const * from_id (std::string id);
57         static Scaler const * from_index (int);
58         static int as_index (Scaler const *);
59
60 private:
61
62         /** id used for calls to FFmpeg's pp_postprocess */
63         int _ffmpeg_id;
64         /** id for our use */
65         std::string _id;
66         /** user-visible name for this scaler */
67         std::string _name;
68
69         /** all available scalers */
70         static std::vector<Scaler const *> _scalers;
71 };
72
73 #endif