FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libopencore-amr.c
Go to the documentation of this file.
1 /*
2  * AMR Audio decoder stub
3  * Copyright (c) 2003 the ffmpeg project
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21 
22 #include "libavutil/avstring.h"
24 #include "libavutil/common.h"
25 #include "libavutil/opt.h"
26 #include "avcodec.h"
27 #include "audio_frame_queue.h"
28 #include "internal.h"
29 
31 {
32  const int is_amr_wb = 1 + (avctx->codec_id == AV_CODEC_ID_AMR_WB);
33 
34  if (!avctx->sample_rate)
35  avctx->sample_rate = 8000 * is_amr_wb;
36 
37  if (avctx->channels > 1) {
38  av_log_missing_feature(avctx, "multi-channel AMR", 0);
39  return AVERROR_PATCHWELCOME;
40  }
41 
42  avctx->channels = 1;
45  return 0;
46 }
47 
48 #if CONFIG_LIBOPENCORE_AMRNB
49 
50 #include <opencore-amrnb/interf_dec.h>
51 #include <opencore-amrnb/interf_enc.h>
52 
53 typedef struct AMRContext {
55  AVFrame frame;
56  void *dec_state;
57  void *enc_state;
58  int enc_bitrate;
59  int enc_mode;
60  int enc_dtx;
61  int enc_last_frame;
62  AudioFrameQueue afq;
63 } AMRContext;
64 
65 #if CONFIG_LIBOPENCORE_AMRNB_DECODER
66 static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
67 {
68  AMRContext *s = avctx->priv_data;
69  int ret;
70 
71  if ((ret = amr_decode_fix_avctx(avctx)) < 0)
72  return ret;
73 
74  s->dec_state = Decoder_Interface_init();
75  if (!s->dec_state) {
76  av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\n");
77  return -1;
78  }
79 
81  avctx->coded_frame = &s->frame;
82 
83  return 0;
84 }
85 
86 static av_cold int amr_nb_decode_close(AVCodecContext *avctx)
87 {
88  AMRContext *s = avctx->priv_data;
89 
90  Decoder_Interface_exit(s->dec_state);
91 
92  return 0;
93 }
94 
95 static int amr_nb_decode_frame(AVCodecContext *avctx, void *data,
96  int *got_frame_ptr, AVPacket *avpkt)
97 {
98  const uint8_t *buf = avpkt->data;
99  int buf_size = avpkt->size;
100  AMRContext *s = avctx->priv_data;
101  static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
102  enum Mode dec_mode;
103  int packet_size, ret;
104 
105  av_dlog(avctx, "amr_decode_frame buf=%p buf_size=%d frame_count=%d!!\n",
106  buf, buf_size, avctx->frame_number);
107 
108  /* get output buffer */
109  s->frame.nb_samples = 160;
110  if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
111  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
112  return ret;
113  }
114 
115  dec_mode = (buf[0] >> 3) & 0x000F;
116  packet_size = block_size[dec_mode] + 1;
117 
118  if (packet_size > buf_size) {
119  av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
120  buf_size, packet_size);
121  return AVERROR_INVALIDDATA;
122  }
123 
124  av_dlog(avctx, "packet_size=%d buf= 0x%X %X %X %X\n",
125  packet_size, buf[0], buf[1], buf[2], buf[3]);
126  /* call decoder */
127  Decoder_Interface_Decode(s->dec_state, buf, (short *)s->frame.data[0], 0);
128 
129  *got_frame_ptr = 1;
130  *(AVFrame *)data = s->frame;
131 
132  return packet_size;
133 }
134 
135 AVCodec ff_libopencore_amrnb_decoder = {
136  .name = "libopencore_amrnb",
137  .type = AVMEDIA_TYPE_AUDIO,
138  .id = AV_CODEC_ID_AMR_NB,
139  .priv_data_size = sizeof(AMRContext),
140  .init = amr_nb_decode_init,
141  .close = amr_nb_decode_close,
142  .decode = amr_nb_decode_frame,
143  .capabilities = CODEC_CAP_DR1,
144  .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-NB (Adaptive Multi-Rate Narrow-Band)"),
145 };
146 #endif /* CONFIG_LIBOPENCORE_AMRNB_DECODER */
147 
148 #if CONFIG_LIBOPENCORE_AMRNB_ENCODER
149 /* Common code for fixed and float version*/
150 typedef struct AMR_bitrates {
151  int rate;
152  enum Mode mode;
153 } AMR_bitrates;
154 
155 /* Match desired bitrate */
156 static int get_bitrate_mode(int bitrate, void *log_ctx)
157 {
158  /* make the correspondance between bitrate and mode */
159  static const AMR_bitrates rates[] = {
160  { 4750, MR475 }, { 5150, MR515 }, { 5900, MR59 }, { 6700, MR67 },
161  { 7400, MR74 }, { 7950, MR795 }, { 10200, MR102 }, { 12200, MR122 }
162  };
163  int i, best = -1, min_diff = 0;
164  char log_buf[200];
165 
166  for (i = 0; i < 8; i++) {
167  if (rates[i].rate == bitrate)
168  return rates[i].mode;
169  if (best < 0 || abs(rates[i].rate - bitrate) < min_diff) {
170  best = i;
171  min_diff = abs(rates[i].rate - bitrate);
172  }
173  }
174  /* no bitrate matching exactly, log a warning */
175  snprintf(log_buf, sizeof(log_buf), "bitrate not supported: use one of ");
176  for (i = 0; i < 8; i++)
177  av_strlcatf(log_buf, sizeof(log_buf), "%.2fk, ", rates[i].rate / 1000.f);
178  av_strlcatf(log_buf, sizeof(log_buf), "using %.2fk", rates[best].rate / 1000.f);
179  av_log(log_ctx, AV_LOG_WARNING, "%s\n", log_buf);
180 
181  return best;
182 }
183 
184 static const AVOption options[] = {
185  { "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 },
186  { NULL }
187 };
188 
189 static const AVClass class = {
190  "libopencore_amrnb", av_default_item_name, options, LIBAVUTIL_VERSION_INT
191 };
192 
193 static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
194 {
195  AMRContext *s = avctx->priv_data;
196 
197  if (avctx->sample_rate != 8000 && avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) {
198  av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
199  return AVERROR(ENOSYS);
200  }
201 
202  if (avctx->channels != 1) {
203  av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
204  return AVERROR(ENOSYS);
205  }
206 
207  avctx->frame_size = 160;
208  avctx->delay = 50;
209  ff_af_queue_init(avctx, &s->afq);
210 #if FF_API_OLD_ENCODE_AUDIO
211  avctx->coded_frame = avcodec_alloc_frame();
212  if (!avctx->coded_frame)
213  return AVERROR(ENOMEM);
214 #endif
215 
216  s->enc_state = Encoder_Interface_init(s->enc_dtx);
217  if (!s->enc_state) {
218  av_log(avctx, AV_LOG_ERROR, "Encoder_Interface_init error\n");
219  av_freep(&avctx->coded_frame);
220  return -1;
221  }
222 
223  s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
224  s->enc_bitrate = avctx->bit_rate;
225 
226  return 0;
227 }
228 
229 static av_cold int amr_nb_encode_close(AVCodecContext *avctx)
230 {
231  AMRContext *s = avctx->priv_data;
232 
233  Encoder_Interface_exit(s->enc_state);
234  ff_af_queue_close(&s->afq);
235 #if FF_API_OLD_ENCODE_AUDIO
236  av_freep(&avctx->coded_frame);
237 #endif
238  return 0;
239 }
240 
241 static int amr_nb_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
242  const AVFrame *frame, int *got_packet_ptr)
243 {
244  AMRContext *s = avctx->priv_data;
245  int written, ret;
246  int16_t *flush_buf = NULL;
247  const int16_t *samples = frame ? (const int16_t *)frame->data[0] : NULL;
248 
249  if (s->enc_bitrate != avctx->bit_rate) {
250  s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
251  s->enc_bitrate = avctx->bit_rate;
252  }
253 
254  if ((ret = ff_alloc_packet2(avctx, avpkt, 32)))
255  return ret;
256 
257  if (frame) {
258  if (frame->nb_samples < avctx->frame_size) {
259  flush_buf = av_mallocz(avctx->frame_size * sizeof(*flush_buf));
260  if (!flush_buf)
261  return AVERROR(ENOMEM);
262  memcpy(flush_buf, samples, frame->nb_samples * sizeof(*flush_buf));
263  samples = flush_buf;
264  if (frame->nb_samples < avctx->frame_size - avctx->delay)
265  s->enc_last_frame = -1;
266  }
267  if ((ret = ff_af_queue_add(&s->afq, frame)) < 0) {
268  av_freep(&flush_buf);
269  return ret;
270  }
271  } else {
272  if (s->enc_last_frame < 0)
273  return 0;
274  flush_buf = av_mallocz(avctx->frame_size * sizeof(*flush_buf));
275  if (!flush_buf)
276  return AVERROR(ENOMEM);
277  samples = flush_buf;
278  s->enc_last_frame = -1;
279  }
280 
281  written = Encoder_Interface_Encode(s->enc_state, s->enc_mode, samples,
282  avpkt->data, 0);
283  av_dlog(avctx, "amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",
284  written, s->enc_mode, avpkt->data[0]);
285 
286  /* Get the next frame pts/duration */
287  ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
288  &avpkt->duration);
289 
290  avpkt->size = written;
291  *got_packet_ptr = 1;
292  av_freep(&flush_buf);
293  return 0;
294 }
295 
296 AVCodec ff_libopencore_amrnb_encoder = {
297  .name = "libopencore_amrnb",
298  .type = AVMEDIA_TYPE_AUDIO,
299  .id = AV_CODEC_ID_AMR_NB,
300  .priv_data_size = sizeof(AMRContext),
301  .init = amr_nb_encode_init,
302  .encode2 = amr_nb_encode_frame,
303  .close = amr_nb_encode_close,
305  .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
307  .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-NB (Adaptive Multi-Rate Narrow-Band)"),
308  .priv_class = &class,
309 };
310 #endif /* CONFIG_LIBOPENCORE_AMRNB_ENCODER */
311 
312 #endif /* CONFIG_LIBOPENCORE_AMRNB */
313 
314 /* -----------AMR wideband ------------*/
315 #if CONFIG_LIBOPENCORE_AMRWB_DECODER
316 
317 #include <opencore-amrwb/dec_if.h>
318 #include <opencore-amrwb/if_rom.h>
319 
320 typedef struct AMRWBContext {
321  AVFrame frame;
322  void *state;
323 } AMRWBContext;
324 
325 static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
326 {
327  AMRWBContext *s = avctx->priv_data;
328  int ret;
329 
330  if ((ret = amr_decode_fix_avctx(avctx)) < 0)
331  return ret;
332 
333  s->state = D_IF_init();
334 
336  avctx->coded_frame = &s->frame;
337 
338  return 0;
339 }
340 
341 static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
342  int *got_frame_ptr, AVPacket *avpkt)
343 {
344  const uint8_t *buf = avpkt->data;
345  int buf_size = avpkt->size;
346  AMRWBContext *s = avctx->priv_data;
347  int mode, ret;
348  int packet_size;
349  static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
350 
351  /* get output buffer */
352  s->frame.nb_samples = 320;
353  if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
354  av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
355  return ret;
356  }
357 
358  mode = (buf[0] >> 3) & 0x000F;
359  packet_size = block_size[mode];
360 
361  if (packet_size > buf_size) {
362  av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
363  buf_size, packet_size + 1);
364  return AVERROR_INVALIDDATA;
365  }
366  if (!packet_size) {
367  av_log(avctx, AV_LOG_ERROR, "amr packet_size invalid\n");
368  return AVERROR_INVALIDDATA;
369  }
370 
371  D_IF_decode(s->state, buf, (short *)s->frame.data[0], _good_frame);
372 
373  *got_frame_ptr = 1;
374  *(AVFrame *)data = s->frame;
375 
376  return packet_size;
377 }
378 
379 static int amr_wb_decode_close(AVCodecContext *avctx)
380 {
381  AMRWBContext *s = avctx->priv_data;
382 
383  D_IF_exit(s->state);
384  return 0;
385 }
386 
387 AVCodec ff_libopencore_amrwb_decoder = {
388  .name = "libopencore_amrwb",
389  .type = AVMEDIA_TYPE_AUDIO,
390  .id = AV_CODEC_ID_AMR_WB,
391  .priv_data_size = sizeof(AMRWBContext),
392  .init = amr_wb_decode_init,
393  .close = amr_wb_decode_close,
394  .decode = amr_wb_decode_frame,
395  .capabilities = CODEC_CAP_DR1,
396  .long_name = NULL_IF_CONFIG_SMALL("OpenCORE AMR-WB (Adaptive Multi-Rate Wide-Band)"),
397 };
398 
399 #endif /* CONFIG_LIBOPENCORE_AMRWB_DECODER */