Skip to content

Commit 3b33aaf

Browse files
committed
Removed /dev/dsp DMA audio target.
1 parent 59ed95b commit 3b33aaf

File tree

8 files changed

+4
-603
lines changed

8 files changed

+4
-603
lines changed

Makefile.pandora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TARGET = libSDL.a
1515
SOURCES = ./src/*.c ./src/audio/*.c ./src/cpuinfo/*.c ./src/events/*.c \
1616
./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \
1717
./src/joystick/*.c ./src/haptic/*.c ./src/power/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \
18-
./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c ./src/audio/dma/*.c \
18+
./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \
1919
./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \
2020
./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \
2121
./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c \

Makefile.wiz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ TARGET_SHARED = libSDL13.so
1515
SOURCES = ./src/*.c ./src/audio/*.c ./src/cdrom/*.c ./src/cpuinfo/*.c ./src/events/*.c \
1616
./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \
1717
./src/joystick/*.c ./src/haptic/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \
18-
./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c ./src/audio/dma/*.c \
18+
./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \
1919
./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \
2020
./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \
2121
./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c ./src/cdrom/dummy/*.c \

configure.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,6 @@ AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
682682
if test x$have_oss = xyes; then
683683
AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ])
684684
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
685-
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
686685
have_audio=yes
687686

688687
# We may need to link with ossaudio emulation library

src/audio/SDL_audio.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ static SDL_AudioDevice *open_devices[16];
4545
*/
4646
extern AudioBootStrap BSD_AUDIO_bootstrap;
4747
extern AudioBootStrap DSP_bootstrap;
48-
extern AudioBootStrap DMA_bootstrap;
4948
extern AudioBootStrap ALSA_bootstrap;
5049
extern AudioBootStrap PULSEAUDIO_bootstrap;
5150
extern AudioBootStrap QSAAUDIO_bootstrap;
@@ -82,7 +81,6 @@ static const AudioBootStrap *const bootstrap[] = {
8281
#endif
8382
#if SDL_AUDIO_DRIVER_OSS
8483
&DSP_bootstrap,
85-
&DMA_bootstrap,
8684
#endif
8785
#if SDL_AUDIO_DRIVER_QSA
8886
&QSAAUDIO_bootstrap,

src/audio/bsd/SDL_bsdaudio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
#define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK)
6868
#endif
6969

70-
/* !!! FIXME: so much cut and paste with dsp/dma drivers... */
70+
/* !!! FIXME: so much cut and paste with dsp target... */
7171
static char **outputDevices = NULL;
7272
static int outputDeviceCount = 0;
7373
static char **inputDevices = NULL;

0 commit comments

Comments
 (0)