blob: 2ea1203c7c5b9b1bb96929de2689c05f546ab8a5 (
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
|
#ifndef _CMUMBLE_H_
#define _CMUMBLE_H_
#include <glib.h>
#include <glib-object.h>
#include <gio/gio.h>
#include "mumble.pb-c.h"
#include "message.h"
#include "io.h"
#include "connection.h"
#include "audio.h"
typedef void (*callback_t)(ProtobufCMessage *msg, struct context *);
struct context {
struct cmumble_connection con;
struct cmumble_io io;
struct cmumble_audio audio;
const callback_t *callbacks;
GMainLoop *loop;
uint32_t session;
gboolean authenticated;
int64_t sequence;
GList *users;
};
struct user {
uint32_t session;
char *name;
uint32_t user_id;
GstElement *pipeline;
GstAppSrc *src;
};
enum udp_message_type {
udp_voice_celt_alpha,
udp_ping,
udp_voice_speex,
udp_voice_celt_beta
};
#endif
|