FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
allfilters.c
Go to the documentation of this file.
1 /*
2  * filter registration
3  * Copyright (c) 2008 Vitor Sessak
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "avfilter.h"
23 #include "config.h"
24 
25 
26 #define REGISTER_FILTER(X, x, y) \
27  { \
28  extern AVFilter avfilter_##y##_##x; \
29  if (CONFIG_##X##_FILTER) \
30  avfilter_register(&avfilter_##y##_##x); \
31  }
32 
33 #define REGISTER_FILTER_UNCONDITIONAL(x) \
34  { \
35  extern AVFilter avfilter_##x; \
36  avfilter_register(&avfilter_##x); \
37  }
38 
40 {
41  static int initialized;
42 
43  if (initialized)
44  return;
45  initialized = 1;
46 
47  REGISTER_FILTER(ACONVERT, aconvert, af);
48  REGISTER_FILTER(AFADE, afade, af);
49  REGISTER_FILTER(AFORMAT, aformat, af);
50  REGISTER_FILTER(ALLPASS, allpass, af);
51  REGISTER_FILTER(AMERGE, amerge, af);
52  REGISTER_FILTER(AMIX, amix, af);
53  REGISTER_FILTER(ANULL, anull, af);
54  REGISTER_FILTER(APAD, apad, af);
55  REGISTER_FILTER(ARESAMPLE, aresample, af);
56  REGISTER_FILTER(ASELECT, aselect, af);
57  REGISTER_FILTER(ASENDCMD, asendcmd, af);
58  REGISTER_FILTER(ASETNSAMPLES, asetnsamples, af);
59  REGISTER_FILTER(ASETPTS, asetpts, af);
60  REGISTER_FILTER(ASETTB, asettb, af);
61  REGISTER_FILTER(ASHOWINFO, ashowinfo, af);
62  REGISTER_FILTER(ASPLIT, asplit, af);
63  REGISTER_FILTER(ASTREAMSYNC, astreamsync, af);
64  REGISTER_FILTER(ASYNCTS, asyncts, af);
65  REGISTER_FILTER(ATEMPO, atempo, af);
66  REGISTER_FILTER(BANDPASS, bandpass, af);
67  REGISTER_FILTER(BANDREJECT, bandreject, af);
68  REGISTER_FILTER(BASS, bass, af);
69  REGISTER_FILTER(BIQUAD, biquad, af);
70  REGISTER_FILTER(CHANNELMAP, channelmap, af);
71  REGISTER_FILTER(CHANNELSPLIT, channelsplit, af);
72  REGISTER_FILTER(EARWAX, earwax, af);
73  REGISTER_FILTER(EBUR128, ebur128, af);
74  REGISTER_FILTER(EQUALIZER, equalizer, af);
75  REGISTER_FILTER(HIGHPASS, highpass, af);
76  REGISTER_FILTER(JOIN, join, af);
78  REGISTER_FILTER(PAN, pan, af);
79  REGISTER_FILTER(RESAMPLE, resample, af);
80  REGISTER_FILTER(SILENCEDETECT, silencedetect, af);
81  REGISTER_FILTER(TREBLE, treble, af);
82  REGISTER_FILTER(VOLUME, volume, af);
83  REGISTER_FILTER(VOLUMEDETECT, volumedetect, af);
84 
85  REGISTER_FILTER(AEVALSRC, aevalsrc, asrc);
86  REGISTER_FILTER(ANULLSRC, anullsrc, asrc);
87  REGISTER_FILTER(FLITE, flite, asrc);
88 
89  REGISTER_FILTER(ANULLSINK, anullsink, asink);
90 
91  REGISTER_FILTER(ALPHAEXTRACT, alphaextract, vf);
92  REGISTER_FILTER(ALPHAMERGE, alphamerge, vf);
93  REGISTER_FILTER(ASS, ass, vf);
94  REGISTER_FILTER(BBOX, bbox, vf);
95  REGISTER_FILTER(BLACKDETECT, blackdetect, vf);
96  REGISTER_FILTER(BLACKFRAME, blackframe, vf);
97  REGISTER_FILTER(BLEND, blend, vf);
98  REGISTER_FILTER(BOXBLUR, boxblur, vf);
99  REGISTER_FILTER(COLORMATRIX, colormatrix, vf);
100  REGISTER_FILTER(COPY, copy, vf);
101  REGISTER_FILTER(CROP, crop, vf);
102  REGISTER_FILTER(CROPDETECT, cropdetect, vf);
103  REGISTER_FILTER(DECIMATE, decimate, vf);
104  REGISTER_FILTER(DELOGO, delogo, vf);
105  REGISTER_FILTER(DESHAKE, deshake, vf);
106  REGISTER_FILTER(DRAWBOX, drawbox, vf);
107  REGISTER_FILTER(DRAWTEXT, drawtext, vf);
108  REGISTER_FILTER(EDGEDETECT, edgedetect, vf);
109  REGISTER_FILTER(FADE, fade, vf);
110  REGISTER_FILTER(FIELD, field, vf);
111  REGISTER_FILTER(FIELDORDER, fieldorder, vf);
112  REGISTER_FILTER(FORMAT, format, vf);
113  REGISTER_FILTER(FPS, fps, vf);
114  REGISTER_FILTER(FRAMESTEP, framestep, vf);
115  REGISTER_FILTER(FREI0R, frei0r, vf);
116  REGISTER_FILTER(GEQ, geq, vf);
117  REGISTER_FILTER(GRADFUN, gradfun, vf);
118  REGISTER_FILTER(HFLIP, hflip, vf);
119  REGISTER_FILTER(HISTEQ, histeq, vf);
120  REGISTER_FILTER(HISTOGRAM, histogram, vf);
121  REGISTER_FILTER(HQDN3D, hqdn3d, vf);
122  REGISTER_FILTER(HUE, hue, vf);
123  REGISTER_FILTER(IDET, idet, vf);
124  REGISTER_FILTER(IL, il, vf);
125  REGISTER_FILTER(KERNDEINT, kerndeint, vf);
126  REGISTER_FILTER(LUT, lut, vf);
127  REGISTER_FILTER(LUTRGB, lutrgb, vf);
128  REGISTER_FILTER(LUTYUV, lutyuv, vf);
129  REGISTER_FILTER(MP, mp, vf);
130  REGISTER_FILTER(NEGATE, negate, vf);
131  REGISTER_FILTER(NOFORMAT, noformat, vf);
132  REGISTER_FILTER(NOISE, noise, vf);
133  REGISTER_FILTER(NULL, null, vf);
134  REGISTER_FILTER(OCV, ocv, vf);
135  REGISTER_FILTER(OVERLAY, overlay, vf);
136  REGISTER_FILTER(PAD, pad, vf);
137  REGISTER_FILTER(PIXDESCTEST, pixdesctest, vf);
138  REGISTER_FILTER(PP, pp, vf);
139  REGISTER_FILTER(REMOVELOGO, removelogo, vf);
140  REGISTER_FILTER(SCALE, scale, vf);
141  REGISTER_FILTER(SELECT, select, vf);
142  REGISTER_FILTER(SENDCMD, sendcmd, vf);
143  REGISTER_FILTER(SETDAR, setdar, vf);
144  REGISTER_FILTER(SETFIELD, setfield, vf);
145  REGISTER_FILTER(SETPTS, setpts, vf);
146  REGISTER_FILTER(SETSAR, setsar, vf);
147  REGISTER_FILTER(SETTB, settb, vf);
148  REGISTER_FILTER(SHOWINFO, showinfo, vf);
149  REGISTER_FILTER(SMARTBLUR, smartblur, vf);
151  REGISTER_FILTER(STEREO3D, stereo3d, vf);
152  REGISTER_FILTER(SUBTITLES, subtitles, vf);
153  REGISTER_FILTER(SUPER2XSAI, super2xsai, vf);
154  REGISTER_FILTER(SWAPUV, swapuv, vf);
155  REGISTER_FILTER(THUMBNAIL, thumbnail, vf);
156  REGISTER_FILTER(TILE, tile, vf);
157  REGISTER_FILTER(TINTERLACE, tinterlace, vf);
159  REGISTER_FILTER(UNSHARP, unsharp, vf);
160  REGISTER_FILTER(VFLIP, vflip, vf);
161  REGISTER_FILTER(YADIF, yadif, vf);
162 
163  REGISTER_FILTER(CELLAUTO, cellauto, vsrc);
164  REGISTER_FILTER(COLOR, color, vsrc);
165  REGISTER_FILTER(FREI0R, frei0r_src, vsrc);
166  REGISTER_FILTER(LIFE, life, vsrc);
167  REGISTER_FILTER(MANDELBROT, mandelbrot, vsrc);
168  REGISTER_FILTER(MPTESTSRC, mptestsrc, vsrc);
169  REGISTER_FILTER(NULLSRC, nullsrc, vsrc);
170  REGISTER_FILTER(RGBTESTSRC, rgbtestsrc, vsrc);
171  REGISTER_FILTER(SMPTEBARS, smptebars, vsrc);
172  REGISTER_FILTER(TESTSRC, testsrc, vsrc);
173 
174  REGISTER_FILTER(NULLSINK, nullsink, vsink);
175 
176  /* multimedia filters */
177  REGISTER_FILTER(CONCAT, concat, avf);
178  REGISTER_FILTER(SHOWSPECTRUM, showspectrum, avf);
179  REGISTER_FILTER(SHOWWAVES, showwaves, avf);
180 
181  /* multimedia sources */
182  REGISTER_FILTER(AMOVIE, amovie, avsrc);
183  REGISTER_FILTER(MOVIE, movie, avsrc);
184 
185  REGISTER_FILTER_UNCONDITIONAL(vsink_ffbuffersink);
186  REGISTER_FILTER_UNCONDITIONAL(asink_ffabuffersink);
187 #if !AV_HAVE_INCOMPATIBLE_FORK_ABI
188  REGISTER_FILTER_UNCONDITIONAL(vsink_buffersink);
189  REGISTER_FILTER_UNCONDITIONAL(asink_abuffersink);
190 #endif
191 
192  /* those filters are part of public or internal API => registered
193  * unconditionally */
194  REGISTER_FILTER_UNCONDITIONAL(asrc_abuffer);
195  REGISTER_FILTER_UNCONDITIONAL(vsrc_buffer);
196  REGISTER_FILTER_UNCONDITIONAL(asink_abuffer);
197  REGISTER_FILTER_UNCONDITIONAL(vsink_buffer);
200 }