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.

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