annotate decoders/Makefile.am @ 562:7e08477b0fc1

MP3 decoder upgrade work. Ripped out SMPEG and mpglib support, replaced it with "mpg123.c" and libmpg123. libmpg123 is a much better version of mpglib, so it should solve all the problems about MP3's not seeking, or most modern MP3's not playing at all, etc. Since you no longer have to make a tradeoff with SMPEG for features, and SMPEG is basically rotting, I removed it from the project. There is still work to be done with libmpg123...there are MMX, 3DNow, SSE, Altivec, etc decoders which we don't have enabled at the moment, and the build system could use some work to make this compile more cleanly, etc. Still: huge win.
author Ryan C. Gordon <icculus@icculus.org>
date Fri, 30 Jan 2009 02:44:47 -0500
parents 636796aed4e2
children 05a7b1d35ba9
rev   line source
71
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
1 noinst_LTLIBRARIES = libdecoders.la
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2
562
7e08477b0fc1 MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents: 465
diff changeset
3 SUBDIRS = timidity libmpg123
201
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 157
diff changeset
4
240
ff6e66f54ece fixed decoders/Makefile.am
fingolfin
parents: 216
diff changeset
5 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/decoders/timidity
71
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
6
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
7 libdecoders_la_SOURCES = \
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
8 aiff.c \
216
07d0939d40e7 Support for .AU files added.
Ryan C. Gordon <icculus@icculus.org>
parents: 209
diff changeset
9 au.c \
209
e63b9393f6ce Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents: 201
diff changeset
10 mikmod.c \
e63b9393f6ce Added ModPlug support.
Ryan C. Gordon <icculus@icculus.org>
parents: 201
diff changeset
11 modplug.c \
562
7e08477b0fc1 MP3 decoder upgrade work.
Ryan C. Gordon <icculus@icculus.org>
parents: 465
diff changeset
12 mpg123.c \
71
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
13 ogg.c \
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
14 raw.c \
201
56bc776f0563 Midi support.
Ryan C. Gordon <icculus@icculus.org>
parents: 157
diff changeset
15 shn.c \
71
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
16 voc.c \
110
5e5adbe0f215 Added Midi decoder.
Ryan C. Gordon <icculus@icculus.org>
parents: 90
diff changeset
17 midi.c \
157
fa3e593b6a5e FLAC decoder added.
Ryan C. Gordon <icculus@icculus.org>
parents: 110
diff changeset
18 flac.c \
450
6d328f00c20d Added Speex decoder.
Ryan C. Gordon <icculus@icculus.org>
parents: 262
diff changeset
19 speex.c \
465
636796aed4e2 Build/packaging fixes.
Ryan C. Gordon <icculus@icculus.org>
parents: 450
diff changeset
20 quicktime.c \
71
8ed194d014b4 Initial add.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
21 wav.c