8acb1bd8771663e7066d422d05af94e86d11fc3e
[src/app-framework-binder.git] / plugins / audio / audio-api.h
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Manuel Bachmann"
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 #ifndef AUDIO_API_H
20 #define AUDIO_API_H
21
22 #include "audio-alsa.h"
23
24 /* global plugin handle, should store everything we may need */
25 typedef struct {
26   int devCount;
27 } pluginHandleT;
28   
29 /* structure holding one audio card with current usage status */
30 typedef struct {
31    char *name;
32    void *handle;           /* handle to implementation (ALSA, PulseAudio...) */
33  } audioDevT;
34
35 /* private client context [will be destroyed when client leaves] */
36 typedef struct {
37   audioDevT *radio;        /* pointer to client audio card          */
38   int idx;                 /* audio card index within global array  */
39   unsigned int volume;     /* audio volume : 0-100                  */
40   unsigned int channels;   /* audio channels : 1(mono)/2(stereo)... */
41   unsigned char mute;      /* audio muted : 0(false)/1(true)        */
42 } audioCtxHandleT;
43
44
45 #endif /* AUDIO_API_H */