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.

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