1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
unit UAudioPlayback_SDL;
interface
{$IFDEF FPC}
{$MODE Delphi}
{$ENDIF}
{$I switches.inc}
uses
Classes,
SysUtils,
UMusic;
implementation
uses
sdl,
UAudioPlayback_SoftMixer,
ULog,
UIni,
UMain;
type
TAudioPlayback_SDL = class(TAudioPlayback_SoftMixer)
protected
function InitializeAudioPlaybackEngine(): boolean; override;
function StartAudioPlaybackEngine(): boolean; override;
procedure StopAudioPlaybackEngine(); override;
public
function GetName: String; override;
procedure MixBuffers(dst, src: PChar; size: Cardinal; volume: Integer); override;
end;
var
singleton_AudioPlaybackSDL : IAudioPlayback;
{ TAudioPlayback_SDL }
procedure SDLAudioCallback(userdata: Pointer; stream: PChar; len: integer); cdecl;
var
engine: TAudioPlayback_SDL;
begin
engine := TAudioPlayback_SDL(userdata);
engine.AudioCallback(stream, len);
end;
function TAudioPlayback_SDL.GetName: String;
begin
result := 'SDL_Playback';
end;
function TAudioPlayback_SDL.InitializeAudioPlaybackEngine(): boolean;
var
desiredAudioSpec, obtainedAudioSpec: TSDL_AudioSpec;
// err: integer; // Auto Removed, Unused Variable
begin
result := false;
SDL_InitSubSystem(SDL_INIT_AUDIO);
FillChar(desiredAudioSpec, sizeof(desiredAudioSpec), 0);
with desiredAudioSpec do
begin
freq := 44100;
format := AUDIO_S16SYS;
channels := 2;
samples := Ini.SDLBufferSize;
callback := @SDLAudioCallback;
userdata := Self;
end;
if(SDL_OpenAudio(@desiredAudioSpec, @obtainedAudioSpec) = -1) then
begin
Log.LogStatus('SDL_OpenAudio: ' + SDL_GetError(), 'UAudioPlayback_SDL');
exit;
end;
FormatInfo := TAudioFormatInfo.Create(
obtainedAudioSpec.channels,
obtainedAudioSpec.freq,
asfS16
);
Log.LogStatus('Opened audio device', 'UAudioPlayback_SDL');
result := true;
end;
function TAudioPlayback_SDL.StartAudioPlaybackEngine(): boolean;
begin
SDL_PauseAudio(0);
result := true;
end;
procedure TAudioPlayback_SDL.StopAudioPlaybackEngine();
begin
SDL_CloseAudio();
end;
procedure TAudioPlayback_SDL.MixBuffers(dst, src: PChar; size: Cardinal; volume: Integer);
begin
// Note: (volume * SDL_MIX_MAXVOLUME) may exceed High(Integer)
// if SDL_MIX_MAXVOLUME (=128 at the moment) changes
SDL_MixAudio(PUInt8(dst), PUInt8(src), size, volume * SDL_MIX_MAXVOLUME div 100);
end;
initialization
singleton_AudioPlaybackSDL := TAudioPlayback_SDL.create();
AudioManager.add( singleton_AudioPlaybackSDL );
finalization
AudioManager.Remove( singleton_AudioPlaybackSDL );
end.
|