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.

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