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.

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