diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 01:10:40 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:51:47 +0200 |
commit | 35a27402ade928d78f8b7a89c8b4e8bf8b473215 (patch) | |
tree | 81a21fdb7c0a09937ade50ee9d2d0f102b877ffd /libavfilter/avfilter.c | |
parent | 944ad46182483ff52573ec3c827c86058b225d16 (diff) | |
download | ffmpeg-35a27402ade928d78f8b7a89c8b4e8bf8b473215.tar.gz |
lavfi/concat: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index e958923ff2..659aeddcf9 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -697,6 +697,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque !strcmp(filter->filter->name, "channelsplit") || !strcmp(filter->filter->name, "color" ) || !strcmp(filter->filter->name, "colormatrix") || + !strcmp(filter->filter->name, "concat" ) || !strcmp(filter->filter->name, "crop" ) || !strcmp(filter->filter->name, "cropdetect") || !strcmp(filter->filter->name, "curves" ) || |