Mercurial > mplayer.hg
view Gui/Makefile @ 4927:3022570ad7d4
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.
author | pl |
---|---|
date | Sun, 03 Mar 2002 14:17:53 +0000 |
parents | 3997f8eec36e |
children | 5d543521dd06 |
line wrap: on
line source
LIB = libgui.a include ../config.mak include config.mak include bitmap/bitmap.mak MPLAYERDIR = mplayer/ include gui.mak INCDIR = -I. -I./event -I./wm -I./skin $(GTKINC) $(EXTRA_INC) OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \ -fexpensive-optimizations -fschedule-insns2 -Wall ifeq ($(TARGET_ARCH_X86),yes) OPTIMIZE += -malign-double endif CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG) .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< ### TARGETS ### $(LIB): .depend $(OBJS) $(MAKE) -C mplayer rm -f $(LIB) ar rc $(LIB) $(OBJS) $(MPLAYEROBJS) all: $(LIB) clean: $(MAKE) -C mplayer clean rm -rf $(OBJS) *.o *~ *.bak main $(PRG) $(LIB) .depend #dep: depend # #depend: # makedepend -- $(CFLAGS) -- $(SRCS) &>/dev/null # distclean: clean dep: depend depend: .depend .depend: Makefile config.mak gui.mak bitmap/bitmap.mak $(MAKE) -C mplayer depend $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif