Mercurial > SDL_sound_CoreAudio
view playsound/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 | 355129c687b7 |
children |
line wrap: on
line source
bin_PROGRAMS = playsound playsound_simple INCLUDES = -I$(top_srcdir) if USE_PHYSICSFS PHYSFS_CFLG = -DSUPPORT_PHYSFS=1 PHYSFS_LIBS = -lphysfs else PHYSFS_CFLG = PHYSFS_SRCS = PHYSFS_LIBS = endif playsound_CFLAGS = $(PHYSFS_CFLG) playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS) playsound_SOURCES = playsound.c physfsrwops.c physfsrwops.h playsound_simple_LDADD = ../libSDL_sound.la playsound_simple_SOURCES = playsound_simple.c