You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

370 lines
11KB

  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. #include "avcodec.h"
  22. #include "libavutil/avstring.h"
  23. #include "libavutil/opt.h"
  24. static void amr_decode_fix_avctx(AVCodecContext *avctx)
  25. {
  26. const int is_amr_wb = 1 + (avctx->codec_id == CODEC_ID_AMR_WB);
  27. if (!avctx->sample_rate)
  28. avctx->sample_rate = 8000 * is_amr_wb;
  29. if (!avctx->channels)
  30. avctx->channels = 1;
  31. avctx->frame_size = 160 * is_amr_wb;
  32. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  33. }
  34. #if CONFIG_LIBOPENCORE_AMRNB
  35. #include <opencore-amrnb/interf_dec.h>
  36. #include <opencore-amrnb/interf_enc.h>
  37. /* Common code for fixed and float version*/
  38. typedef struct AMR_bitrates {
  39. int rate;
  40. enum Mode mode;
  41. } AMR_bitrates;
  42. /* Match desired bitrate */
  43. static int get_bitrate_mode(int bitrate, void *log_ctx)
  44. {
  45. /* make the correspondance between bitrate and mode */
  46. static const AMR_bitrates rates[] = {
  47. { 4750, MR475 }, { 5150, MR515 }, { 5900, MR59 }, { 6700, MR67 },
  48. { 7400, MR74 }, { 7950, MR795 }, { 10200, MR102 }, { 12200, MR122 }
  49. };
  50. int i, best = -1, min_diff = 0;
  51. char log_buf[200];
  52. for (i = 0; i < 8; i++) {
  53. if (rates[i].rate == bitrate)
  54. return rates[i].mode;
  55. if (best < 0 || abs(rates[i].rate - bitrate) < min_diff) {
  56. best = i;
  57. min_diff = abs(rates[i].rate - bitrate);
  58. }
  59. }
  60. /* no bitrate matching exactly, log a warning */
  61. snprintf(log_buf, sizeof(log_buf), "bitrate not supported: use one of ");
  62. for (i = 0; i < 8; i++)
  63. av_strlcatf(log_buf, sizeof(log_buf), "%.2fk, ", rates[i].rate / 1000.f);
  64. av_strlcatf(log_buf, sizeof(log_buf), "using %.2fk", rates[best].rate / 1000.f);
  65. av_log(log_ctx, AV_LOG_WARNING, "%s\n", log_buf);
  66. return best;
  67. }
  68. typedef struct AMRContext {
  69. AVClass *av_class;
  70. AVFrame frame;
  71. void *dec_state;
  72. void *enc_state;
  73. int enc_bitrate;
  74. int enc_mode;
  75. int enc_dtx;
  76. int enc_last_frame;
  77. } AMRContext;
  78. static const AVOption options[] = {
  79. { "dtx", "Allow DTX (generate comfort noise)", offsetof(AMRContext, enc_dtx), AV_OPT_TYPE_INT, { 0 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
  80. { NULL }
  81. };
  82. static const AVClass class = {
  83. "libopencore_amrnb", av_default_item_name, options, LIBAVUTIL_VERSION_INT
  84. };
  85. static av_cold int amr_nb_decode_init(AVCodecContext *avctx)
  86. {
  87. AMRContext *s = avctx->priv_data;
  88. s->dec_state = Decoder_Interface_init();
  89. if (!s->dec_state) {
  90. av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\n");
  91. return -1;
  92. }
  93. amr_decode_fix_avctx(avctx);
  94. if (avctx->channels > 1) {
  95. av_log(avctx, AV_LOG_ERROR, "amr_nb: multichannel decoding not supported\n");
  96. return AVERROR(ENOSYS);
  97. }
  98. avcodec_get_frame_defaults(&s->frame);
  99. avctx->coded_frame = &s->frame;
  100. return 0;
  101. }
  102. static av_cold int amr_nb_decode_close(AVCodecContext *avctx)
  103. {
  104. AMRContext *s = avctx->priv_data;
  105. Decoder_Interface_exit(s->dec_state);
  106. return 0;
  107. }
  108. static int amr_nb_decode_frame(AVCodecContext *avctx, void *data,
  109. int *got_frame_ptr, AVPacket *avpkt)
  110. {
  111. const uint8_t *buf = avpkt->data;
  112. int buf_size = avpkt->size;
  113. AMRContext *s = avctx->priv_data;
  114. static const uint8_t block_size[16] = { 12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0 };
  115. enum Mode dec_mode;
  116. int packet_size, ret;
  117. av_dlog(avctx, "amr_decode_frame buf=%p buf_size=%d frame_count=%d!!\n",
  118. buf, buf_size, avctx->frame_number);
  119. /* get output buffer */
  120. s->frame.nb_samples = 160;
  121. if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
  122. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  123. return ret;
  124. }
  125. dec_mode = (buf[0] >> 3) & 0x000F;
  126. packet_size = block_size[dec_mode] + 1;
  127. if (packet_size > buf_size) {
  128. av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
  129. buf_size, packet_size);
  130. return AVERROR_INVALIDDATA;
  131. }
  132. av_dlog(avctx, "packet_size=%d buf= 0x%X %X %X %X\n",
  133. packet_size, buf[0], buf[1], buf[2], buf[3]);
  134. /* call decoder */
  135. Decoder_Interface_Decode(s->dec_state, buf, (short *)s->frame.data[0], 0);
  136. *got_frame_ptr = 1;
  137. *(AVFrame *)data = s->frame;
  138. return packet_size;
  139. }
  140. AVCodec ff_libopencore_amrnb_decoder = {
  141. .name = "libopencore_amrnb",
  142. .type = AVMEDIA_TYPE_AUDIO,
  143. .id = CODEC_ID_AMR_NB,
  144. .priv_data_size = sizeof(AMRContext),
  145. .init = amr_nb_decode_init,
  146. .close = amr_nb_decode_close,
  147. .decode = amr_nb_decode_frame,
  148. .capabilities = CODEC_CAP_DR1,
  149. .long_name = NULL_IF_CONFIG_SMALL("OpenCORE Adaptive Multi-Rate (AMR) Narrow-Band"),
  150. };
  151. static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
  152. {
  153. AMRContext *s = avctx->priv_data;
  154. if (avctx->sample_rate != 8000) {
  155. av_log(avctx, AV_LOG_ERROR, "Only 8000Hz sample rate supported\n");
  156. return AVERROR(ENOSYS);
  157. }
  158. if (avctx->channels != 1) {
  159. av_log(avctx, AV_LOG_ERROR, "Only mono supported\n");
  160. return AVERROR(ENOSYS);
  161. }
  162. avctx->frame_size = 160;
  163. avctx->delay = 50;
  164. avctx->coded_frame = avcodec_alloc_frame();
  165. if (!avctx->coded_frame)
  166. return AVERROR(ENOMEM);
  167. s->enc_state = Encoder_Interface_init(s->enc_dtx);
  168. if (!s->enc_state) {
  169. av_log(avctx, AV_LOG_ERROR, "Encoder_Interface_init error\n");
  170. av_freep(&avctx->coded_frame);
  171. return -1;
  172. }
  173. s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
  174. s->enc_bitrate = avctx->bit_rate;
  175. return 0;
  176. }
  177. static av_cold int amr_nb_encode_close(AVCodecContext *avctx)
  178. {
  179. AMRContext *s = avctx->priv_data;
  180. Encoder_Interface_exit(s->enc_state);
  181. av_freep(&avctx->coded_frame);
  182. return 0;
  183. }
  184. static int amr_nb_encode_frame(AVCodecContext *avctx,
  185. unsigned char *frame/*out*/,
  186. int buf_size, void *data/*in*/)
  187. {
  188. AMRContext *s = avctx->priv_data;
  189. int written;
  190. int16_t *flush_buf = NULL;
  191. const int16_t *samples = data;
  192. if (s->enc_bitrate != avctx->bit_rate) {
  193. s->enc_mode = get_bitrate_mode(avctx->bit_rate, avctx);
  194. s->enc_bitrate = avctx->bit_rate;
  195. }
  196. if (data) {
  197. if (avctx->frame_size < 160) {
  198. flush_buf = av_mallocz(160 * sizeof(*flush_buf));
  199. if (!flush_buf)
  200. return AVERROR(ENOMEM);
  201. memcpy(flush_buf, samples, avctx->frame_size * sizeof(*flush_buf));
  202. samples = flush_buf;
  203. if (avctx->frame_size < 110)
  204. s->enc_last_frame = -1;
  205. }
  206. } else {
  207. if (s->enc_last_frame < 0)
  208. return 0;
  209. flush_buf = av_mallocz(160 * sizeof(*flush_buf));
  210. if (!flush_buf)
  211. return AVERROR(ENOMEM);
  212. samples = flush_buf;
  213. s->enc_last_frame = -1;
  214. }
  215. written = Encoder_Interface_Encode(s->enc_state, s->enc_mode, samples,
  216. frame, 0);
  217. av_dlog(avctx, "amr_nb_encode_frame encoded %u bytes, bitrate %u, first byte was %#02x\n",
  218. written, s->enc_mode, frame[0]);
  219. av_freep(&flush_buf);
  220. return written;
  221. }
  222. AVCodec ff_libopencore_amrnb_encoder = {
  223. .name = "libopencore_amrnb",
  224. .type = AVMEDIA_TYPE_AUDIO,
  225. .id = CODEC_ID_AMR_NB,
  226. .priv_data_size = sizeof(AMRContext),
  227. .init = amr_nb_encode_init,
  228. .encode = amr_nb_encode_frame,
  229. .close = amr_nb_encode_close,
  230. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_SMALL_LAST_FRAME,
  231. .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
  232. .long_name = NULL_IF_CONFIG_SMALL("OpenCORE Adaptive Multi-Rate (AMR) Narrow-Band"),
  233. .priv_class = &class,
  234. };
  235. #endif
  236. /* -----------AMR wideband ------------*/
  237. #if CONFIG_LIBOPENCORE_AMRWB
  238. #include <opencore-amrwb/dec_if.h>
  239. #include <opencore-amrwb/if_rom.h>
  240. typedef struct AMRWBContext {
  241. AVFrame frame;
  242. void *state;
  243. } AMRWBContext;
  244. static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
  245. {
  246. AMRWBContext *s = avctx->priv_data;
  247. s->state = D_IF_init();
  248. amr_decode_fix_avctx(avctx);
  249. if (avctx->channels > 1) {
  250. av_log(avctx, AV_LOG_ERROR, "amr_wb: multichannel decoding not supported\n");
  251. return AVERROR(ENOSYS);
  252. }
  253. avcodec_get_frame_defaults(&s->frame);
  254. avctx->coded_frame = &s->frame;
  255. return 0;
  256. }
  257. static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
  258. int *got_frame_ptr, AVPacket *avpkt)
  259. {
  260. const uint8_t *buf = avpkt->data;
  261. int buf_size = avpkt->size;
  262. AMRWBContext *s = avctx->priv_data;
  263. int mode, ret;
  264. int packet_size;
  265. static const uint8_t block_size[16] = {18, 24, 33, 37, 41, 47, 51, 59, 61, 6, 6, 0, 0, 0, 1, 1};
  266. /* get output buffer */
  267. s->frame.nb_samples = 320;
  268. if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) {
  269. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  270. return ret;
  271. }
  272. mode = (buf[0] >> 3) & 0x000F;
  273. packet_size = block_size[mode];
  274. if (packet_size > buf_size) {
  275. av_log(avctx, AV_LOG_ERROR, "amr frame too short (%u, should be %u)\n",
  276. buf_size, packet_size + 1);
  277. return AVERROR_INVALIDDATA;
  278. }
  279. D_IF_decode(s->state, buf, (short *)s->frame.data[0], _good_frame);
  280. *got_frame_ptr = 1;
  281. *(AVFrame *)data = s->frame;
  282. return packet_size;
  283. }
  284. static int amr_wb_decode_close(AVCodecContext *avctx)
  285. {
  286. AMRWBContext *s = avctx->priv_data;
  287. D_IF_exit(s->state);
  288. return 0;
  289. }
  290. AVCodec ff_libopencore_amrwb_decoder = {
  291. .name = "libopencore_amrwb",
  292. .type = AVMEDIA_TYPE_AUDIO,
  293. .id = CODEC_ID_AMR_WB,
  294. .priv_data_size = sizeof(AMRWBContext),
  295. .init = amr_wb_decode_init,
  296. .close = amr_wb_decode_close,
  297. .decode = amr_wb_decode_frame,
  298. .capabilities = CODEC_CAP_DR1,
  299. .long_name = NULL_IF_CONFIG_SMALL("OpenCORE Adaptive Multi-Rate (AMR) Wide-Band"),
  300. };
  301. #endif /* CONFIG_LIBOPENCORE_AMRWB */