2 * OpenAL cross platform audio library
3 * Copyright (C) 2018 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
31 #include "alnumeric.h"
32 #include "core/device.h"
33 #include "core/logging.h"
35 _Pragma("GCC diagnostic push")
36 _Pragma("GCC diagnostic ignored \"-Wold-style-cast\"")
38 _Pragma("GCC diagnostic pop")
44 #define DEVNAME_PREFIX "OpenAL Soft on "
46 #define DEVNAME_PREFIX ""
49 constexpr char defaultDeviceName
[] = DEVNAME_PREFIX
"Default Device";
51 struct Sdl2Backend final
: public BackendBase
{
52 Sdl2Backend(DeviceBase
*device
) noexcept
: BackendBase
{device
} { }
53 ~Sdl2Backend() override
;
55 void audioCallback(Uint8
*stream
, int len
) noexcept
;
56 static void audioCallbackC(void *ptr
, Uint8
*stream
, int len
) noexcept
57 { static_cast<Sdl2Backend
*>(ptr
)->audioCallback(stream
, len
); }
59 void open(const char *name
) override
;
60 bool reset() override
;
61 void start() override
;
64 SDL_AudioDeviceID mDeviceID
{0u};
68 DevFmtChannels mFmtChans
{};
69 DevFmtType mFmtType
{};
72 DEF_NEWDEL(Sdl2Backend
)
75 Sdl2Backend::~Sdl2Backend()
78 SDL_CloseAudioDevice(mDeviceID
);
82 void Sdl2Backend::audioCallback(Uint8
*stream
, int len
) noexcept
84 const auto ulen
= static_cast<unsigned int>(len
);
85 assert((ulen
% mFrameSize
) == 0);
86 mDevice
->renderSamples(stream
, ulen
/ mFrameSize
, mDevice
->channelsFromFmt());
89 void Sdl2Backend::open(const char *name
)
91 SDL_AudioSpec want
{}, have
{};
93 want
.freq
= static_cast<int>(mDevice
->Frequency
);
94 switch(mDevice
->FmtType
)
96 case DevFmtUByte
: want
.format
= AUDIO_U8
; break;
97 case DevFmtByte
: want
.format
= AUDIO_S8
; break;
98 case DevFmtUShort
: want
.format
= AUDIO_U16SYS
; break;
99 case DevFmtShort
: want
.format
= AUDIO_S16SYS
; break;
100 case DevFmtUInt
: /* fall-through */
101 case DevFmtInt
: want
.format
= AUDIO_S32SYS
; break;
102 case DevFmtFloat
: want
.format
= AUDIO_F32
; break;
104 want
.channels
= (mDevice
->FmtChans
== DevFmtMono
) ? 1 : 2;
105 want
.samples
= static_cast<Uint16
>(minu(mDevice
->UpdateSize
, 8192));
106 want
.callback
= &Sdl2Backend::audioCallbackC
;
107 want
.userdata
= this;
109 /* Passing nullptr to SDL_OpenAudioDevice opens a default, which isn't
110 * necessarily the first in the list.
112 SDL_AudioDeviceID devid
;
113 if(!name
|| strcmp(name
, defaultDeviceName
) == 0)
114 devid
= SDL_OpenAudioDevice(nullptr, SDL_FALSE
, &want
, &have
, SDL_AUDIO_ALLOW_ANY_CHANGE
);
117 const size_t prefix_len
= strlen(DEVNAME_PREFIX
);
118 if(strncmp(name
, DEVNAME_PREFIX
, prefix_len
) == 0)
119 devid
= SDL_OpenAudioDevice(name
+prefix_len
, SDL_FALSE
, &want
, &have
,
120 SDL_AUDIO_ALLOW_ANY_CHANGE
);
122 devid
= SDL_OpenAudioDevice(name
, SDL_FALSE
, &want
, &have
, SDL_AUDIO_ALLOW_ANY_CHANGE
);
125 throw al::backend_exception
{al::backend_error::NoDevice
, "%s", SDL_GetError()};
127 DevFmtChannels devchans
{};
128 if(have
.channels
>= 2)
129 devchans
= DevFmtStereo
;
130 else if(have
.channels
== 1)
131 devchans
= DevFmtMono
;
134 SDL_CloseAudioDevice(devid
);
135 throw al::backend_exception
{al::backend_error::DeviceError
,
136 "Unhandled SDL channel count: %d", int{have
.channels
}};
139 DevFmtType devtype
{};
142 case AUDIO_U8
: devtype
= DevFmtUByte
; break;
143 case AUDIO_S8
: devtype
= DevFmtByte
; break;
144 case AUDIO_U16SYS
: devtype
= DevFmtUShort
; break;
145 case AUDIO_S16SYS
: devtype
= DevFmtShort
; break;
146 case AUDIO_S32SYS
: devtype
= DevFmtInt
; break;
147 case AUDIO_F32SYS
: devtype
= DevFmtFloat
; break;
149 SDL_CloseAudioDevice(devid
);
150 throw al::backend_exception
{al::backend_error::DeviceError
, "Unhandled SDL format: 0x%04x",
155 SDL_CloseAudioDevice(mDeviceID
);
158 mFrameSize
= BytesFromDevFmt(devtype
) * have
.channels
;
159 mFrequency
= static_cast<uint
>(have
.freq
);
160 mFmtChans
= devchans
;
162 mUpdateSize
= have
.samples
;
164 mDevice
->DeviceName
= name
? name
: defaultDeviceName
;
167 bool Sdl2Backend::reset()
169 mDevice
->Frequency
= mFrequency
;
170 mDevice
->FmtChans
= mFmtChans
;
171 mDevice
->FmtType
= mFmtType
;
172 mDevice
->UpdateSize
= mUpdateSize
;
173 mDevice
->BufferSize
= mUpdateSize
* 2; /* SDL always (tries to) use two periods. */
174 setDefaultWFXChannelOrder();
178 void Sdl2Backend::start()
179 { SDL_PauseAudioDevice(mDeviceID
, 0); }
181 void Sdl2Backend::stop()
182 { SDL_PauseAudioDevice(mDeviceID
, 1); }
186 BackendFactory
&SDL2BackendFactory::getFactory()
188 static SDL2BackendFactory factory
{};
192 bool SDL2BackendFactory::init()
193 { return (SDL_InitSubSystem(SDL_INIT_AUDIO
) == 0); }
195 bool SDL2BackendFactory::querySupport(BackendType type
)
196 { return type
== BackendType::Playback
; }
198 std::string
SDL2BackendFactory::probe(BackendType type
)
200 std::string outnames
;
202 if(type
!= BackendType::Playback
)
205 int num_devices
{SDL_GetNumAudioDevices(SDL_FALSE
)};
207 /* Includes null char. */
208 outnames
.append(defaultDeviceName
, sizeof(defaultDeviceName
));
209 for(int i
{0};i
< num_devices
;++i
)
211 std::string name
{DEVNAME_PREFIX
};
212 name
+= SDL_GetAudioDeviceName(i
, SDL_FALSE
);
214 outnames
.append(name
.c_str(), name
.length()+1);
219 BackendPtr
SDL2BackendFactory::createBackend(DeviceBase
*device
, BackendType type
)
221 if(type
== BackendType::Playback
)
222 return BackendPtr
{new Sdl2Backend
{device
}};