annotate Plugins/Input/mpg123/Makefile.in @ 1090:09eb2c83097a trunk

[svn] Psychoaccoustics support (to disable, temporarily add -UPSYCHO to your CFLAGS.): This commit brings psychoaccoustics support (as used in mp3surround decoders) to libmpgdec. For example, we can now almost fully compensate for lack of bandwidth in ISO compliant MP3 encodings. In addition, further inaccuracies with pitch and the lack of reverb feeling that some MP3s have are detected and automatically compensated for.
author nenolod
date Sat, 20 May 2006 20:36:10 -0700
parents bf06569fb0b4
children b5ae09a6c2f1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
566
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
1 include ../../../mk/rules.mk
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
2 include ../../../mk/objective.mk
61
fa848bd484d8 [svn] Move plugins to Plugins/
nenolod
parents:
diff changeset
3
566
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
4 OBJECTIVE_LIBS = libmpg123.so
61
fa848bd484d8 [svn] Move plugins to Plugins/
nenolod
parents:
diff changeset
5
592
7bbe7a94bc20 [svn] make sure mpg123 installs correctly
nenolod
parents: 571
diff changeset
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
7bbe7a94bc20 [svn] make sure mpg123 installs correctly
nenolod
parents: 571
diff changeset
7
566
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
8 SOURCES = mpg123.c configure.c fileinfo.c common.c \
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
9 decode_2to1.c decode_4to1.c \
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
10 layer1.c layer2.c layer3.c \
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
11 tabinit.c equalizer.c http.c \
1090
09eb2c83097a [svn] Psychoaccoustics support (to disable, temporarily add -UPSYCHO to your CFLAGS.):
nenolod
parents: 964
diff changeset
12 dxhead.c decode.c dct64.c psycho.c
61
fa848bd484d8 [svn] Move plugins to Plugins/
nenolod
parents:
diff changeset
13
964
bf06569fb0b4 [svn] Quick n dirty unicode hack pending taglib-1.5.
nemo
parents: 957
diff changeset
14 OBJECTS = ${SOURCES:.c=.o} tag_c_hacked.o
61
fa848bd484d8 [svn] Move plugins to Plugins/
nenolod
parents:
diff changeset
15
1090
09eb2c83097a [svn] Psychoaccoustics support (to disable, temporarily add -UPSYCHO to your CFLAGS.):
nenolod
parents: 964
diff changeset
16 CFLAGS += -DPSYCHO -fPIC -DPIC $(GTK_CFLAGS) $(TAGLIB_CFLAGS) $(ARCH_DEFINES) -I../../../intl -I../../..
566
ab7027a06ca9 [svn] convert mpg123 over... right now we don't use the "x86-optimized code", although I doubt it makes a lick of
nenolod
parents: 169
diff changeset
17
964
bf06569fb0b4 [svn] Quick n dirty unicode hack pending taglib-1.5.
nemo
parents: 957
diff changeset
18 CXXFLAGS = $(CFLAGS)
bf06569fb0b4 [svn] Quick n dirty unicode hack pending taglib-1.5.
nemo
parents: 957
diff changeset
19
bf06569fb0b4 [svn] Quick n dirty unicode hack pending taglib-1.5.
nemo
parents: 957
diff changeset
20 LIBADD = -ltag_c $(GTK_LIBS) $(TAGLIB_LIBS)