summaryrefslogtreecommitdiffstats
path: root/polyp/polyp.h
blob: 60cf872a95db3245b8fef9403914692f2ad1b2da (plain)
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
/*
 * ALSA <-> Polypaudio plugins
 *
 * Copyright (c) 2006 by Pierre Ossman <ossman@cendio.se>
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#include <alsa/asoundlib.h>

#include <polyp/polypaudio.h>
#include <polyp/mainloop.h>

#define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))

typedef struct snd_polyp {
    pa_mainloop *mainloop;
    pa_context *context;

    int thread_fd, main_fd;

    pthread_t thread;
    int thread_running;

    enum {
        POLYP_STATE_INIT,
        POLYP_STATE_CONNECTED,
        POLYP_STATE_READY,
        POLYP_STATE_POLLING,
    } state;
} snd_polyp_t;

int polyp_start_poll(snd_polyp_t *p);
int polyp_finish_poll(snd_polyp_t *p);

int polyp_check_connection(snd_polyp_t *p);

int polyp_wait_operation(snd_polyp_t *p, pa_operation *o);

snd_polyp_t *polyp_new();
void polyp_free(snd_polyp_t *p);

int polyp_connect(snd_polyp_t *p, const char *server);
int polyp_start_thread(snd_polyp_t *p);

int polyp_poll_descriptors_count(snd_polyp_t *p);
int polyp_poll_descriptors(snd_polyp_t *p, struct pollfd *pfd, unsigned int space);
int polyp_poll_revents(snd_polyp_t *p, struct pollfd *pfd, unsigned int nfds, unsigned short *revents);