blob: 70fdc105953932ec9e89777651398d62acd687e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# libsplay - Makefile.am
INCLUDES = $(all_includes)
EXTRA_DIST = dct64.cpp dct64_down.cpp dct36_12.cpp \
window.cpp dct.h
noinst_LTLIBRARIES = libsplay.la
noinst_HEADERS = mpegAudioHeader.h mpegAudioStream.h \
mpegsound.h op.h \
sigsev.c dump.h \
dxHead.h mpeg2tables.h \
mpegAudioBitWindow.h huffmanlookup.h \
common.h attribute.h synthesis.h
kmpgincludedir = $(includedir)/$(THIS_LIB_NAME)/splay
kmpginclude_HEADERS = splayDecoder.h mpegAudioInfo.h \
mpegAudioFrame.h
libsplay_la_SOURCES = mpegAudioHeader.cpp mpegAudioStream.cpp \
huffmantable.cpp \
mpeglayer1.cpp \
mpeglayer2.cpp \
mpeglayer3.cpp \
mpegtable.cpp \
mpegtoraw.cpp \
dxHead.cpp \
mpegAudioBitWindow.cpp huffmanlookup.cpp \
splayDecoder.cpp \
dump.cpp synth_filter.cpp \
synthesis.cpp synth_Std.cpp synth_Down.cpp \
mpegAudioFrame.cpp \
mpegAudioInfo.cpp
#CXXFLAGS += -fno-strength-reduce
# -funroll-all-loops -finline-functions -ffast-math -m486
|