diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 18:23:18 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 22:13:45 +0200 |
commit | 9ab221f8d82da9e2cf1503cc5db115838d766d97 (patch) | |
tree | b89af13934dd99ea11076d5dffc6b717c5599263 /libavfilter/allfilters.c | |
parent | 71ef1ec7b482d7222717faae0a51f2fd4ef3bdf2 (diff) | |
download | ffmpeg-9ab221f8d82da9e2cf1503cc5db115838d766d97.tar.gz |
lavfi: deprecate aconvert.
This filter is not required anymore with aformat. Drop it at next bump.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 721db2ecb2..4c8f2b4a59 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -45,7 +45,9 @@ void avfilter_register_all(void) return; initialized = 1; +#if FF_API_ACONVERT_FILTER REGISTER_FILTER(ACONVERT, aconvert, af); +#endif REGISTER_FILTER(AFADE, afade, af); REGISTER_FILTER(AFORMAT, aformat, af); REGISTER_FILTER(ALLPASS, allpass, af); |