Add an example program showing how to apply reverb to a source
[openal-soft.git] / Alc / backends / loopback.c
blobe1bdd3c12eb06a59b2f1a78fa7831e40949d4d83
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 2011 by Chris Robinson
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., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #include "config.h"
23 #include <stdlib.h>
25 #include "alMain.h"
26 #include "alu.h"
29 static ALCenum loopback_open_playback(ALCdevice *device, const ALCchar *deviceName)
31 device->DeviceName = strdup(deviceName);
32 return ALC_NO_ERROR;
35 static void loopback_close_playback(ALCdevice *device)
37 (void)device;
40 static ALCboolean loopback_reset_playback(ALCdevice *device)
42 SetDefaultWFXChannelOrder(device);
43 return ALC_TRUE;
46 static ALCboolean loopback_start_playback(ALCdevice *device)
48 return ALC_TRUE;
49 (void)device;
52 static void loopback_stop_playback(ALCdevice *device)
54 (void)device;
58 static const BackendFuncs loopback_funcs = {
59 loopback_open_playback,
60 loopback_close_playback,
61 loopback_reset_playback,
62 loopback_start_playback,
63 loopback_stop_playback,
64 NULL,
65 NULL,
66 NULL,
67 NULL,
68 NULL,
69 NULL,
70 ALCdevice_LockDefault,
71 ALCdevice_UnlockDefault,
72 ALCdevice_GetLatencyDefault
75 ALCboolean alc_loopback_init(BackendFuncs *func_list)
77 *func_list = loopback_funcs;
78 return ALC_TRUE;
81 void alc_loopback_deinit(void)
85 void alc_loopback_probe(enum DevProbe type)
87 (void)type;