summaryrefslogtreecommitdiff
path: root/src/cmumble.h
blob: ad0ab333a47a1dddebb90c787ac78592d7d6a9c3 (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
#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"
#include "commands.h"

typedef void (*callback_t)(ProtobufCMessage *msg, struct cmumble_context *);

struct cmumble_context {
	struct cmumble_connection con;
	struct cmumble_io io;
	struct cmumble_audio audio;
	const callback_t *callbacks;
	const struct cmumble_command *commands;

	GMainLoop *loop;

	uint32_t session;
	gboolean authenticated;

	char *user_name;

	int64_t sequence;

	GList *users;
};

struct cmumble_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
};

void
cmumble_protocol_init(struct cmumble_context *ctx);

#endif