eac3dec: revert commit r18860. keep the AHT IDCT 24-bit. will make AHT GAQ
[FFMpeg-mirror/lagarith.git] / libavcodec / libamr.c
blob2f63f101633713e4cf71dae577ac0ac7b1a05953
1 /*
2 * AMR Audio decoder stub
3 * Copyright (c) 2003 the ffmpeg project
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
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
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 /** @file
23 * Adaptive Multi-Rate (AMR) Audio decoder stub.
25 * This code implements both an AMR-NarrowBand (AMR-NB) and an AMR-WideBand
26 * (AMR-WB) audio encoder/decoder through external reference code from
27 * http://www.3gpp.org/. The license of the code from 3gpp is unclear so you
28 * have to download the code separately. Two versions exists: One fixed-point
29 * and one floating-point. For some reason the float encoder is significantly
30 * faster at least on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip
31 * at MR102). Both float and fixed point are supported for AMR-NB, but only
32 * float for AMR-WB.
34 * \section AMR-NB
36 * \subsection Float
37 * The float version (default) can be downloaded from:
38 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-610.zip
40 * \subsection Specification
41 * The specification for AMR-NB can be found in TS 26.071
42 * (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other
43 * info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm.
45 * \section AMR-WB
47 * \subsection Float
48 * The reference code can be downloaded from:
49 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-600.zip
51 * \subsection Specification
52 * The specification for AMR-WB can be found in TS 26.171
53 * (http://www.3gpp.org/ftp/Specs/html-info/26171.htm) and some other
54 * info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm.
58 #include "avcodec.h"
60 static void amr_decode_fix_avctx(AVCodecContext *avctx)
62 const int is_amr_wb = 1 + (avctx->codec_id == CODEC_ID_AMR_WB);
64 if (!avctx->sample_rate)
65 avctx->sample_rate = 8000 * is_amr_wb;
67 if (!avctx->channels)
68 avctx->channels = 1;
70 avctx->frame_size = 160 * is_amr_wb;
71 avctx->sample_fmt = SAMPLE_FMT_S16;
74 #if CONFIG_LIBAMR_NB
76 #include <amrnb/interf_dec.h>
77 #include <amrnb/interf_enc.h>
79 static const char nb_bitrate_unsupported[] =
80 "bitrate not supported: use one of 4.75k, 5.15k, 5.9k, 6.7k, 7.4k, 7.95k, 10.2k or 12.2k\n";
82 /* Common code for fixed and float version*/
83 typedef struct AMR_bitrates {
84 int rate;
85 enum Mode mode;
86 } AMR_bitrates;
88 /* Match desired bitrate */
89 static int getBitrateMode(int bitrate)
91 /* make the correspondance between bitrate and mode */
92 AMR_bitrates rates[] = { { 4750, MR475},
93 { 5150, MR515},
94 { 5900, MR59},
95 { 6700, MR67},
96 { 7400, MR74},
97 { 7950, MR795},
98 {10200, MR102},
99 {12200, MR122}, };
100 int i;
102 for (i = 0; i < 8; i++)
103 if (rates[i].rate == bitrate)
104 return rates[i].mode;
105 /* no bitrate matching, return an error */
106 return -1;
109 typedef struct AMRContext {
110 int frameCount;
111 void *decState;
112 int *enstate;
113 int enc_bitrate;
114 } AMRContext;
116 static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
118 AMRContext *s = avctx->priv_data;
120 s->frameCount = 0;
121 s->decState = Decoder_Interface_init();
122 if (!s->decState) {
123 av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\r\n");
124 return -1;
127 amr_decode_fix_avctx(avctx);
129 if (avctx->channels > 1) {
130 av_log(avctx, AV_LOG_ERROR, "amr_nb: multichannel decoding not supported\n");
131 return -1;
134 return 0;
137 static av_cold int amr_nb_decode_close(AVCodecContext *avctx)
139 AMRContext *s = avctx->priv_data;
141 Decoder_Interface_exit(s->decState);
142 return 0;
145 static int amr_nb_decode_frame(AVCodecContext *avctx, void *data,
146 int *data_size, AVPacket *avpkt)
148 const uint8_t *buf = avpkt->data;
149 int buf_size = avpkt->size;
150 AMRContext *s = avctx->priv_data;
151 const uint8_t *amrData = buf;
152 static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
153 enum Mode dec_mode;
154 int packet_size;
156 /* av_log(NULL, AV_LOG_DEBUG, "amr_decode_frame buf=%p buf_size=%d frameCount=%d!!\n",
157 buf, buf_size, s->frameCount); */
159 dec_mode = (buf[0] >> 3) & 0x000F;
160 packet_size = block_size[dec_mode] + 1;
162 if (packet_size > buf_size) {
163 av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
164 buf_size, packet_size);
165 return -1;
168 s->frameCount++;
169 /* av_log(NULL, AV_LOG_DEBUG, "packet_size=%d amrData= 0x%X %X %X %X\n",
170 packet_size, amrData[0], amrData[1], amrData[2], amrData[3]); */
171 /* call decoder */
172 Decoder_Interface_Decode(s->decState, amrData, data, 0);
173 *data_size = 160 * 2;
175 return packet_size;
178 AVCodec libamr_nb_decoder = {
179 "libamr_nb",
180 CODEC_TYPE_AUDIO,
181 CODEC_ID_AMR_NB,
182 sizeof(AMRContext),
183 amr_nb_decode_init,
184 NULL,
185 amr_nb_decode_close,
186 amr_nb_decode_frame,
187 .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"),
190 static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
192 AMRContext *s = avctx->priv_data;
194 s->frameCount = 0;
196 if (avctx->sample_rate != 8000) {
197 av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
198 return -1;
201 if (avctx->channels != 1) {
202 av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
203 return -1;
206 avctx->frame_size = 160;
207 avctx->coded_frame = avcodec_alloc_frame();
209 s->enstate=Encoder_Interface_init(0);
210 if (!s->enstate) {
211 av_log(avctx, AV_LOG_ERROR, "Encoder_Interface_init error\n");
212 return -1;
215 if ((s->enc_bitrate = getBitrateMode(avctx->bit_rate)) < 0) {
216 av_log(avctx, AV_LOG_ERROR, nb_bitrate_unsupported);
217 return -1;
220 return 0;
223 static av_cold int amr_nb_encode_close(AVCodecContext *avctx)
225 AMRContext *s = avctx->priv_data;
227 Encoder_Interface_exit(s->enstate);
228 av_freep(&avctx->coded_frame);
229 return 0;
232 static int amr_nb_encode_frame(AVCodecContext *avctx,
233 unsigned char *frame/*out*/,
234 int buf_size, void *data/*in*/)
236 AMRContext *s = avctx->priv_data;
237 int written;
239 if ((s->enc_bitrate = getBitrateMode(avctx->bit_rate)) < 0) {
240 av_log(avctx, AV_LOG_ERROR, nb_bitrate_unsupported);
241 return -1;
244 written = Encoder_Interface_Encode(s->enstate, s->enc_bitrate, data,
245 frame, 0);
246 /* av_log(NULL, AV_LOG_DEBUG, "amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",
247 written, s->enc_bitrate, frame[0] ); */
249 return written;
252 AVCodec libamr_nb_encoder = {
253 "libamr_nb",
254 CODEC_TYPE_AUDIO,
255 CODEC_ID_AMR_NB,
256 sizeof(AMRContext),
257 amr_nb_encode_init,
258 amr_nb_encode_frame,
259 amr_nb_encode_close,
260 NULL,
261 .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
262 .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"),
265 #endif
267 /* -----------AMR wideband ------------*/
268 #if CONFIG_LIBAMR_WB
270 #ifdef _TYPEDEF_H
271 //To avoid duplicate typedefs from typedef in amr-nb
272 #define typedef_h
273 #endif
275 #include <amrwb/dec_if.h>
276 #include <amrwb/if_rom.h>
278 static const char wb_bitrate_unsupported[] =
279 "bitrate not supported: use one of 6.6k, 8.85k, 12.65k, 14.25k, 15.85k, 18.25k, 19.85k, 23.05k, or 23.85k\n";
281 /* Common code for fixed and float version*/
282 typedef struct AMRWB_bitrates {
283 int rate;
284 int mode;
285 } AMRWB_bitrates;
287 typedef struct AMRWBContext {
288 int frameCount;
289 void *state;
290 int mode;
291 Word16 allow_dtx;
292 } AMRWBContext;
294 #if CONFIG_LIBAMR_WB_ENCODER
296 #include <amrwb/enc_if.h>
298 static int getWBBitrateMode(int bitrate)
300 /* make the correspondance between bitrate and mode */
301 AMRWB_bitrates rates[] = { { 6600, 0},
302 { 8850, 1},
303 {12650, 2},
304 {14250, 3},
305 {15850, 4},
306 {18250, 5},
307 {19850, 6},
308 {23050, 7},
309 {23850, 8}, };
310 int i;
312 for (i = 0; i < 9; i++)
313 if (rates[i].rate == bitrate)
314 return rates[i].mode;
315 /* no bitrate matching, return an error */
316 return -1;
319 static av_cold int amr_wb_encode_init(AVCodecContext *avctx)
321 AMRWBContext *s = avctx->priv_data;
323 s->frameCount = 0;
325 if (avctx->sample_rate != 16000) {
326 av_log(avctx, AV_LOG_ERROR, "Only 16000Hz sample rate supported\n");
327 return -1;
330 if (avctx->channels != 1) {
331 av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
332 return -1;
335 if ((s->mode = getWBBitrateMode(avctx->bit_rate)) < 0) {
336 av_log(avctx, AV_LOG_ERROR, wb_bitrate_unsupported);
337 return -1;
340 avctx->frame_size = 320;
341 avctx->coded_frame = avcodec_alloc_frame();
343 s->state = E_IF_init();
344 s->allow_dtx = 0;
346 return 0;
349 static int amr_wb_encode_close(AVCodecContext *avctx)
351 AMRWBContext *s = avctx->priv_data;
353 E_IF_exit(s->state);
354 av_freep(&avctx->coded_frame);
355 s->frameCount++;
356 return 0;
359 static int amr_wb_encode_frame(AVCodecContext *avctx,
360 unsigned char *frame/*out*/,
361 int buf_size, void *data/*in*/)
363 AMRWBContext *s = avctx->priv_data;
364 int size;
366 if ((s->mode = getWBBitrateMode(avctx->bit_rate)) < 0) {
367 av_log(avctx, AV_LOG_ERROR, wb_bitrate_unsupported);
368 return -1;
370 size = E_IF_encode(s->state, s->mode, data, frame, s->allow_dtx);
371 return size;
374 AVCodec libamr_wb_encoder = {
375 "libamr_wb",
376 CODEC_TYPE_AUDIO,
377 CODEC_ID_AMR_WB,
378 sizeof(AMRWBContext),
379 amr_wb_encode_init,
380 amr_wb_encode_frame,
381 amr_wb_encode_close,
382 NULL,
383 .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
384 .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"),
387 #endif
389 static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
391 AMRWBContext *s = avctx->priv_data;
393 s->frameCount = 0;
394 s->state = D_IF_init();
396 amr_decode_fix_avctx(avctx);
398 if (avctx->channels > 1) {
399 av_log(avctx, AV_LOG_ERROR, "amr_wb: multichannel decoding not supported\n");
400 return -1;
403 return 0;
406 static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
407 int *data_size, AVPacket *avpkt)
409 const uint8_t *buf = avpkt->data;
410 int buf_size = avpkt->size;
411 AMRWBContext *s = avctx->priv_data;
412 const uint8_t *amrData = buf;
413 int mode;
414 int packet_size;
415 static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
417 if (!buf_size)
418 /* nothing to do */
419 return 0;
421 mode = (amrData[0] >> 3) & 0x000F;
422 packet_size = block_size[mode];
424 if (packet_size > buf_size) {
425 av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
426 buf_size, packet_size + 1);
427 return -1;
430 s->frameCount++;
431 D_IF_decode(s->state, amrData, data, _good_frame);
432 *data_size = 320 * 2;
433 return packet_size;
436 static int amr_wb_decode_close(AVCodecContext *avctx)
438 AMRWBContext *s = avctx->priv_data;
440 D_IF_exit(s->state);
441 return 0;
444 AVCodec libamr_wb_decoder = {
445 "libamr_wb",
446 CODEC_TYPE_AUDIO,
447 CODEC_ID_AMR_WB,
448 sizeof(AMRWBContext),
449 amr_wb_decode_init,
450 NULL,
451 amr_wb_decode_close,
452 amr_wb_decode_frame,
453 .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"),
456 #endif //CONFIG_LIBAMR_WB