aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/Makefile
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-07-04 11:35:39 +0300
committerStefano Sabatini <stefasab@gmail.com>2011-09-16 20:44:27 +0200
commit37cc443c83589b172a0cbc807e05059e3ce4582b (patch)
treed32466e2882c7b6e466ea0a61bbc4ddd646adcf3 /libavfilter/Makefile
parent553c5e9f234d062d921a4150b64ffd9b19c05135 (diff)
downloadffmpeg-37cc443c83589b172a0cbc807e05059e3ce4582b.tar.gz
lavfi: add audio convert filter
Add aconvert filter to perform sample format, channel layout, and packing format conversion. The aconvert code depends on audio conversion code in libavcodec, so this requires a dependency on libavcodec. Based on previous work by S.N. Hemanth Meenakshisundaram and Mina Nagy Zaki, performed for the GSoC 2010 and 2011.
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r--libavfilter/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 9ea5c4c23d..f1f04068bb 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -2,6 +2,8 @@ include $(SUBDIR)../config.mak
NAME = avfilter
FFLIBS = avutil
+
+FFLIBS-$(CONFIG_ACONVERT_FILTER) += avcodec
FFLIBS-$(CONFIG_AMOVIE_FILTER) += avformat avcodec
FFLIBS-$(CONFIG_ARESAMPLE_FILTER) += avcodec
FFLIBS-$(CONFIG_MOVIE_FILTER) += avformat avcodec
@@ -20,6 +22,7 @@ OBJS = allfilters.o \
OBJS-$(CONFIG_AVCODEC) += avcodec.o
+OBJS-$(CONFIG_ACONVERT_FILTER) += af_aconvert.o
OBJS-$(CONFIG_AFORMAT_FILTER) += af_aformat.o
OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o
OBJS-$(CONFIG_ARESAMPLE_FILTER) += af_aresample.o