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.

397 lines
12KB

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