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.

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