diff options
author | Clément Bœsch <clement@stupeflix.com> | 2016-02-29 12:19:55 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2016-03-01 10:36:15 +0100 |
commit | 090621d7cece368d31f0d11baf477fc7fc007cac (patch) | |
tree | 28fc527244481ac6f7bd1fc8c7a2889229a9ca8e /libavfilter/allfilters.c | |
parent | 1c7e2cf9d33968375ee4025d2279c937e147dae2 (diff) | |
download | ffmpeg-090621d7cece368d31f0d11baf477fc7fc007cac.tar.gz |
lavfi: add bench and abench filters
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 e44a9d5c68..d6145d66d4 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -45,6 +45,7 @@ void avfilter_register_all(void) return; initialized = 1; + REGISTER_FILTER(ABENCH, abench, af); REGISTER_FILTER(ACOMPRESSOR, acompressor, af); REGISTER_FILTER(ACROSSFADE, acrossfade, af); REGISTER_FILTER(ADELAY, adelay, af); @@ -136,6 +137,7 @@ void avfilter_register_all(void) REGISTER_FILTER(ALPHAMERGE, alphamerge, vf); REGISTER_FILTER(ATADENOISE, atadenoise, vf); REGISTER_FILTER(ASS, ass, vf); + REGISTER_FILTER(BENCH, bench, vf); REGISTER_FILTER(BBOX, bbox, vf); REGISTER_FILTER(BLACKDETECT, blackdetect, vf); REGISTER_FILTER(BLACKFRAME, blackframe, vf); |