~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/truespeech_data.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-19 15:04:55 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20110419150455-c1nac6gjm3t2aa4n
Tags: 4:0.7~b1-1
* New upstream version
* bump SONAME and SHLIBS
* configure flags --disable-stripping was removed upstream
* the MAINTAINERS file was removed upstream
* remove patch disable-configuration-warning.patch
* drop avfilter confflags, it is enable by default in 0.7
* libfaad wrapper has been removed upstream
* also update the *contents* of the lintian overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * DSP Group TrueSpeech compatible decoder
3
3
 * copyright (c) 2005 Konstantin Shishkov
4
4
 *
5
 
 * This file is part of FFmpeg.
 
5
 * This file is part of Libav.
6
6
 *
7
 
 * FFmpeg is free software; you can redistribute it and/or
 
7
 * Libav is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
9
9
 * License as published by the Free Software Foundation; either
10
10
 * version 2.1 of the License, or (at your option) any later version.
11
11
 *
12
 
 * FFmpeg is distributed in the hope that it will be useful,
 
12
 * Libav is distributed in the hope that it will be useful,
13
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
15
 * Lesser General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU Lesser General Public
18
 
 * License along with FFmpeg; if not, write to the Free Software
 
18
 * License along with Libav; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
71
71
};
72
72
 
73
73
/* table used for decoding pulse positions */
74
 
static const int16_t ts_140[120] = {
 
74
static const int16_t ts_pulse_values[120] = {
75
75
    0x0E46, 0x0CCC, 0x0B6D, 0x0A28, 0x08FC, 0x07E8, 0x06EB, 0x0604,
76
76
    0x0532, 0x0474, 0x03C9, 0x0330, 0x02A8, 0x0230, 0x01C7, 0x016C,
77
77
    0x011E, 0x00DC, 0x00A5, 0x0078, 0x0054, 0x0038, 0x0023, 0x0014,
94
94
};
95
95
 
96
96
/* filter for correlated input filter */
97
 
static const int16_t ts_230[8] =
 
97
static const int16_t ts_decay_994_1000[8] =
98
98
    { 0x7F3B, 0x7E78, 0x7DB6, 0x7CF5, 0x7C35, 0x7B76, 0x7AB8, 0x79FC };
99
99
 
100
100
/* two-point filters table */
101
 
static const int16_t ts_240[25 * 2] = {
 
101
static const int16_t ts_order2_coeffs[25 * 2] = {
102
102
    0xED2F, 0x5239,
103
103
    0x54F1, 0xE4A9,
104
104
    0x2620, 0xEE3E,
131
131
};
132
132
 
133
133
/* possible pulse values */
134
 
static const int16_t ts_562[64] = {
 
134
static const int16_t ts_pulse_scales[64] = {
135
135
    0x0002, 0x0006, 0xFFFE, 0xFFFA,
136
136
    0x0004, 0x000C, 0xFFFC, 0xFFF4,
137
137
    0x0006, 0x0012, 0xFFFA, 0xFFEE,
151
151
};
152
152
 
153
153
/* filters used in final output calculations */
154
 
static const int16_t ts_5E2[8] =
 
154
static const int16_t ts_decay_35_64[8] =
155
155
    { 0x4666, 0x26B8, 0x154C, 0x0BB6, 0x0671, 0x038B, 0x01F3, 0x0112 };
156
 
static const int16_t ts_5F2[8] =
 
156
static const int16_t ts_decay_3_4[8] =
157
157
    { 0x6000, 0x4800, 0x3600, 0x2880, 0x1E60, 0x16C8, 0x1116, 0x0CD1 };
158
158
 
159
159
#endif /* AVCODEC_TRUESPEECH_DATA_H */