summaryrefslogtreecommitdiff
path: root/modules/g7221/g7221.c
blob: 7211c15e649a5e95981b8b923df86c06cffb2afa (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
/**
 * @file g7221.c G.722.1 Audio Codec
 *
 * Copyright (C) 2010 Creytiv.com
 */

#include <re.h>
#include <baresip.h>
#include "g7221.h"


static struct g7221_aucodec g7221 = {
	.ac = {
		.name      = "G7221",
		.srate     = 16000,
		.ch        = 1,
		.encupdh   = g7221_encode_update,
		.ench      = g7221_encode,
		.decupdh   = g7221_decode_update,
		.dech      = g7221_decode,
		.fmtp_ench = g7221_fmtp_enc,
		.fmtp_cmph = g7221_fmtp_cmp,
	},
	.bitrate = 32000,
};


static int module_init(void)
{
	aucodec_register((struct aucodec *)&g7221);

	return 0;
}


static int module_close(void)
{
	aucodec_unregister((struct aucodec *)&g7221);

	return 0;
}


EXPORT_SYM const struct mod_export DECL_EXPORTS(g7221) = {
	"g7221",
	"audio codec",
	module_init,
	module_close,
};