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.

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