summaryrefslogtreecommitdiff
path: root/modules/isac
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2016-05-01 21:01:27 +0200
committerAlfred E. Heggestad <aeh@db.org>2016-05-01 21:01:27 +0200
commitb839fce160d88ed93846af45fe34f655fe80c682 (patch)
tree788b7fdd6c00b9ef79fc596f8cd74c597f04a82a /modules/isac
parent5148e7def697fc91d2ff7ec812d07b665f65397d (diff)
aucodec: split srate into srate and crate (Clock Rate)
Diffstat (limited to 'modules/isac')
-rw-r--r--modules/isac/isac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/isac/isac.c b/modules/isac/isac.c
index 648031a..9e98c35 100644
--- a/modules/isac/isac.c
+++ b/modules/isac/isac.c
@@ -186,11 +186,11 @@ static int plc(struct audec_state *st, int16_t *sampv, size_t *sampc)
static struct aucodec isacv[] = {
{
- LE_INIT, 0, "isac", 32000, 1, NULL,
+ LE_INIT, 0, "isac", 32000, 32000, 1, NULL,
encode_update, encode, decode_update, decode, plc, NULL, NULL
},
{
- LE_INIT, 0, "isac", 16000, 1, NULL,
+ LE_INIT, 0, "isac", 16000, 16000, 1, NULL,
encode_update, encode, decode_update, decode, plc, NULL, NULL
}
};