e3164b30082a003eb2b6f6b2a72047c99bc37586
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
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 with floats. For some reason the float-encoder is significant faster
30 * at least on a P4 1.5GHz (0.9s instead of 9.9s on a 30s audio clip at MR102).
31 * Both float and fixed point are supported for AMR-NB, but only float for
37 * The float version (default) can be downloaded from:
38 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip
39 * Extract the source into \c "ffmpeg/libavcodec/amr_float".
41 * \subsection Fixed-point
42 * The fixed-point (TS26.073) can be downloaded from:
43 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip.
44 * Extract the source into \c "ffmpeg/libavcodec/amr".
45 * To use the fixed version run \c "./configure" with \c "--enable-amr_nb-fixed".
47 * \subsection Specification
48 * The specification for AMR-NB can be found in TS 26.071
49 * (http://www.3gpp.org/ftp/Specs/html-info/26071.htm) and some other
50 * info at http://www.3gpp.org/ftp/Specs/html-info/26-series.htm.
54 * The reference code can be downloaded from:
55 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip
56 * It should be extracted to \c "ffmpeg/libavcodec/amrwb_float". Enable it with
57 * \c "--enable-amr_wb".
59 * \subsection Fixed-point
60 * If someone wants to use the fixed point version it can be downloaded from:
61 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.173/26173-571.zip.
63 * \subsection Specification
64 * The specification for AMR-WB can be downloaded from:
65 * http://www.3gpp.org/ftp/Specs/archive/26_series/26.171/26171-500.zip.
71 #ifdef CONFIG_AMR_NB_FIXED
75 #include "amr/sp_dec.h"
76 #include "amr/d_homing.h"
77 #include "amr/typedef.h"
78 #include "amr/sp_enc.h"
79 #include "amr/sid_sync.h"
80 #include "amr/e_homing.h"
83 #include "amr_float/interf_dec.h"
84 #include "amr_float/interf_enc.h"
87 /* Common code for fixed and float version*/
88 typedef struct AMR_bitrates
95 /* Match desired bitrate with closest one*/
96 static enum Mode
getBitrateMode(int bitrate
)
98 /* Adjusted so that all bitrates can be used from commandline where
99 only a multiple of 1000 can be specified*/
100 AMR_bitrates rates
[]={ {0,4999,MR475
}, //4
101 {5000,5899,MR515
},//5
105 {7950,9999,MR795
},//9
106 {10000,11999,MR102
},//10
107 {12000,64000,MR122
},//12
113 if(rates
[i
].startrate
<=bitrate
&& rates
[i
].stoprate
>=bitrate
)
115 return(rates
[i
].mode
);
118 /*Return highest possible*/
122 static void amr_decode_fix_avctx(AVCodecContext
* avctx
)
124 const int is_amr_wb
= 1 + (avctx
->codec_id
== CODEC_ID_AMR_WB
);
126 if(avctx
->sample_rate
== 0)
128 avctx
->sample_rate
= 8000 * is_amr_wb
;
131 if(avctx
->channels
== 0)
136 avctx
->frame_size
= 160 * is_amr_wb
;
139 #ifdef CONFIG_AMR_NB_FIXED
140 /* fixed point version*/
141 /* frame size in serial bitstream file (frame type + serial stream + flags) */
142 #define SERIAL_FRAMESIZE (1+MAX_SERIAL_SIZE+5)
144 typedef struct AMRContext
{
146 Speech_Decode_FrameState
*speech_decoder_state
;
147 enum RXFrameType rx_type
;
150 Word16 reset_flag_old
;
152 enum Mode enc_bitrate
;
153 Speech_Encode_FrameState
*enstate
;
154 sid_syncState
*sidstate
;
155 enum TXFrameType tx_frametype
;
158 static int amr_nb_decode_init(AVCodecContext
* avctx
)
160 AMRContext
*s
= avctx
->priv_data
;
163 s
->speech_decoder_state
=NULL
;
164 s
->rx_type
= (enum RXFrameType
)0;
165 s
->mode
= (enum Mode
)0;
169 if(Speech_Decode_Frame_init(&s
->speech_decoder_state
, "Decoder"))
171 av_log(avctx
, AV_LOG_ERROR
, "Speech_Decode_Frame_init error\n");
175 amr_decode_fix_avctx(avctx
);
177 if(avctx
->channels
> 1)
179 av_log(avctx
, AV_LOG_ERROR
, "amr_nb: multichannel decoding not supported\n");
186 static int amr_nb_encode_init(AVCodecContext
* avctx
)
188 AMRContext
*s
= avctx
->priv_data
;
191 s
->speech_decoder_state
=NULL
;
192 s
->rx_type
= (enum RXFrameType
)0;
193 s
->mode
= (enum Mode
)0;
197 if(avctx
->sample_rate
!=8000)
199 av_log(avctx
, AV_LOG_ERROR
, "Only 8000Hz sample rate supported\n");
203 if(avctx
->channels
!=1)
205 av_log(avctx
, AV_LOG_ERROR
, "Only mono supported\n");
209 avctx
->frame_size
=160;
210 avctx
->coded_frame
= avcodec_alloc_frame();
212 if(Speech_Encode_Frame_init(&s
->enstate
, 0, "encoder") || sid_sync_init (&s
->sidstate
))
214 av_log(avctx
, AV_LOG_ERROR
, "Speech_Encode_Frame_init error\n");
218 s
->enc_bitrate
=getBitrateMode(avctx
->bit_rate
);
223 static int amr_nb_encode_close(AVCodecContext
* avctx
)
225 AMRContext
*s
= avctx
->priv_data
;
227 Speech_Encode_Frame_exit(&s
->enstate
);
228 sid_sync_exit (&s
->sidstate
);
229 av_freep(&avctx
->coded_frame
);
233 static int amr_nb_decode_close(AVCodecContext
* avctx
)
235 AMRContext
*s
= avctx
->priv_data
;
237 Speech_Decode_Frame_exit(&s
->speech_decoder_state
);
241 static int amr_nb_decode_frame(AVCodecContext
* avctx
,
242 void *data
, int *data_size
,
243 uint8_t * buf
, int buf_size
)
245 AMRContext
*s
= avctx
->priv_data
;
249 Word16 serial
[SERIAL_FRAMESIZE
]; /* coded bits */
252 static Word16 packed_size
[16] = {12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0};
255 //printf("amr_decode_frame data_size=%i buf=0x%X buf_size=%d frameCount=%d!!\n",*data_size,buf,buf_size,s->frameCount);
259 // while(offset<buf_size)
262 /* read rest of the frame based on ToC byte */
263 q
= (toc
>> 2) & 0x01;
264 ft
= (toc
>> 3) & 0x0F;
266 //printf("offset=%d, packet_size=%d amrData= 0x%X %X %X %X\n",offset,packed_size[ft],amrData[offset],amrData[offset+1],amrData[offset+2],amrData[offset+3]);
270 packed_bits
=amrData
+offset
;
272 offset
+=packed_size
[ft
];
274 //Unsort and unpack bits
275 s
->rx_type
= UnpackBits(q
, ft
, packed_bits
, &s
->mode
, &serial
[1]);
277 //We have a new frame
280 if (s
->rx_type
== RX_NO_DATA
)
282 s
->mode
= s
->speech_decoder_state
->prev_mode
;
285 s
->speech_decoder_state
->prev_mode
= s
->mode
;
288 /* if homed: check if this frame is another homing frame */
289 if (s
->reset_flag_old
== 1)
291 /* only check until end of first subframe */
292 s
->reset_flag
= decoder_homing_frame_test_first(&serial
[1], s
->mode
);
294 /* produce encoder homing frame if homed & input=decoder homing frame */
295 if ((s
->reset_flag
!= 0) && (s
->reset_flag_old
!= 0))
297 for (i
= 0; i
< L_FRAME
; i
++)
305 Speech_Decode_Frame(s
->speech_decoder_state
, s
->mode
, &serial
[1], s
->rx_type
, synth
);
308 //Each AMR-frame results in 160 16-bit samples
312 /* if not homed: check whether current frame is a homing frame */
313 if (s
->reset_flag_old
== 0)
315 /* check whole frame */
316 s
->reset_flag
= decoder_homing_frame_test(&serial
[1], s
->mode
);
318 /* reset decoder if current frame is a homing frame */
319 if (s
->reset_flag
!= 0)
321 Speech_Decode_Frame_reset(s
->speech_decoder_state
);
323 s
->reset_flag_old
= s
->reset_flag
;
330 static int amr_nb_encode_frame(AVCodecContext
*avctx
,
331 unsigned char *frame
/*out*/, int buf_size
, void *data
/*in*/)
333 short serial_data
[250] = {0};
334 AMRContext
*s
= avctx
->priv_data
;
337 s
->reset_flag
= encoder_homing_frame_test(data
);
339 Speech_Encode_Frame(s
->enstate
, s
->enc_bitrate
, data
, &serial_data
[1], &s
->mode
);
341 /* add frame type and mode */
342 sid_sync (s
->sidstate
, s
->mode
, &s
->tx_frametype
);
344 written
= PackBits(s
->mode
, s
->enc_bitrate
, s
->tx_frametype
, &serial_data
[1], frame
);
346 if (s
->reset_flag
!= 0)
348 Speech_Encode_Frame_reset(s
->enstate
);
349 sid_sync_reset(s
->sidstate
);
355 #elif defined(CONFIG_AMR_NB) /* Float point version*/
357 typedef struct AMRContext
{
361 enum Mode enc_bitrate
;
364 static int amr_nb_decode_init(AVCodecContext
* avctx
)
366 AMRContext
*s
= avctx
->priv_data
;
369 s
->decState
=Decoder_Interface_init();
372 av_log(avctx
, AV_LOG_ERROR
, "Decoder_Interface_init error\r\n");
376 amr_decode_fix_avctx(avctx
);
378 if(avctx
->channels
> 1)
380 av_log(avctx
, AV_LOG_ERROR
, "amr_nb: multichannel decoding not supported\n");
387 static int amr_nb_encode_init(AVCodecContext
* avctx
)
389 AMRContext
*s
= avctx
->priv_data
;
393 if(avctx
->sample_rate
!=8000)
395 av_log(avctx
, AV_LOG_ERROR
, "Only 8000Hz sample rate supported\n");
399 if(avctx
->channels
!=1)
401 av_log(avctx
, AV_LOG_ERROR
, "Only mono supported\n");
405 avctx
->frame_size
=160;
406 avctx
->coded_frame
= avcodec_alloc_frame();
408 s
->enstate
=Encoder_Interface_init(0);
411 av_log(avctx
, AV_LOG_ERROR
, "Encoder_Interface_init error\n");
415 s
->enc_bitrate
=getBitrateMode(avctx
->bit_rate
);
420 static int amr_nb_decode_close(AVCodecContext
* avctx
)
422 AMRContext
*s
= avctx
->priv_data
;
424 Decoder_Interface_exit(s
->decState
);
428 static int amr_nb_encode_close(AVCodecContext
* avctx
)
430 AMRContext
*s
= avctx
->priv_data
;
432 Encoder_Interface_exit(s
->enstate
);
433 av_freep(&avctx
->coded_frame
);
437 static int amr_nb_decode_frame(AVCodecContext
* avctx
,
438 void *data
, int *data_size
,
439 uint8_t * buf
, int buf_size
)
441 AMRContext
*s
= avctx
->priv_data
;
443 static short block_size
[16]={ 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
447 /* av_log(NULL,AV_LOG_DEBUG,"amr_decode_frame buf=%p buf_size=%d frameCount=%d!!\n",buf,buf_size,s->frameCount); */
449 dec_mode
= (buf
[0] >> 3) & 0x000F;
450 packet_size
= block_size
[dec_mode
]+1;
452 if(packet_size
> buf_size
) {
453 av_log(avctx
, AV_LOG_ERROR
, "amr frame too short (%u, should be %u)\n", buf_size
, packet_size
);
458 /* av_log(NULL,AV_LOG_DEBUG,"packet_size=%d amrData= 0x%X %X %X %X\n",packet_size,amrData[0],amrData[1],amrData[2],amrData[3]); */
460 Decoder_Interface_Decode(s
->decState
, amrData
, data
, 0);
466 static int amr_nb_encode_frame(AVCodecContext
*avctx
,
467 unsigned char *frame
/*out*/, int buf_size
, void *data
/*in*/)
469 AMRContext
*s
= avctx
->priv_data
;
472 s
->enc_bitrate
=getBitrateMode(avctx
->bit_rate
);
474 written
= Encoder_Interface_Encode(s
->enstate
,
479 /* av_log(NULL,AV_LOG_DEBUG,"amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",written, s->enc_bitrate, frame[0] ); */
486 #if defined(CONFIG_AMR_NB) || defined(CONFIG_AMR_NB_FIXED)
488 AVCodec amr_nb_decoder
=
500 AVCodec amr_nb_encoder
=
514 /* -----------AMR wideband ------------*/
518 //To avoid duplicate typedefs from typdef in amr-nb
522 #include "amrwb_float/enc_if.h"
523 #include "amrwb_float/dec_if.h"
525 /* Common code for fixed and float version*/
526 typedef struct AMRWB_bitrates
533 static int getWBBitrateMode(int bitrate
)
535 /* Adjusted so that all bitrates can be used from commandline where
536 only a multiple of 1000 can be specified*/
537 AMRWB_bitrates rates
[]={ {0,7999,0}, //6.6kHz
539 {10000,13000,2},//12.65
540 {13001,14999,3},//14.25
541 {15000,17000,4},//15.85
542 {17001,18000,5},//18.25
543 {18001,22000,6},//19.85
544 {22001,23000,7},//23.05
545 {23001,24000,8},//23.85
551 if(rates
[i
].startrate
<=bitrate
&& rates
[i
].stoprate
>=bitrate
)
553 return(rates
[i
].mode
);
556 /*Return highest possible*/
561 typedef struct AMRWBContext
{
568 static int amr_wb_encode_init(AVCodecContext
* avctx
)
570 AMRWBContext
*s
= avctx
->priv_data
;
574 if(avctx
->sample_rate
!=16000)
576 av_log(avctx
, AV_LOG_ERROR
, "Only 16000Hz sample rate supported\n");
580 if(avctx
->channels
!=1)
582 av_log(avctx
, AV_LOG_ERROR
, "Only mono supported\n");
586 avctx
->frame_size
=320;
587 avctx
->coded_frame
= avcodec_alloc_frame();
589 s
->state
= E_IF_init();
590 s
->mode
=getWBBitrateMode(avctx
->bit_rate
);
596 static int amr_wb_encode_close(AVCodecContext
* avctx
)
598 AMRWBContext
*s
= avctx
->priv_data
;
601 av_freep(&avctx
->coded_frame
);
606 static int amr_wb_encode_frame(AVCodecContext
*avctx
,
607 unsigned char *frame
/*out*/, int buf_size
, void *data
/*in*/)
609 AMRWBContext
*s
= avctx
->priv_data
;
612 s
->mode
=getWBBitrateMode(avctx
->bit_rate
);
613 size
= E_IF_encode(s
->state
, s
->mode
, data
, frame
, s
->allow_dtx
);
617 static int amr_wb_decode_init(AVCodecContext
* avctx
)
619 AMRWBContext
*s
= avctx
->priv_data
;
622 s
->state
= D_IF_init();
624 amr_decode_fix_avctx(avctx
);
626 if(avctx
->channels
> 1)
628 av_log(avctx
, AV_LOG_ERROR
, "amr_wb: multichannel decoding not supported\n");
635 extern const UWord8 block_size
[];
637 static int amr_wb_decode_frame(AVCodecContext
* avctx
,
638 void *data
, int *data_size
,
639 uint8_t * buf
, int buf_size
)
641 AMRWBContext
*s
= avctx
->priv_data
;
651 mode
= (amrData
[0] >> 3) & 0x000F;
652 packet_size
= block_size
[mode
];
654 if(packet_size
> buf_size
) {
655 av_log(avctx
, AV_LOG_ERROR
, "amr frame too short (%u, should be %u)\n", buf_size
, packet_size
+1);
660 D_IF_decode( s
->state
, amrData
, data
, _good_frame
);
665 static int amr_wb_decode_close(AVCodecContext
* avctx
)
667 AMRWBContext
*s
= avctx
->priv_data
;
673 AVCodec amr_wb_decoder
=
678 sizeof(AMRWBContext
),
685 AVCodec amr_wb_encoder
=
690 sizeof(AMRWBContext
),
697 #endif //CONFIG_AMR_WB