diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 00:52:39 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 01:04:45 +0200 |
commit | a689a6b698b9c6c97fb64208dc1a71b1f384eb9c (patch) | |
tree | 6617ac456c49733e59dd98d4fc2ca8b14c38f1af /libavfilter/avfilter.c | |
parent | e4bd1db88ec05ad389dd4443461ef50a6007b808 (diff) | |
download | ffmpeg-a689a6b698b9c6c97fb64208dc1a71b1f384eb9c.tar.gz |
lavfi/noise: 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 23da5292c5..5dff27adcd 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -689,6 +689,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque !strcmp(filter->filter->name, "mandelbrot" ) || !strcmp(filter->filter->name, "mptestsrc" ) || !strcmp(filter->filter->name, "negate" ) || + !strcmp(filter->filter->name, "noise" ) || !strcmp(filter->filter->name, "overlay" ) || !strcmp(filter->filter->name, "pad" ) || !strcmp(filter->filter->name, "format") || |