diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2014-06-05 11:42:38 +0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-05 14:04:01 +0200 |
commit | 40e938a7edf44d395a216f2b0ad813e305e95466 (patch) | |
tree | 2e13a0c702c1e05b646160252a26526587db8a84 /libavfilter/allfilters.c | |
parent | da53de07306a301830b234a38bc103c6af9ded7c (diff) | |
download | ffmpeg-40e938a7edf44d395a216f2b0ad813e305e95466.tar.gz |
avfilter: new multimedia filter avf_showcqt.c
this filter is the same as showspectrum but with constant Q transform,
so frequency is spaced logarithmically
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 22d643d3e1..55d505adbf 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -231,6 +231,7 @@ void avfilter_register_all(void) /* multimedia filters */ REGISTER_FILTER(AVECTORSCOPE, avectorscope, avf); REGISTER_FILTER(CONCAT, concat, avf); + REGISTER_FILTER(SHOWCQT, showcqt, avf); REGISTER_FILTER(SHOWSPECTRUM, showspectrum, avf); REGISTER_FILTER(SHOWWAVES, showwaves, avf); |