chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/disorder
[disorder] / lib / uaudio-apis.c
CommitLineData
efd23a80
RK
1/*
2 * This file is part of DisOrder.
de0ef46e 3 * Copyright (C) 2009, 2013 Richard Kettlewell
efd23a80
RK
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/** @file lib/uaudio-apis.c
20 * @brief Audio API list
21 */
22
23#include "common.h"
24#include "uaudio.h"
b50cfb8a 25#include "log.h"
efd23a80
RK
26
27/** @brief List of known APIs
28 *
29 * Terminated by a null pointer.
30 *
31 * The first one will be used as a default, so putting ALSA before OSS
32 * constitutes a policy decision.
33 */
b50cfb8a 34const struct uaudio *const uaudio_apis[] = {
efd23a80
RK
35#if HAVE_COREAUDIO_AUDIOHARDWARE_H
36 &uaudio_coreaudio,
37#endif
de0ef46e
RK
38#if HAVE_PULSEAUDIO
39 &uaudio_pulseaudio,
40#endif
efd23a80
RK
41#if HAVE_ALSA_ASOUNDLIB_H
42 &uaudio_alsa,
43#endif
44#if HAVE_SYS_SOUNDCARD_H || EMPEG_HOST
45 &uaudio_oss,
46#endif
47 &uaudio_rtp,
48 &uaudio_command,
49 NULL,
50};
51
b50cfb8a
RK
52/** @brief Look up an audio API by name */
53const struct uaudio *uaudio_find(const char *name) {
54 int n;
55
56 for(n = 0; uaudio_apis[n]; ++n)
57 if(!strcmp(uaudio_apis[n]->name, name))
58 return uaudio_apis[n];
59 if(!strcmp(name, "network"))
60 return &uaudio_rtp;
2e9ba080 61 disorder_fatal(0, "cannot find audio API '%s'", name);
b50cfb8a
RK
62}
63
efd23a80
RK
64/*
65Local Variables:
66c-basic-offset:2
67comment-column:40
68fill-column:79
69indent-tabs-mode:nil
70End:
71*/