summaryrefslogtreecommitdiff
path: root/modules/g722/g722.c
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-03-04 15:28:51 +0100
committerGitHub <noreply@github.com>2017-03-04 15:28:51 +0100
commit4f43acb07de88433ce513079233040e3e7c2b9d6 (patch)
tree2b0f010a5cc0c0009b345310a13dd14db4263573 /modules/g722/g722.c
parent5992d4e01e401b7913dc0a9f95229260fa388fe1 (diff)
aucodec: move list of aucodec to struct baresip (#221)
Diffstat (limited to 'modules/g722/g722.c')
-rw-r--r--modules/g722/g722.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/g722/g722.c b/modules/g722/g722.c
index 2b5a7a4..fae0958 100644
--- a/modules/g722/g722.c
+++ b/modules/g722/g722.c
@@ -171,7 +171,7 @@ static struct aucodec g722 = {
static int module_init(void)
{
- aucodec_register(&g722);
+ aucodec_register(baresip_aucodecl(), &g722);
return 0;
}