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
24 #include "libavutil/avstring.h"
25 #include "libavutil/channel_layout.h"
26 #include "libavutil/common.h"
27 #include "libavutil/opt.h"
29 #include "audio_frame_queue.h"
32 static int amr_decode_fix_avctx(AVCodecContext *avctx)
34 const int is_amr_wb = 1 + (avctx->codec_id == AV_CODEC_ID_AMR_WB);
36 if (!avctx->sample_rate)
37 avctx->sample_rate = 8000 * is_amr_wb;
39 if (avctx->channels > 1) {
40 avpriv_report_missing_feature(avctx, "multi-channel AMR");
41 return AVERROR_PATCHWELCOME;
45 avctx->channel_layout = AV_CH_LAYOUT_MONO;
46 avctx->sample_fmt = AV_SAMPLE_FMT_S16;
50 #if CONFIG_LIBOPENCORE_AMRNB
52 #include <opencore-amrnb/interf_dec.h>
53 #include <opencore-amrnb/interf_enc.h>
55 typedef struct AMRContext {
66 #if CONFIG_LIBOPENCORE_AMRNB_DECODER
67 static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
69 AMRContext *s = avctx->priv_data;
72 if ((ret = amr_decode_fix_avctx(avctx)) < 0)
75 s->dec_state = Decoder_Interface_init();
77 av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\n");
84 static av_cold int amr_nb_decode_close(AVCodecContext *avctx)
86 AMRContext *s = avctx->priv_data;
88 Decoder_Interface_exit(s->dec_state);
93 static int amr_nb_decode_frame(AVCodecContext *avctx, void *data,
94 int *got_frame_ptr, AVPacket *avpkt)
96 AVFrame *frame = data;
97 const uint8_t *buf = avpkt->data;
98 int buf_size = avpkt->size;
99 AMRContext *s = avctx->priv_data;
100 static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
102 int packet_size, ret;
104 ff_dlog(avctx, "amr_decode_frame buf=%p buf_size=%d frame_count=%d!!\n",
105 buf, buf_size, avctx->frame_number);
107 /* get output buffer */
108 frame->nb_samples = 160;
109 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
112 dec_mode = (buf[0] >> 3) & 0x000F;
113 packet_size = block_size[dec_mode] + 1;
115 if (packet_size > buf_size) {
116 av_log(avctx, AV_LOG_ERROR, "AMR frame too short (%d, should be %d)\n",
117 buf_size, packet_size);
118 return AVERROR_INVALIDDATA;
121 ff_dlog(avctx, "packet_size=%d buf= 0x%"PRIx8" %"PRIx8" %"PRIx8" %"PRIx8"\n",
122 packet_size, buf[0], buf[1], buf[2], buf[3]);
124 Decoder_Interface_Decode(s->dec_state, buf, (short *)frame->data[0], 0);
131 AVCodec ff_libopencore_amrnb_decoder = {
132 .name = "libopencore_amrnb",
133 .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-NB (Adaptive Multi-Rate Narrow-Band)"),
134 .type = AVMEDIA_TYPE_AUDIO,
135 .id = AV_CODEC_ID_AMR_NB,
136 .priv_data_size = sizeof(AMRContext),
137 .init = amr_nb_decode_init,
138 .close = amr_nb_decode_close,
139 .decode = amr_nb_decode_frame,
140 .capabilities = AV_CODEC_CAP_DR1,
142 #endif /* CONFIG_LIBOPENCORE_AMRNB_DECODER */
144 #if CONFIG_LIBOPENCORE_AMRNB_ENCODER
145 /* Common code for fixed and float version*/
146 typedef struct AMR_bitrates {
151 /* Match desired bitrate */
152 static int get_bitrate_mode(int bitrate, void *log_ctx)
154 /* make the correspondence between bitrate and mode */
155 static const AMR_bitrates rates[] = {
156 { 4750, MR475 }, { 5150, MR515 }, { 5900, MR59 }, { 6700, MR67 },
157 { 7400, MR74 }, { 7950, MR795 }, { 10200, MR102 }, { 12200, MR122 }
159 int i, best = -1, min_diff = 0;
162 for (i = 0; i < 8; i++) {
163 if (rates[i].rate == bitrate)
164 return rates[i].mode;
165 if (best < 0 || abs(rates[i].rate - bitrate) < min_diff) {
167 min_diff = abs(rates[i].rate - bitrate);
170 /* no bitrate matching exactly, log a warning */
171 snprintf(log_buf, sizeof(log_buf), "bitrate not supported: use one of ");
172 for (i = 0; i < 8; i++)
173 av_strlcatf(log_buf, sizeof(log_buf), "%.2fk, ", rates[i].rate / 1000.f);
174 av_strlcatf(log_buf, sizeof(log_buf), "using %.2fk", rates[best].rate / 1000.f);
175 av_log(log_ctx, AV_LOG_WARNING, "%s\n", log_buf);
180 static const AVOption options[] = {
181 { "dtx", "Allow DTX (generate comfort noise)", offsetof(AMRContext, enc_dtx), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
185 static const AVClass amrnb_class = {
186 .class_name = "libopencore_amrnb",
187 .item_name = av_default_item_name,
189 .version = LIBAVUTIL_VERSION_INT,
192 static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
194 AMRContext *s = avctx->priv_data;
196 if (avctx->sample_rate != 8000 && avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) {
197 av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
198 return AVERROR(ENOSYS);
201 if (avctx->channels != 1) {
202 av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
203 return AVERROR(ENOSYS);
206 avctx->frame_size = 160;
207 avctx->initial_padding = 50;
208 ff_af_queue_init(avctx, &s->afq);
210 s->enc_state = Encoder_Interface_init(s->enc_dtx);
212 av_log(avctx, AV_LOG_ERROR, "Encoder_Interface_init error\n");
216 s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
217 s->enc_bitrate = avctx->bit_rate;
222 static av_cold int amr_nb_encode_close(AVCodecContext *avctx)
224 AMRContext *s = avctx->priv_data;
226 Encoder_Interface_exit(s->enc_state);
227 ff_af_queue_close(&s->afq);
231 static int amr_nb_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
232 const AVFrame *frame, int *got_packet_ptr)
234 AMRContext *s = avctx->priv_data;
236 int16_t *flush_buf = NULL;
237 const int16_t *samples = frame ? (const int16_t *)frame->data[0] : NULL;
239 if (s->enc_bitrate != avctx->bit_rate) {
240 s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
241 s->enc_bitrate = avctx->bit_rate;
244 if ((ret = ff_alloc_packet2(avctx, avpkt, 32, 0)) < 0)
248 if (frame->nb_samples < avctx->frame_size) {
249 flush_buf = av_mallocz_array(avctx->frame_size, sizeof(*flush_buf));
251 return AVERROR(ENOMEM);
252 memcpy(flush_buf, samples, frame->nb_samples * sizeof(*flush_buf));
254 if (frame->nb_samples < avctx->frame_size - avctx->initial_padding)
255 s->enc_last_frame = -1;
257 if ((ret = ff_af_queue_add(&s->afq, frame)) < 0) {
258 av_freep(&flush_buf);
262 if (s->enc_last_frame < 0)
264 flush_buf = av_mallocz_array(avctx->frame_size, sizeof(*flush_buf));
266 return AVERROR(ENOMEM);
268 s->enc_last_frame = -1;
271 written = Encoder_Interface_Encode(s->enc_state, s->enc_mode, samples,
273 ff_dlog(avctx, "amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",
274 written, s->enc_mode, avpkt->data[0]);
276 /* Get the next frame pts/duration */
277 ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
280 avpkt->size = written;
282 av_freep(&flush_buf);
286 AVCodec ff_libopencore_amrnb_encoder = {
287 .name = "libopencore_amrnb",
288 .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-NB (Adaptive Multi-Rate Narrow-Band)"),
289 .type = AVMEDIA_TYPE_AUDIO,
290 .id = AV_CODEC_ID_AMR_NB,
291 .priv_data_size = sizeof(AMRContext),
292 .init = amr_nb_encode_init,
293 .encode2 = amr_nb_encode_frame,
294 .close = amr_nb_encode_close,
295 .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SMALL_LAST_FRAME,
296 .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
297 AV_SAMPLE_FMT_NONE },
298 .priv_class = &amrnb_class,
300 #endif /* CONFIG_LIBOPENCORE_AMRNB_ENCODER */
302 #endif /* CONFIG_LIBOPENCORE_AMRNB */
304 /* -----------AMR wideband ------------*/
305 #if CONFIG_LIBOPENCORE_AMRWB_DECODER
307 #include <opencore-amrwb/dec_if.h>
308 #include <opencore-amrwb/if_rom.h>
310 typedef struct AMRWBContext {
314 static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
316 AMRWBContext *s = avctx->priv_data;
319 if ((ret = amr_decode_fix_avctx(avctx)) < 0)
322 s->state = D_IF_init();
327 static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
328 int *got_frame_ptr, AVPacket *avpkt)
330 AVFrame *frame = data;
331 const uint8_t *buf = avpkt->data;
332 int buf_size = avpkt->size;
333 AMRWBContext *s = avctx->priv_data;
336 static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
338 /* get output buffer */
339 frame->nb_samples = 320;
340 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
343 mode = (buf[0] >> 3) & 0x000F;
344 packet_size = block_size[mode];
346 if (packet_size > buf_size) {
347 av_log(avctx, AV_LOG_ERROR, "AMR frame too short (%d, should be %d)\n",
348 buf_size, packet_size + 1);
349 return AVERROR_INVALIDDATA;
352 av_log(avctx, AV_LOG_ERROR, "amr packet_size invalid\n");
353 return AVERROR_INVALIDDATA;
356 D_IF_decode(s->state, buf, (short *)frame->data[0], _good_frame);
363 static int amr_wb_decode_close(AVCodecContext *avctx)
365 AMRWBContext *s = avctx->priv_data;
371 AVCodec ff_libopencore_amrwb_decoder = {
372 .name = "libopencore_amrwb",
373 .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-WB (Adaptive Multi-Rate Wide-Band)"),
374 .type = AVMEDIA_TYPE_AUDIO,
375 .id = AV_CODEC_ID_AMR_WB,
376 .priv_data_size = sizeof(AMRWBContext),
377 .init = amr_wb_decode_init,
378 .close = amr_wb_decode_close,
379 .decode = amr_wb_decode_frame,
380 .capabilities = AV_CODEC_CAP_DR1,
383 #endif /* CONFIG_LIBOPENCORE_AMRWB_DECODER */