summaryrefslogtreecommitdiff
path: root/modules/g711/g711.c
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-01-06 19:40:46 +0100
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2018-01-06 19:40:46 +0100
commit0a6d3066caa52060975537f81a352efe463a807a (patch)
tree713793fe5f3f48319a6652bbe91e903524b3b1c0 /modules/g711/g711.c
parent88adec838a1684277412430eccce4b420766c881 (diff)
update some modules with new aucodec api
Diffstat (limited to 'modules/g711/g711.c')
-rw-r--r--modules/g711/g711.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/g711/g711.c b/modules/g711/g711.c
index 7c01b61..d264153 100644
--- a/modules/g711/g711.c
+++ b/modules/g711/g711.c
@@ -98,12 +98,12 @@ static int pcma_decode(struct audec_state *ads, int16_t *sampv,
static struct aucodec pcmu = {
LE_INIT, "0", "PCMU", 8000, 8000, 1, NULL,
- NULL, pcmu_encode, NULL, pcmu_decode, NULL, NULL, NULL
+ NULL, pcmu_encode, NULL, pcmu_decode, NULL, NULL, NULL, NULL, NULL
};
static struct aucodec pcma = {
LE_INIT, "8", "PCMA", 8000, 8000, 1, NULL,
- NULL, pcma_encode, NULL, pcma_decode, NULL, NULL, NULL
+ NULL, pcma_encode, NULL, pcma_decode, NULL, NULL, NULL, NULL, NULL
};