diff options
author | Bobby Bingham <uhmmmm@gmail.com> | 2010-04-07 01:05:24 +0000 |
---|---|---|
committer | Bobby Bingham <uhmmmm@gmail.com> | 2010-04-07 01:05:24 +0000 |
commit | e0728d799151d24b58f4a824bc97014b3b2473a4 (patch) | |
tree | 7d5820f84390b68b1a733011dbb3020d9068ee0c /libavfilter/allfilters.c | |
parent | b9bd6589d782681fe1f077058075a23636087a9a (diff) | |
download | ffmpeg-e0728d799151d24b58f4a824bc97014b3b2473a4.tar.gz |
Add unsharp video filter.
Contributed by Daniel G. Taylor (dan/at/programmer-art/dot/org)
Originally committed as revision 22813 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 fccd1f5154..75d42cc026 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -42,6 +42,7 @@ void avfilter_register_all(void) REGISTER_FILTER (PIXELASPECT, pixelaspect, vf); REGISTER_FILTER (SCALE, scale, vf); REGISTER_FILTER (SLICIFY, slicify, vf); + REGISTER_FILTER (UNSHARP, unsharp, vf); REGISTER_FILTER (VFLIP, vflip, vf); REGISTER_FILTER (NULLSRC, nullsrc, vsrc); |