Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby Bingham <uhmmmm@gmail.com>2010-03-17 06:43:14 +0300
committerBobby Bingham <uhmmmm@gmail.com>2010-03-17 06:43:14 +0300
commit3922deb5773396f14df9c7ff9e60f84bf185b945 (patch)
tree45438a183990dee9e946ba08569403cbea35bb3d /libavfilter/Makefile
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/Makefile')
-rw-r--r--libavfilter/Makefile2
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