1 /*
2 * Copyright (c) CMU 1993 Computer Science, Speech Group
3 * Chengxiang Lu and Alex Hauptmann
4 * Copyright (c) 2005 Steve Underwood <steveu at coppice.org>
5 * Copyright (c) 2009 Kenan Gillet
6 * Copyright (c) 2010 Martin Storsjo
7 *
8 * This file is part of FFmpeg.
9 *
10 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25 /**
26 * @file
27 * G.722 ADPCM audio decoder
28 *
29 * This G.722 decoder is a bit-exact implementation of the ITU G.722
30 * specification for all three specified bitrates - 64000bps, 56000bps
31 * and 48000bps. It passes the ITU tests.
32 *
33 * @note For the 56000bps and 48000bps bitrates, the lowest 1 or 2 bits
34 * respectively of each byte are ignored.
35 */
36
43
44 #define OFFSET(x) offsetof(G722Context, x)
45 #define AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM
47 {
"bits_per_codeword",
"Bits per G722 codeword",
OFFSET(bits_per_codeword),
AV_OPT_TYPE_INT, { .i64 = 8 }, 6, 8,
AD },
49 };
50
56 };
57
59 {
61
65
66 c->band[0].scale_factor = 8;
67 c->band[1].scale_factor = 2;
68 c->prev_samples_pos = 22;
69
71
72 return 0;
73 }
74
76 -35, -35, -2919, -2195, -1765, -1458, -1219, -1023,
77 -858, -714, -587, -473, -370, -276, -190, -110,
78 2919, 2195, 1765, 1458, 1219, 1023, 858, 714,
79 587, 473, 370, 276, 190, 110, 35, -35
80 };
81
85
88 {
91 int16_t *out_buf;
93 const int skip = 8 -
c->bits_per_codeword;
96
97 /* get output buffer */
101 out_buf = (int16_t *)
frame->data[0];
102
106
107 for (j = 0; j < avpkt->
size; j++) {
108 int ilow, ihigh, rlow, rhigh, dhigh;
109 int xout[2];
110
114
115 rlow =
av_clip_intp2((
c->band[0].scale_factor * quantizer_table[ilow] >> 10)
116 +
c->band[0].s_predictor, 14);
117
119
122
124
125 c->prev_samples[
c->prev_samples_pos++] = rlow + rhigh;
126 c->prev_samples[
c->prev_samples_pos++] = rlow - rhigh;
127 c->dsp.apply_qmf(
c->prev_samples +
c->prev_samples_pos - 24, xout);
131 memmove(
c->prev_samples,
c->prev_samples +
c->prev_samples_pos - 22,
132 22 *
sizeof(
c->prev_samples[0]));
133 c->prev_samples_pos = 22;
134 }
135 }
136
137 *got_frame_ptr = 1;
138
140 }
141
153 };