b132398d0093ac26282773770de1397d171ebfa9
[dcpomatic.git] / src / lib / filter.h
1 /*
2     Copyright (C) 2012-2015 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/filter.h
21  *  @brief A class to describe one of FFmpeg's video or audio filters.
22  */
23
24 #ifndef DCPOMATIC_FILTER_H
25 #define DCPOMATIC_FILTER_H
26
27 #include <boost/utility.hpp>
28 #include <string>
29 #include <vector>
30
31 /** @class Filter
32  *  @brief A class to describe one of FFmpeg's video or audio filters.
33  *
34  *  We don't support FFmpeg's post-processing filters here as they cannot cope with greater than
35  *  8bpp.  FFmpeg quantizes e.g. yuv422p10le down to yuv422p before running such filters, which
36  *  we don't really want to do.
37  */
38 class Filter : public boost::noncopyable
39 {
40 public:
41         Filter (std::string, std::string, std::string, std::string);
42
43         /** @return our id */
44         std::string id () const {
45                 return _id;
46         }
47
48         /** @return user-visible name */
49         std::string name () const {
50                 return _name;
51         }
52
53         /** @return string for a FFmpeg filter descriptor */
54         std::string ffmpeg () const {
55                 return _ffmpeg;
56         }
57
58         std::string category () const {
59                 return _category;
60         }
61
62         static std::vector<Filter const *> all ();
63         static Filter const * from_id (std::string);
64         static void setup_filters ();
65         static std::string ffmpeg_string (std::vector<Filter const *> const &);
66
67 private:
68
69         /** our id */
70         std::string _id;
71         /** user-visible name */
72         std::string _name;
73         std::string _category;
74         /** string for a FFmpeg filter descriptor */
75         std::string _ffmpeg;
76
77         /** all available filters */
78         static std::vector<Filter const *> _filters;
79         static void maybe_add (std::string, std::string, std::string, std::string);
80 };
81
82 #endif