summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorBobby Bingham <uhmmmm@gmail.com>2010-03-17 03:43:14 +0000
committerBobby Bingham <uhmmmm@gmail.com>2010-03-17 03:43:14 +0000
commit3922deb5773396f14df9c7ff9e60f84bf185b945 (patch)
tree45438a183990dee9e946ba08569403cbea35bb3d /libavfilter/allfilters.c
parent68f0bc7e62c27909c175d0796c7eee97011cd6fa (diff)
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.c4
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);
}