diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-03-11 03:05:42 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-03-17 11:21:49 +0100 |
commit | 3225bc37a361c1c02effebf4c981c837d8468a70 (patch) | |
tree | 35d86d4e3a09969463bf97a72702969c2267aacf /libavfilter/allfilters.c | |
parent | 32a5775a9192ed9d88d50ed2ff602d3ef4e98c84 (diff) | |
download | ffmpeg-3225bc37a361c1c02effebf4c981c837d8468a70.tar.gz |
lavfi: add bbox filter
Also add bbox.h and bbox.c files, based on the remove-logo filter by
Robert Edele. These files are useful for sharing code with the pending
removelogo port.
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 f0a7f8b8c3..6972271666 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -56,6 +56,7 @@ void avfilter_register_all(void) REGISTER_FILTER (ANULLSINK, anullsink, asink); REGISTER_FILTER (ASS, ass, vf); + REGISTER_FILTER (BBOX, bbox, vf); REGISTER_FILTER (BLACKDETECT, blackdetect, vf); REGISTER_FILTER (BLACKFRAME, blackframe, vf); REGISTER_FILTER (BOXBLUR, boxblur, vf); |