summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-02-12 18:02:35 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-02-13 17:45:29 -0800
commit1dcf511376545de7624863b76d7f30dc3bb44ac9 (patch)
tree565566201e57bd0979925a11449a33e73fa767c8 /audio
parent02f9087de9103784a236f50d4b0990069ae9cf1e (diff)
downloadmpv-1dcf511376545de7624863b76d7f30dc3bb44ac9.tar.bz2
mpv-1dcf511376545de7624863b76d7f30dc3bb44ac9.tar.xz
build: drop support for SDL1
For some reason it was supported for ao_sdl because we've only used SDL1 API.
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao.c b/audio/out/ao.c
index 0acd439033..5834345d59 100644
--- a/audio/out/ao.c
+++ b/audio/out/ao.c
@@ -82,7 +82,7 @@ static const struct ao_driver * const audio_out_drivers[] = {
#if HAVE_OPENSLES
&audio_out_opensles,
#endif
-#if HAVE_SDL1 || HAVE_SDL2
+#if HAVE_SDL2
&audio_out_sdl,
#endif
#if HAVE_SNDIO