diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-08-23 19:51:11 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-08-30 18:21:12 +0200 |
commit | 04fc5c6bde5da842e8b40a9a76eb72c8327ae40b (patch) | |
tree | 28df12f60dbde1e9359636a3bb75903f3d286b8f /libavcodec/g723_1_data.h | |
parent | 040405b59efeb3bdc44accdfb93841e7fed5f6be (diff) | |
download | ffmpeg-04fc5c6bde5da842e8b40a9a76eb72c8327ae40b.tar.gz |
g723_1: add comfort noise generation
Diffstat (limited to 'libavcodec/g723_1_data.h')
-rw-r--r-- | libavcodec/g723_1_data.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/g723_1_data.h b/libavcodec/g723_1_data.h index 82446b3da0..04f8a06e37 100644 --- a/libavcodec/g723_1_data.h +++ b/libavcodec/g723_1_data.h @@ -1191,4 +1191,10 @@ static const int16_t postfilter_tbl[2][LPC_ORDER] = { { 24576, 18432, 13824, 10368, 7776, 5832, 4374, 3281, 2460, 1845 } }; +static const int cng_adaptive_cb_lag[4] = { 1, 0, 1, 3 }; + +static const int cng_filt[4] = { 273, 998, 499, 333 }; + +static const int cng_bseg[3] = { 2048, 18432, 231233 }; + #endif /* AVCODEC_G723_1_DATA_H */ |