2008-02-15 23:02:51 +01:00
|
|
|
/*
|
|
|
|
* filter registration
|
2010-11-28 11:22:58 +01:00
|
|
|
* Copyright (c) 2008 Vitor Sessak
|
2008-02-15 23:02:51 +01:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* This file is part of Libav.
|
2008-02-15 23:02:51 +01:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2008-02-15 23:02:51 +01:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2008-02-15 23:02:51 +01:00
|
|
|
* 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
|
2011-03-18 18:35:10 +01:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2008-02-15 23:02:51 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
|
|
|
|
|
|
|
|
2008-03-03 21:53:15 +01:00
|
|
|
#define REGISTER_FILTER(X,x,y) { \
|
|
|
|
extern AVFilter avfilter_##y##_##x ; \
|
2009-01-14 18:19:17 +01:00
|
|
|
if(CONFIG_##X##_FILTER ) avfilter_register(&avfilter_##y##_##x ); }
|
2008-02-15 23:02:51 +01:00
|
|
|
|
|
|
|
void avfilter_register_all(void)
|
|
|
|
{
|
|
|
|
static int initialized;
|
|
|
|
|
|
|
|
if (initialized)
|
|
|
|
return;
|
|
|
|
initialized = 1;
|
|
|
|
|
2012-05-06 09:00:53 +02:00
|
|
|
REGISTER_FILTER (AFORMAT, aformat, af);
|
2012-05-22 03:27:59 +02:00
|
|
|
REGISTER_FILTER (AMIX, amix, af);
|
2010-08-21 01:16:51 +02:00
|
|
|
REGISTER_FILTER (ANULL, anull, af);
|
2012-05-21 20:03:42 +02:00
|
|
|
REGISTER_FILTER (ASPLIT, asplit, af);
|
2012-05-08 16:33:50 +02:00
|
|
|
REGISTER_FILTER (ASYNCTS, asyncts, af);
|
2012-05-04 15:09:17 +02:00
|
|
|
REGISTER_FILTER (RESAMPLE, resample, af);
|
2010-08-21 01:16:51 +02:00
|
|
|
|
2010-09-25 03:56:58 +02:00
|
|
|
REGISTER_FILTER (ANULLSRC, anullsrc, asrc);
|
|
|
|
|
2010-09-25 03:57:01 +02:00
|
|
|
REGISTER_FILTER (ANULLSINK, anullsink, asink);
|
|
|
|
|
2010-09-26 23:36:05 +02:00
|
|
|
REGISTER_FILTER (BLACKFRAME, blackframe, vf);
|
2011-07-09 18:13:10 +02:00
|
|
|
REGISTER_FILTER (BOXBLUR, boxblur, vf);
|
2010-12-28 02:01:09 +01:00
|
|
|
REGISTER_FILTER (COPY, copy, vf);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (CROP, crop, vf);
|
2010-10-12 11:22:32 +02:00
|
|
|
REGISTER_FILTER (CROPDETECT, cropdetect, vf);
|
2011-08-10 18:58:49 +02:00
|
|
|
REGISTER_FILTER (DELOGO, delogo, vf);
|
2010-09-28 15:16:40 +02:00
|
|
|
REGISTER_FILTER (DRAWBOX, drawbox, vf);
|
2011-02-21 01:02:29 +01:00
|
|
|
REGISTER_FILTER (DRAWTEXT, drawtext, vf);
|
2011-02-21 12:02:57 +01:00
|
|
|
REGISTER_FILTER (FADE, fade, vf);
|
2011-04-10 19:18:03 +02:00
|
|
|
REGISTER_FILTER (FIELDORDER, fieldorder, vf);
|
2010-08-24 10:38:00 +02:00
|
|
|
REGISTER_FILTER (FIFO, fifo, vf);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (FORMAT, format, vf);
|
2012-05-09 14:08:21 +02:00
|
|
|
REGISTER_FILTER (FPS, fps, vf);
|
2010-09-24 02:32:22 +02:00
|
|
|
REGISTER_FILTER (FREI0R, frei0r, vf);
|
2010-12-12 18:59:10 +01:00
|
|
|
REGISTER_FILTER (GRADFUN, gradfun, vf);
|
2010-08-17 16:59:12 +02:00
|
|
|
REGISTER_FILTER (HFLIP, hflip, vf);
|
2010-12-04 14:03:42 +01:00
|
|
|
REGISTER_FILTER (HQDN3D, hqdn3d, vf);
|
2011-05-28 21:51:03 +02:00
|
|
|
REGISTER_FILTER (LUT, lut, vf);
|
|
|
|
REGISTER_FILTER (LUTRGB, lutrgb, vf);
|
|
|
|
REGISTER_FILTER (LUTYUV, lutyuv, vf);
|
2011-05-28 22:00:26 +02:00
|
|
|
REGISTER_FILTER (NEGATE, negate, vf);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (NOFORMAT, noformat, vf);
|
|
|
|
REGISTER_FILTER (NULL, null, vf);
|
2010-12-23 18:24:19 +01:00
|
|
|
REGISTER_FILTER (OCV, ocv, vf);
|
2010-11-21 19:39:34 +01:00
|
|
|
REGISTER_FILTER (OVERLAY, overlay, vf);
|
2010-05-07 13:47:13 +02:00
|
|
|
REGISTER_FILTER (PAD, pad, vf);
|
2010-07-07 20:24:55 +02:00
|
|
|
REGISTER_FILTER (PIXDESCTEST, pixdesctest, vf);
|
2011-05-07 02:06:25 +02:00
|
|
|
REGISTER_FILTER (SELECT, select, vf);
|
2010-11-22 23:03:24 +01:00
|
|
|
REGISTER_FILTER (SETDAR, setdar, vf);
|
2010-11-02 23:29:17 +01:00
|
|
|
REGISTER_FILTER (SETPTS, setpts, vf);
|
2010-11-22 23:03:24 +01:00
|
|
|
REGISTER_FILTER (SETSAR, setsar, vf);
|
2010-11-02 23:53:18 +01:00
|
|
|
REGISTER_FILTER (SETTB, settb, vf);
|
2011-04-23 20:55:34 +02:00
|
|
|
REGISTER_FILTER (SHOWINFO, showinfo, vf);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (SLICIFY, slicify, vf);
|
2011-05-21 16:46:11 +02:00
|
|
|
REGISTER_FILTER (SPLIT, split, vf);
|
2010-10-18 23:29:37 +02:00
|
|
|
REGISTER_FILTER (TRANSPOSE, transpose, vf);
|
2010-04-07 03:05:24 +02:00
|
|
|
REGISTER_FILTER (UNSHARP, unsharp, vf);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (VFLIP, vflip, vf);
|
2010-09-25 18:43:42 +02:00
|
|
|
REGISTER_FILTER (YADIF, yadif, vf);
|
2010-01-16 11:43:53 +01:00
|
|
|
|
2010-07-17 12:14:52 +02:00
|
|
|
REGISTER_FILTER (COLOR, color, vsrc);
|
2010-11-30 21:14:36 +01:00
|
|
|
REGISTER_FILTER (FREI0R, frei0r_src, vsrc);
|
2011-01-29 11:22:41 +01:00
|
|
|
REGISTER_FILTER (MOVIE, movie, vsrc);
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (NULLSRC, nullsrc, vsrc);
|
2011-07-11 16:27:09 +02:00
|
|
|
REGISTER_FILTER (RGBTESTSRC, rgbtestsrc, vsrc);
|
2011-06-18 03:11:16 +02:00
|
|
|
REGISTER_FILTER (TESTSRC, testsrc, vsrc);
|
2010-01-16 12:05:36 +01:00
|
|
|
|
2010-03-17 05:37:43 +01:00
|
|
|
REGISTER_FILTER (NULLSINK, nullsink, vsink);
|
2011-12-21 20:47:52 +01:00
|
|
|
|
2012-05-05 10:22:55 +02:00
|
|
|
/* those filters are part of public or internal API => registered
|
|
|
|
* unconditionally */
|
2011-12-21 20:47:52 +01:00
|
|
|
{
|
2011-12-22 17:32:29 +01:00
|
|
|
extern AVFilter avfilter_vsrc_buffer;
|
2011-12-21 20:47:52 +01:00
|
|
|
avfilter_register(&avfilter_vsrc_buffer);
|
|
|
|
}
|
2012-05-04 18:57:04 +02:00
|
|
|
{
|
|
|
|
extern AVFilter avfilter_asrc_abuffer;
|
|
|
|
avfilter_register(&avfilter_asrc_abuffer);
|
|
|
|
}
|
2012-04-27 06:56:56 +02:00
|
|
|
{
|
|
|
|
extern AVFilter avfilter_vsink_buffer;
|
|
|
|
avfilter_register(&avfilter_vsink_buffer);
|
|
|
|
}
|
2012-05-04 19:22:38 +02:00
|
|
|
{
|
|
|
|
extern AVFilter avfilter_asink_abuffer;
|
|
|
|
avfilter_register(&avfilter_asink_abuffer);
|
|
|
|
}
|
2012-05-05 10:22:55 +02:00
|
|
|
{
|
|
|
|
extern AVFilter avfilter_vf_scale;
|
|
|
|
avfilter_register(&avfilter_vf_scale);
|
|
|
|
}
|
2008-02-15 23:02:51 +01:00
|
|
|
}
|