summaryrefslogtreecommitdiffstats
path: root/libao2/Makefile
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-03 14:17:53 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-03 14:17:53 +0000
commitfd28ff2c130b9555be4e8e87aed3b29c313647d1 (patch)
tree10cec7c8ecd755d6c24b127591d2cd1d905f0c91 /libao2/Makefile
parent9301c0157c28116d17f0a1cf58c7be5b04bea4b7 (diff)
downloadmpv-fd28ff2c130b9555be4e8e87aed3b29c313647d1.tar.bz2
mpv-fd28ff2c130b9555be4e8e87aed3b29c313647d1.tar.xz
Extrastereo plugin: increases linearly the difference between left and right
channels (as the XMMS extrastereo plugin) which has some of "live" effect (use it to hear what I mean) ex: mplayer media.avi -aop list=extrastereo[:mul=3.4] The default coefficient (mul) is a float number that defaults to 2.5. If you set it to 0.0, you will have a mono sound (average of both channels), if you set it to 1.0, you will have unchanged sound. A patch for DOCS/sound.html is about to be sent to Gabucino. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4928 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2/Makefile')
-rw-r--r--libao2/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libao2/Makefile b/libao2/Makefile
index 96d730db63..1701e6dd73 100644
--- a/libao2/Makefile
+++ b/libao2/Makefile
@@ -4,7 +4,7 @@ include config.mak
LIBNAME = libao2.a
# TODO: moveout ao_sdl.c so it's only used when SDL is detected
-SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c $(OPTIONAL_SRCS)
+SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c pl_extrastereo.c $(OPTIONAL_SRCS)
OBJS=$(SRCS:.c=.o)