diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-21 20:57:30 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-10-21 20:57:30 +0000 |
commit | 190c166960b88f1b27932e1f274dd494862e8449 (patch) | |
tree | 53f8afd16ea216e451a4635ede5af84e4b2040c7 /libavfilter/allfilters.c | |
parent | 9abba21ad3474ff5c49dd5cf17facc8330386a95 (diff) | |
download | ffmpeg-190c166960b88f1b27932e1f274dd494862e8449.tar.gz |
Add video crop filter.
Originally committed as revision 20342 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 f8188852bb..1104f610a8 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -34,5 +34,6 @@ void avfilter_register_all(void) return; initialized = 1; + REGISTER_FILTER (CROP,crop,vf); REGISTER_FILTER (NULL,null,vf); } |