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.

117 lines
3.3KB

  1. /*
  2. * gsm 06.10 decoder
  3. * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  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. /**
  22. * @file
  23. * GSM decoder
  24. */
  25. #include "avcodec.h"
  26. #include "get_bits.h"
  27. #include "msgsmdec.h"
  28. #include "gsmdec_template.c"
  29. static av_cold int gsm_init(AVCodecContext *avctx)
  30. {
  31. avctx->channels = 1;
  32. if (!avctx->sample_rate)
  33. avctx->sample_rate = 8000;
  34. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  35. switch (avctx->codec_id) {
  36. case CODEC_ID_GSM:
  37. avctx->frame_size = GSM_FRAME_SIZE;
  38. avctx->block_align = GSM_BLOCK_SIZE;
  39. break;
  40. case CODEC_ID_GSM_MS:
  41. avctx->frame_size = 2 * GSM_FRAME_SIZE;
  42. avctx->block_align = GSM_MS_BLOCK_SIZE;
  43. }
  44. return 0;
  45. }
  46. static int gsm_decode_frame(AVCodecContext *avctx, void *data,
  47. int *data_size, AVPacket *avpkt)
  48. {
  49. int res;
  50. GetBitContext gb;
  51. const uint8_t *buf = avpkt->data;
  52. int buf_size = avpkt->size;
  53. int16_t *samples = data;
  54. int frame_bytes = avctx->frame_size *
  55. av_get_bytes_per_sample(avctx->sample_fmt);
  56. if (*data_size < frame_bytes) {
  57. av_log(avctx, AV_LOG_ERROR, "Output buffer is too small\n");
  58. return AVERROR(EINVAL);
  59. }
  60. *data_size = 0;
  61. if(buf_size < avctx->block_align)
  62. return AVERROR_INVALIDDATA;
  63. switch (avctx->codec_id) {
  64. case CODEC_ID_GSM:
  65. init_get_bits(&gb, buf, buf_size * 8);
  66. if (get_bits(&gb, 4) != 0xd)
  67. av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
  68. res = gsm_decode_block(avctx, samples, &gb);
  69. if (res < 0)
  70. return res;
  71. break;
  72. case CODEC_ID_GSM_MS:
  73. res = ff_msgsm_decode_block(avctx, samples, buf);
  74. if (res < 0)
  75. return res;
  76. }
  77. *data_size = frame_bytes;
  78. return avctx->block_align;
  79. }
  80. static void gsm_flush(AVCodecContext *avctx)
  81. {
  82. GSMContext *s = avctx->priv_data;
  83. memset(s, 0, sizeof(*s));
  84. }
  85. AVCodec ff_gsm_decoder = {
  86. .name = "gsm",
  87. .type = AVMEDIA_TYPE_AUDIO,
  88. .id = CODEC_ID_GSM,
  89. .priv_data_size = sizeof(GSMContext),
  90. .init = gsm_init,
  91. .decode = gsm_decode_frame,
  92. .flush = gsm_flush,
  93. .long_name = NULL_IF_CONFIG_SMALL("GSM"),
  94. };
  95. AVCodec ff_gsm_ms_decoder = {
  96. .name = "gsm_ms",
  97. .type = AVMEDIA_TYPE_AUDIO,
  98. .id = CODEC_ID_GSM_MS,
  99. .priv_data_size = sizeof(GSMContext),
  100. .init = gsm_init,
  101. .decode = gsm_decode_frame,
  102. .flush = gsm_flush,
  103. .long_name = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
  104. };