blob: 9a4a1966f994ebaf080042046053140c9ac71d67 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11/******************************************************************
12
13 iLBC Speech Coder ANSI-C Source Code
14
15 define.h
16
17******************************************************************/
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020018#ifndef MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DEFINES_H_
19#define MODULES_AUDIO_CODING_CODECS_ILBC_MAIN_SOURCE_DEFINES_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000020
henrike@webrtc.org1b8b4c42014-09-03 19:42:16 +000021#include <string.h>
Mirko Bonadei06c2aa92018-02-01 15:11:41 +010022
23#include "common_audio/signal_processing/include/signal_processing_library.h"
Mirko Bonadei71207422017-09-15 13:58:09 +020024#include "typedefs.h" // NOLINT(build/include)
niklase@google.com470e71d2011-07-07 08:21:25 +000025
26/* general codec settings */
27
Yves Gerey665174f2018-06-19 15:03:05 +020028#define FS 8000
29#define BLOCKL_20MS 160
30#define BLOCKL_30MS 240
31#define BLOCKL_MAX 240
32#define NSUB_20MS 4
33#define NSUB_30MS 6
34#define NSUB_MAX 6
35#define NASUB_20MS 2
36#define NASUB_30MS 4
37#define NASUB_MAX 4
38#define SUBL 40
39#define STATE_LEN 80
40#define STATE_SHORT_LEN_30MS 58
41#define STATE_SHORT_LEN_20MS 57
niklase@google.com470e71d2011-07-07 08:21:25 +000042
43/* LPC settings */
44
Yves Gerey665174f2018-06-19 15:03:05 +020045#define LPC_FILTERORDER 10
46#define LPC_LOOKBACK 60
47#define LPC_N_20MS 1
48#define LPC_N_30MS 2
49#define LPC_N_MAX 2
50#define LPC_ASYMDIFF 20
51#define LSF_NSPLIT 3
52#define LSF_NUMBER_OF_STEPS 4
53#define LPC_HALFORDER 5
niklase@google.com470e71d2011-07-07 08:21:25 +000054#define COS_GRID_POINTS 60
55
56/* cb settings */
57
Yves Gerey665174f2018-06-19 15:03:05 +020058#define CB_NSTAGES 3
59#define CB_EXPAND 2
60#define CB_MEML 147
61#define CB_FILTERLEN (2 * 4)
62#define CB_HALFFILTERLEN 4
63#define CB_RESRANGE 34
64#define CB_MAXGAIN_FIXQ6 83 /* error = -0.24% */
65#define CB_MAXGAIN_FIXQ14 21299
niklase@google.com470e71d2011-07-07 08:21:25 +000066
67/* enhancer */
68
Yves Gerey665174f2018-06-19 15:03:05 +020069#define ENH_BLOCKL 80 /* block length */
70#define ENH_BLOCKL_HALF (ENH_BLOCKL / 2)
71#define ENH_HL \
72 3 /* 2*ENH_HL+1 is number blocks \
73 in said second \
74 sequence */
75#define ENH_SLOP \
76 2 /* max difference estimated and \
77 correct pitch period */
78#define ENH_PLOCSL \
79 8 /* pitch-estimates and \
80 pitch-locations buffer \
81 length */
82#define ENH_OVERHANG 2
83#define ENH_UPS0 4 /* upsampling rate */
84#define ENH_FL0 3 /* 2*FLO+1 is the length of each filter */
85#define ENH_FLO_MULT2_PLUS1 7
86#define ENH_VECTL (ENH_BLOCKL + 2 * ENH_FL0)
87#define ENH_CORRDIM (2 * ENH_SLOP + 1)
88#define ENH_NBLOCKS (BLOCKL / ENH_BLOCKL)
89#define ENH_NBLOCKS_EXTRA 5
90#define ENH_NBLOCKS_TOT 8 /* ENH_NBLOCKS+ENH_NBLOCKS_EXTRA */
91#define ENH_BUFL (ENH_NBLOCKS_TOT) * ENH_BLOCKL
92#define ENH_BUFL_FILTEROVERHEAD 3
93#define ENH_A0 819 /* Q14 */
94#define ENH_A0_MINUS_A0A0DIV4 848256041 /* Q34 */
95#define ENH_A0DIV2 26843546 /* Q30 */
niklase@google.com470e71d2011-07-07 08:21:25 +000096
97/* PLC */
98
99/* Down sampling */
100
Yves Gerey665174f2018-06-19 15:03:05 +0200101#define FILTERORDER_DS_PLUS1 7
102#define DELAY_DS 3
103#define FACTOR_DS 2
niklase@google.com470e71d2011-07-07 08:21:25 +0000104
105/* bit stream defs */
106
Yves Gerey665174f2018-06-19 15:03:05 +0200107#define NO_OF_BYTES_20MS 38
108#define NO_OF_BYTES_30MS 50
109#define NO_OF_WORDS_20MS 19
110#define NO_OF_WORDS_30MS 25
111#define STATE_BITS 3
112#define BYTE_LEN 8
113#define ULP_CLASSES 3
niklase@google.com470e71d2011-07-07 08:21:25 +0000114
115/* help parameters */
116
Yves Gerey665174f2018-06-19 15:03:05 +0200117#define TWO_PI_FIX 25736 /* Q12 */
niklase@google.com470e71d2011-07-07 08:21:25 +0000118
119/* Constants for codebook search and creation */
120
Yves Gerey665174f2018-06-19 15:03:05 +0200121#define ST_MEM_L_TBL 85
122#define MEM_LF_TBL 147
niklase@google.com470e71d2011-07-07 08:21:25 +0000123
124/* Struct for the bits */
125typedef struct iLBC_bits_t_ {
Yves Gerey665174f2018-06-19 15:03:05 +0200126 int16_t lsf[LSF_NSPLIT * LPC_N_MAX];
127 int16_t cb_index[CB_NSTAGES * (NASUB_MAX + 1)]; /* First CB_NSTAGES values
128 contains extra CB index */
129 int16_t gain_index[CB_NSTAGES * (NASUB_MAX + 1)]; /* First CB_NSTAGES values
130 contains extra CB gain */
Peter Kastingdce40cf2015-08-24 14:52:23 -0700131 size_t idxForMax;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000132 int16_t state_first;
133 int16_t idxVec[STATE_SHORT_LEN_30MS];
134 int16_t firstbits;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700135 size_t startIdx;
niklase@google.com470e71d2011-07-07 08:21:25 +0000136} iLBC_bits;
137
138/* type definition encoder instance */
pbos@webrtc.orgeb544462014-12-17 15:23:29 +0000139typedef struct IlbcEncoder_ {
niklase@google.com470e71d2011-07-07 08:21:25 +0000140 /* flag for frame size mode */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000141 int16_t mode;
niklase@google.com470e71d2011-07-07 08:21:25 +0000142
143 /* basic parameters for different frame sizes */
Peter Kastingdce40cf2015-08-24 14:52:23 -0700144 size_t blockl;
145 size_t nsub;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000146 int16_t nasub;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700147 size_t no_of_bytes, no_of_words;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000148 int16_t lpc_n;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700149 size_t state_short_len;
niklase@google.com470e71d2011-07-07 08:21:25 +0000150
151 /* analysis filter state */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000152 int16_t anaMem[LPC_FILTERORDER];
niklase@google.com470e71d2011-07-07 08:21:25 +0000153
154 /* Fix-point old lsf parameters for interpolation */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000155 int16_t lsfold[LPC_FILTERORDER];
156 int16_t lsfdeqold[LPC_FILTERORDER];
niklase@google.com470e71d2011-07-07 08:21:25 +0000157
158 /* signal buffer for LP analysis */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000159 int16_t lpc_buffer[LPC_LOOKBACK + BLOCKL_MAX];
niklase@google.com470e71d2011-07-07 08:21:25 +0000160
161 /* state of input HP filter */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000162 int16_t hpimemx[2];
163 int16_t hpimemy[4];
niklase@google.com470e71d2011-07-07 08:21:25 +0000164
165#ifdef SPLIT_10MS
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000166 int16_t weightdenumbuf[66];
167 int16_t past_samples[160];
168 uint16_t bytes[25];
169 int16_t section;
170 int16_t Nfor_flag;
171 int16_t Nback_flag;
172 int16_t start_pos;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700173 size_t diff;
niklase@google.com470e71d2011-07-07 08:21:25 +0000174#endif
175
pbos@webrtc.orgeb544462014-12-17 15:23:29 +0000176} IlbcEncoder;
niklase@google.com470e71d2011-07-07 08:21:25 +0000177
178/* type definition decoder instance */
pbos@webrtc.orgeb544462014-12-17 15:23:29 +0000179typedef struct IlbcDecoder_ {
niklase@google.com470e71d2011-07-07 08:21:25 +0000180 /* flag for frame size mode */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000181 int16_t mode;
niklase@google.com470e71d2011-07-07 08:21:25 +0000182
183 /* basic parameters for different frame sizes */
Peter Kastingdce40cf2015-08-24 14:52:23 -0700184 size_t blockl;
185 size_t nsub;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000186 int16_t nasub;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700187 size_t no_of_bytes, no_of_words;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000188 int16_t lpc_n;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700189 size_t state_short_len;
niklase@google.com470e71d2011-07-07 08:21:25 +0000190
191 /* synthesis filter state */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000192 int16_t syntMem[LPC_FILTERORDER];
niklase@google.com470e71d2011-07-07 08:21:25 +0000193
194 /* old LSF for interpolation */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000195 int16_t lsfdeqold[LPC_FILTERORDER];
niklase@google.com470e71d2011-07-07 08:21:25 +0000196
197 /* pitch lag estimated in enhancer and used in PLC */
Peter Kastingdce40cf2015-08-24 14:52:23 -0700198 size_t last_lag;
niklase@google.com470e71d2011-07-07 08:21:25 +0000199
200 /* PLC state information */
201 int consPLICount, prev_enh_pl;
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000202 int16_t perSquare;
niklase@google.com470e71d2011-07-07 08:21:25 +0000203
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000204 int16_t prevScale, prevPLI;
Peter Kastingdce40cf2015-08-24 14:52:23 -0700205 size_t prevLag;
Yves Gerey665174f2018-06-19 15:03:05 +0200206 int16_t prevLpc[LPC_FILTERORDER + 1];
207 int16_t prevResidual[NSUB_MAX * SUBL];
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000208 int16_t seed;
niklase@google.com470e71d2011-07-07 08:21:25 +0000209
210 /* previous synthesis filter parameters */
211
Yves Gerey665174f2018-06-19 15:03:05 +0200212 int16_t old_syntdenum[(LPC_FILTERORDER + 1) * NSUB_MAX];
niklase@google.com470e71d2011-07-07 08:21:25 +0000213
214 /* state of output HP filter */
pbos@webrtc.org0946a562013-04-09 00:28:06 +0000215 int16_t hpimemx[2];
216 int16_t hpimemy[4];
niklase@google.com470e71d2011-07-07 08:21:25 +0000217
218 /* enhancer state information */
219 int use_enhancer;
Yves Gerey665174f2018-06-19 15:03:05 +0200220 int16_t enh_buf[ENH_BUFL + ENH_BUFL_FILTEROVERHEAD];
Peter Kasting1380e262015-08-28 17:31:03 -0700221 size_t enh_period[ENH_NBLOCKS_TOT];
niklase@google.com470e71d2011-07-07 08:21:25 +0000222
pbos@webrtc.orgeb544462014-12-17 15:23:29 +0000223} IlbcDecoder;
niklase@google.com470e71d2011-07-07 08:21:25 +0000224
225#endif