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/Makefile | |
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/Makefile')
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 904cceffd0..29857c0496 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -14,10 +14,12 @@ OBJS = allfilters.o \ graphparser.o \ parseutils.o \ +OBJS-$(CONFIG_ASPECT_FILTER) += vf_aspect.o OBJS-$(CONFIG_CROP_FILTER) += vf_crop.o OBJS-$(CONFIG_FORMAT_FILTER) += vf_format.o OBJS-$(CONFIG_NOFORMAT_FILTER) += vf_format.o OBJS-$(CONFIG_NULL_FILTER) += vf_null.o +OBJS-$(CONFIG_PIXELASPECT_FILTER) += vf_aspect.o OBJS-$(CONFIG_SCALE_FILTER) += vf_scale.o OBJS-$(CONFIG_SLICIFY_FILTER) += vf_slicify.o OBJS-$(CONFIG_VFLIP_FILTER) += vf_vflip.o |