1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*
Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/** @file src/filter.cc
* @brief A class to describe one of FFmpeg's video or post-processing filters.
*/
#include "filter.h"
extern "C" {
#include <libavfilter/avfilter.h>
}
#include "i18n.h"
using namespace std;
vector<Filter const *> Filter::_filters;
/** @param i Our id.
* @param n User-visible name.
* @param c User-visible category.
* @param v String for a FFmpeg video filter descriptor.
*/
Filter::Filter (string i, string n, string c, string v)
: _id (i)
, _name (n)
, _category (c)
, _vf (v)
{
}
/** @return All available filters */
vector<Filter const *>
Filter::all ()
{
return _filters;
}
/** Set up the static _filters vector; must be called before from_*
* methods are used.
*/
void
Filter::setup_filters ()
{
/* Note: "none" is a magic id name, so don't use it here */
maybe_add (N_("mcdeint"), _("Motion compensating deinterlacer"), _("De-interlacing"), N_("mcdeint"));
maybe_add (N_("kerndeint"), _("Kernel deinterlacer"), _("De-interlacing"), N_("kerndeint"));
maybe_add (N_("yadif"), _("Yet Another Deinterlacing Filter"), _("De-interlacing"), N_("yadif"));
maybe_add (N_("gradfun"), _("Gradient debander"), _("Misc"), N_("gradfun"));
maybe_add (N_("unsharp"), _("Unsharp mask and Gaussian blur"), _("Misc"), N_("unsharp"));
maybe_add (N_("denoise3d"), _("3D denoiser"), _("Noise reduction"), N_("denoise3d"));
maybe_add (N_("hqdn3d"), _("High quality 3D denoiser"), _("Noise reduction"), N_("hqdn3d"));
maybe_add (N_("telecine"), _("Telecine filter"), _("Misc"), N_("telecine"));
maybe_add (N_("ow"), _("Overcomplete wavelet denoiser"), _("Noise reduction"), N_("mp=ow"));
}
void
Filter::maybe_add (string i, string n, string c, string v)
{
if (avfilter_get_by_name (i.c_str())) {
_filters.push_back (new Filter (i, n, c, v));
}
}
/** @param filters Set of filters.
* @return String to pass to FFmpeg for the video filters.
*/
string
Filter::ffmpeg_string (vector<Filter const *> const & filters)
{
string vf;
for (vector<Filter const *>::const_iterator i = filters.begin(); i != filters.end(); ++i) {
if (!vf.empty ()) {
vf += N_(",");
}
vf += (*i)->vf ();
}
return vf;
}
/** @param d Our id.
* @return Corresponding Filter, or 0.
*/
Filter const *
Filter::from_id (string d)
{
vector<Filter const *>::iterator i = _filters.begin ();
while (i != _filters.end() && (*i)->id() != d) {
++i;
}
if (i == _filters.end ()) {
return 0;
}
return *i;
}
|