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