diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 10:32:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 10:35:45 +0200 |
commit | 3c821e7550866129ad19d4bba0f84dc4648ceb5a (patch) | |
tree | fb98654e1ff6b8656d592db66dcd052d6a6c7f43 /libavfilter/avfilter.c | |
parent | 9470b541e5c4c4131723df09b0f7fb248b7ee1b9 (diff) | |
download | ffmpeg-3c821e7550866129ad19d4bba0f84dc4648ceb5a.tar.gz |
af_pan: switch to an AVOptions-based shorthand system.
TODO: The first argument can be seperated into its own AVOption
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index cf0aefe3a4..6c76c89ab3 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -686,7 +686,6 @@ static const char *const filters_left_to_update[] = { #if FF_API_ACONVERT_FILTER "aconvert", #endif - "pan", }; static int filter_use_deprecated_init(const char *name) @@ -772,6 +771,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque !strcmp(filter->filter->name, "frei0r") || !strcmp(filter->filter->name, "frei0r_src") || !strcmp(filter->filter->name, "ocv") || + !strcmp(filter->filter->name, "pan") || !strcmp(filter->filter->name, "pp") || !strcmp(filter->filter->name, "aevalsrc")) { /* a hack for compatibility with the old syntax |