0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/libaf/Makefile
ulion 66abcc42af Add new audio filter for encoding multi-channel audio into ac3 at runtime.
And if set first parameter of this filter to 1, it will do ac3 passthrough
like hwac3 did.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25385 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-12-13 12:38:17 +00:00

38 lines
988 B
Makefile

include ../config.mak
LIBNAME_COMMON = libaf.a
SRCS_COMMON = af.c \
af_center.c \
af_channels.c \
af_comp.c \
af_delay.c \
af_dummy.c \
af_equalizer.c \
af_extrastereo.c \
af_format.c \
af_gate.c \
af_hrtf.c \
af_karaoke.c \
af_pan.c \
af_resample.c \
af_scaletempo.c \
af_sinesuppress.c \
af_sub.c \
af_surround.c \
af_sweep.c \
af_tools.c \
af_volnorm.c \
af_volume.c \
filter.c \
format.c \
reorder_ch.c \
window.c \
$(AF_SRCS) \
SRCS_COMMON-$(HAVE_SYS_MMAN_H) += af_export.c
SRCS_COMMON-$(LIBAVCODEC) += af_lavcresample.c
SRCS_COMMON-$(LIBAVCODEC_A) += af_lavcac3enc.c
include ../mpcommon.mak