diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 01:03:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 01:03:08 +0200 |
commit | 72ce979f109f7fcfcb44a0fe12ea025b89b80dfc (patch) | |
tree | fbd7e958fbda545cb37e2c067e975ec9746b1115 /libavfilter/avfilter.c | |
parent | c2696dabbbc6674e31b16d4e06b81e647e907d11 (diff) | |
parent | 531158e6becb6f822280a12277b6627a47e49b6a (diff) | |
download | ffmpeg-72ce979f109f7fcfcb44a0fe12ea025b89b80dfc.tar.gz |
Merge remote-tracking branch 'mbouron/shorthand-cleanup'
* mbouron/shorthand-cleanup:
lavfi/kerndeint: switch to AVOption-based system
lavfi/il: switch to AVOption-based system
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 036949d467..490f27b817 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -680,6 +680,8 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque !strcmp(filter->filter->name, "geq" ) || !strcmp(filter->filter->name, "gradfun" ) || !strcmp(filter->filter->name, "hqdn3d" ) || + !strcmp(filter->filter->name, "il" ) || + !strcmp(filter->filter->name, "kerndeint" ) || !strcmp(filter->filter->name, "ocv" ) || !strcmp(filter->filter->name, "life" ) || !strcmp(filter->filter->name, "lut" ) || |