yading@10
|
1 /*
|
yading@10
|
2 * Copyright (c) CMU 1993 Computer Science, Speech Group
|
yading@10
|
3 * Chengxiang Lu and Alex Hauptmann
|
yading@10
|
4 * Copyright (c) 2005 Steve Underwood <steveu at coppice.org>
|
yading@10
|
5 * Copyright (c) 2009 Kenan Gillet
|
yading@10
|
6 * Copyright (c) 2010 Martin Storsjo
|
yading@10
|
7 *
|
yading@10
|
8 * This file is part of FFmpeg.
|
yading@10
|
9 *
|
yading@10
|
10 * FFmpeg is free software; you can redistribute it and/or
|
yading@10
|
11 * modify it under the terms of the GNU Lesser General Public
|
yading@10
|
12 * License as published by the Free Software Foundation; either
|
yading@10
|
13 * version 2.1 of the License, or (at your option) any later version.
|
yading@10
|
14 *
|
yading@10
|
15 * FFmpeg is distributed in the hope that it will be useful,
|
yading@10
|
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@10
|
18 * Lesser General Public License for more details.
|
yading@10
|
19 *
|
yading@10
|
20 * You should have received a copy of the GNU Lesser General Public
|
yading@10
|
21 * License along with FFmpeg; if not, write to the Free Software
|
yading@10
|
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@10
|
23 */
|
yading@10
|
24
|
yading@10
|
25 /**
|
yading@10
|
26 * @file
|
yading@10
|
27 * G.722 ADPCM audio decoder
|
yading@10
|
28 *
|
yading@10
|
29 * This G.722 decoder is a bit-exact implementation of the ITU G.722
|
yading@10
|
30 * specification for all three specified bitrates - 64000bps, 56000bps
|
yading@10
|
31 * and 48000bps. It passes the ITU tests.
|
yading@10
|
32 *
|
yading@10
|
33 * @note For the 56000bps and 48000bps bitrates, the lowest 1 or 2 bits
|
yading@10
|
34 * respectively of each byte are ignored.
|
yading@10
|
35 */
|
yading@10
|
36
|
yading@10
|
37 #include "libavutil/channel_layout.h"
|
yading@10
|
38 #include "libavutil/opt.h"
|
yading@10
|
39 #include "avcodec.h"
|
yading@10
|
40 #include "get_bits.h"
|
yading@10
|
41 #include "g722.h"
|
yading@10
|
42 #include "internal.h"
|
yading@10
|
43
|
yading@10
|
44 #define OFFSET(x) offsetof(G722Context, x)
|
yading@10
|
45 #define AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM
|
yading@10
|
46 static const AVOption options[] = {
|
yading@10
|
47 { "bits_per_codeword", "Bits per G722 codeword", OFFSET(bits_per_codeword), AV_OPT_TYPE_FLAGS, { .i64 = 8 }, 6, 8, AD },
|
yading@10
|
48 { NULL }
|
yading@10
|
49 };
|
yading@10
|
50
|
yading@10
|
51 static const AVClass g722_decoder_class = {
|
yading@10
|
52 .class_name = "g722 decoder",
|
yading@10
|
53 .item_name = av_default_item_name,
|
yading@10
|
54 .option = options,
|
yading@10
|
55 .version = LIBAVUTIL_VERSION_INT,
|
yading@10
|
56 };
|
yading@10
|
57
|
yading@10
|
58 static av_cold int g722_decode_init(AVCodecContext * avctx)
|
yading@10
|
59 {
|
yading@10
|
60 G722Context *c = avctx->priv_data;
|
yading@10
|
61
|
yading@10
|
62 avctx->channels = 1;
|
yading@10
|
63 avctx->channel_layout = AV_CH_LAYOUT_MONO;
|
yading@10
|
64 avctx->sample_fmt = AV_SAMPLE_FMT_S16;
|
yading@10
|
65
|
yading@10
|
66 c->band[0].scale_factor = 8;
|
yading@10
|
67 c->band[1].scale_factor = 2;
|
yading@10
|
68 c->prev_samples_pos = 22;
|
yading@10
|
69
|
yading@10
|
70 return 0;
|
yading@10
|
71 }
|
yading@10
|
72
|
yading@10
|
73 static const int16_t low_inv_quant5[32] = {
|
yading@10
|
74 -35, -35, -2919, -2195, -1765, -1458, -1219, -1023,
|
yading@10
|
75 -858, -714, -587, -473, -370, -276, -190, -110,
|
yading@10
|
76 2919, 2195, 1765, 1458, 1219, 1023, 858, 714,
|
yading@10
|
77 587, 473, 370, 276, 190, 110, 35, -35
|
yading@10
|
78 };
|
yading@10
|
79
|
yading@10
|
80 static const int16_t *low_inv_quants[3] = { ff_g722_low_inv_quant6,
|
yading@10
|
81 low_inv_quant5,
|
yading@10
|
82 ff_g722_low_inv_quant4 };
|
yading@10
|
83
|
yading@10
|
84 static int g722_decode_frame(AVCodecContext *avctx, void *data,
|
yading@10
|
85 int *got_frame_ptr, AVPacket *avpkt)
|
yading@10
|
86 {
|
yading@10
|
87 G722Context *c = avctx->priv_data;
|
yading@10
|
88 AVFrame *frame = data;
|
yading@10
|
89 int16_t *out_buf;
|
yading@10
|
90 int j, ret;
|
yading@10
|
91 const int skip = 8 - c->bits_per_codeword;
|
yading@10
|
92 const int16_t *quantizer_table = low_inv_quants[skip];
|
yading@10
|
93 GetBitContext gb;
|
yading@10
|
94
|
yading@10
|
95 /* get output buffer */
|
yading@10
|
96 frame->nb_samples = avpkt->size * 2;
|
yading@10
|
97 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
yading@10
|
98 return ret;
|
yading@10
|
99 out_buf = (int16_t *)frame->data[0];
|
yading@10
|
100
|
yading@10
|
101 init_get_bits(&gb, avpkt->data, avpkt->size * 8);
|
yading@10
|
102
|
yading@10
|
103 for (j = 0; j < avpkt->size; j++) {
|
yading@10
|
104 int ilow, ihigh, rlow, rhigh, dhigh;
|
yading@10
|
105 int xout1, xout2;
|
yading@10
|
106
|
yading@10
|
107 ihigh = get_bits(&gb, 2);
|
yading@10
|
108 ilow = get_bits(&gb, 6 - skip);
|
yading@10
|
109 skip_bits(&gb, skip);
|
yading@10
|
110
|
yading@10
|
111 rlow = av_clip((c->band[0].scale_factor * quantizer_table[ilow] >> 10)
|
yading@10
|
112 + c->band[0].s_predictor, -16384, 16383);
|
yading@10
|
113
|
yading@10
|
114 ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip));
|
yading@10
|
115
|
yading@10
|
116 dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10;
|
yading@10
|
117 rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383);
|
yading@10
|
118
|
yading@10
|
119 ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh);
|
yading@10
|
120
|
yading@10
|
121 c->prev_samples[c->prev_samples_pos++] = rlow + rhigh;
|
yading@10
|
122 c->prev_samples[c->prev_samples_pos++] = rlow - rhigh;
|
yading@10
|
123 ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24,
|
yading@10
|
124 &xout1, &xout2);
|
yading@10
|
125 *out_buf++ = av_clip_int16(xout1 >> 11);
|
yading@10
|
126 *out_buf++ = av_clip_int16(xout2 >> 11);
|
yading@10
|
127 if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) {
|
yading@10
|
128 memmove(c->prev_samples, c->prev_samples + c->prev_samples_pos - 22,
|
yading@10
|
129 22 * sizeof(c->prev_samples[0]));
|
yading@10
|
130 c->prev_samples_pos = 22;
|
yading@10
|
131 }
|
yading@10
|
132 }
|
yading@10
|
133
|
yading@10
|
134 *got_frame_ptr = 1;
|
yading@10
|
135
|
yading@10
|
136 return avpkt->size;
|
yading@10
|
137 }
|
yading@10
|
138
|
yading@10
|
139 AVCodec ff_adpcm_g722_decoder = {
|
yading@10
|
140 .name = "g722",
|
yading@10
|
141 .type = AVMEDIA_TYPE_AUDIO,
|
yading@10
|
142 .id = AV_CODEC_ID_ADPCM_G722,
|
yading@10
|
143 .priv_data_size = sizeof(G722Context),
|
yading@10
|
144 .init = g722_decode_init,
|
yading@10
|
145 .decode = g722_decode_frame,
|
yading@10
|
146 .capabilities = CODEC_CAP_DR1,
|
yading@10
|
147 .long_name = NULL_IF_CONFIG_SMALL("G.722 ADPCM"),
|
yading@10
|
148 .priv_class = &g722_decoder_class,
|
yading@10
|
149 };
|