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.

394 lines
12KB

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