From b839fce160d88ed93846af45fe34f655fe80c682 Mon Sep 17 00:00:00 2001 From: "Alfred E. Heggestad" Date: Sun, 1 May 2016 21:01:27 +0200 Subject: aucodec: split srate into srate and crate (Clock Rate) --- modules/g726/g726.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/g726') diff --git a/modules/g726/g726.c b/modules/g726/g726.c index 3553f47..a23a985 100644 --- a/modules/g726/g726.c +++ b/modules/g726/g726.c @@ -149,28 +149,28 @@ static int decode(struct audec_state *st, int16_t *sampv, static struct g726_aucodec g726[4] = { { { - LE_INIT, 0, "G726-40", 8000, 1, NULL, + LE_INIT, 0, "G726-40", 8000, 8000, 1, NULL, encode_update, encode, decode_update, decode, 0, 0, 0 }, 40000 }, { { - LE_INIT, 0, "G726-32", 8000, 1, NULL, + LE_INIT, 0, "G726-32", 8000, 8000, 1, NULL, encode_update, encode, decode_update, decode, 0, 0, 0 }, 32000 }, { { - LE_INIT, 0, "G726-24", 8000, 1, NULL, + LE_INIT, 0, "G726-24", 8000, 8000, 1, NULL, encode_update, encode, decode_update, decode, 0, 0, 0 }, 24000 }, { { - LE_INIT, 0, "G726-16", 8000, 1, NULL, + LE_INIT, 0, "G726-16", 8000, 8000, 1, NULL, encode_update, encode, decode_update, decode, 0, 0, 0 }, 16000 -- cgit v1.2.3