2008-02-15 22:02:51 +00:00
|
|
|
/*
|
|
|
|
* filter registration
|
2010-11-28 10:22:58 +00:00
|
|
|
* Copyright (c) 2008 Vitor Sessak
|
2008-02-15 22:02:51 +00:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
|
|
|
|
|
|
|
|
2008-03-03 20:53:15 +00:00
|
|
|
#define REGISTER_FILTER(X,x,y) { \
|
|
|
|
extern AVFilter avfilter_##y##_##x ; \
|
2009-01-14 17:19:17 +00:00
|
|
|
if(CONFIG_##X##_FILTER ) avfilter_register(&avfilter_##y##_##x ); }
|
2008-02-15 22:02:51 +00:00
|
|
|
|
|
|
|
void avfilter_register_all(void)
|
|
|
|
{
|
|
|
|
static int initialized;
|
|
|
|
|
|
|
|
if (initialized)
|
|
|
|
return;
|
|
|
|
initialized = 1;
|
|
|
|
|
2010-08-20 23:16:51 +00:00
|
|
|
REGISTER_FILTER (ANULL, anull, af);
|
|
|
|
|
2010-09-25 01:56:58 +00:00
|
|
|
REGISTER_FILTER (ANULLSRC, anullsrc, asrc);
|
|
|
|
|
2010-09-25 01:57:01 +00:00
|
|
|
REGISTER_FILTER (ANULLSINK, anullsink, asink);
|
|
|
|
|
2010-09-26 21:36:05 +00:00
|
|
|
REGISTER_FILTER (BLACKFRAME, blackframe, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (CROP, crop, vf);
|
2010-10-12 09:22:32 +00:00
|
|
|
REGISTER_FILTER (CROPDETECT, cropdetect, vf);
|
2010-09-28 13:16:40 +00:00
|
|
|
REGISTER_FILTER (DRAWBOX, drawbox, vf);
|
2010-08-24 08:38:00 +00:00
|
|
|
REGISTER_FILTER (FIFO, fifo, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (FORMAT, format, vf);
|
2010-09-24 00:32:22 +00:00
|
|
|
REGISTER_FILTER (FREI0R, frei0r, vf);
|
2010-12-12 17:59:10 +00:00
|
|
|
REGISTER_FILTER (GRADFUN, gradfun, vf);
|
2010-08-17 14:59:12 +00:00
|
|
|
REGISTER_FILTER (HFLIP, hflip, vf);
|
2010-12-04 13:03:42 +00:00
|
|
|
REGISTER_FILTER (HQDN3D, hqdn3d, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (NOFORMAT, noformat, vf);
|
|
|
|
REGISTER_FILTER (NULL, null, vf);
|
2010-09-14 13:21:13 +00:00
|
|
|
REGISTER_FILTER (OCV_SMOOTH, ocv_smooth, vf);
|
2010-11-21 18:39:34 +00:00
|
|
|
REGISTER_FILTER (OVERLAY, overlay, vf);
|
2010-05-07 11:47:13 +00:00
|
|
|
REGISTER_FILTER (PAD, pad, vf);
|
2010-07-07 18:24:55 +00:00
|
|
|
REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (SCALE, scale, vf);
|
2010-11-22 22:03:24 +00:00
|
|
|
REGISTER_FILTER (SETDAR, setdar, vf);
|
2010-11-02 22:29:17 +00:00
|
|
|
REGISTER_FILTER (SETPTS, setpts, vf);
|
2010-11-22 22:03:24 +00:00
|
|
|
REGISTER_FILTER (SETSAR, setsar, vf);
|
2010-11-02 22:53:18 +00:00
|
|
|
REGISTER_FILTER (SETTB, settb, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (SLICIFY, slicify, vf);
|
2010-10-18 21:29:37 +00:00
|
|
|
REGISTER_FILTER (TRANSPOSE, transpose, vf);
|
2010-04-07 01:05:24 +00:00
|
|
|
REGISTER_FILTER (UNSHARP, unsharp, vf);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (VFLIP, vflip, vf);
|
2010-09-25 16:43:42 +00:00
|
|
|
REGISTER_FILTER (YADIF, yadif, vf);
|
2010-01-16 10:43:53 +00:00
|
|
|
|
2010-05-07 09:22:32 +00:00
|
|
|
REGISTER_FILTER (BUFFER, buffer, vsrc);
|
2010-07-17 10:14:52 +00:00
|
|
|
REGISTER_FILTER (COLOR, color, vsrc);
|
2010-11-30 20:14:36 +00:00
|
|
|
REGISTER_FILTER (FREI0R, frei0r_src, vsrc);
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (NULLSRC, nullsrc, vsrc);
|
2010-01-16 11:05:36 +00:00
|
|
|
|
2010-03-17 04:37:43 +00:00
|
|
|
REGISTER_FILTER (NULLSINK, nullsink, vsink);
|
2008-02-15 22:02:51 +00:00
|
|
|
}
|