annotate decoders/timidity/Makefile.am @ 591:8faf61a640f0 tip

Resynced fixes for unit conversion bugs in the Ogg Tremor decoder from SoundDecoder/ALmixer. Ogg Vorbis uses seconds and we multiply by 1000 to convert to milliseconds. But Ogg Tremor already uses milliseconds but I was still multiplying by 1000.
author Eric Wing <ewing . public |-at-| gmail . com>
date Thu, 25 Oct 2012 16:34:18 -0700
parents a0297d442b6a
children
rev   line source
503
a0297d442b6a From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 455
diff changeset
1 if USE_TIMIDITY
199
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2 noinst_LTLIBRARIES = libtimidity.la
503
a0297d442b6a From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 455
diff changeset
3 endif
199
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
4
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
5 INCLUDES = -I$(top_srcdir)
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
6
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
7 libtimidity_la_SOURCES = \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
8 common.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
9 common.h \
455
cbc2a4ffeeec * Added support for loading DLS format instruments:
hercules
parents: 199
diff changeset
10 dls1.h \
cbc2a4ffeeec * Added support for loading DLS format instruments:
hercules
parents: 199
diff changeset
11 dls2.h \
199
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
12 instrum.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
13 instrum.h \
455
cbc2a4ffeeec * Added support for loading DLS format instruments:
hercules
parents: 199
diff changeset
14 instrum_dls.c \
cbc2a4ffeeec * Added support for loading DLS format instruments:
hercules
parents: 199
diff changeset
15 instrum_dls.h \
199
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
16 mix.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
17 mix.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
18 options.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
19 output.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
20 output.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
21 playmidi.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
22 playmidi.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
23 readmidi.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
24 readmidi.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
25 resample.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
26 resample.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
27 tables.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
28 tables.h \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
29 timidity.c \
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
30 timidity.h
2d887640d300 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
31
503
a0297d442b6a From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 455
diff changeset
32 EXTRA_DIST = CHANGES COPYING FAQ README TODO Makefile.testmidi testmidi.c
a0297d442b6a From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents: 455
diff changeset
33