diff options
author | Bobby Bingham <uhmmmm@gmail.com> | 2010-03-17 03:43:14 +0000 |
---|---|---|
committer | Bobby Bingham <uhmmmm@gmail.com> | 2010-03-17 03:43:14 +0000 |
commit | 3922deb5773396f14df9c7ff9e60f84bf185b945 (patch) | |
tree | 45438a183990dee9e946ba08569403cbea35bb3d /libavfilter/allfilters.c | |
parent | 68f0bc7e62c27909c175d0796c7eee97011cd6fa (diff) | |
download | ffmpeg-3922deb5773396f14df9c7ff9e60f84bf185b945.tar.gz |
Add video filter to manipulate aspect ratio
Originally committed as revision 22573 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 4be7642da9..899f38d591 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -34,15 +34,17 @@ void avfilter_register_all(void) return; initialized = 1; + REGISTER_FILTER (ASPECT, aspect, vf); REGISTER_FILTER (CROP, crop, vf); REGISTER_FILTER (FORMAT, format, vf); REGISTER_FILTER (NOFORMAT, noformat, vf); REGISTER_FILTER (NULL, null, vf); + REGISTER_FILTER (PIXELASPECT, pixelaspect, vf); REGISTER_FILTER (SCALE, scale, vf); REGISTER_FILTER (SLICIFY, slicify, vf); REGISTER_FILTER (VFLIP, vflip, vf); REGISTER_FILTER (NULLSRC, nullsrc, vsrc); - REGISTER_FILTER(NULLSINK, nullsink, vsink); + REGISTER_FILTER (NULLSINK, nullsink, vsink); } |