gsmdec.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. if (buf_size < avctx->block_align) {
  61. av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
  62. return AVERROR_INVALIDDATA;
  63. }
  64. switch (avctx->codec_id) {
  65. case CODEC_ID_GSM:
  66. init_get_bits(&gb, buf, buf_size * 8);
  67. if (get_bits(&gb, 4) != 0xd)
  68. av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
  69. res = gsm_decode_block(avctx, samples, &gb);
  70. if (res < 0)
  71. return res;
  72. break;
  73. case CODEC_ID_GSM_MS:
  74. res = ff_msgsm_decode_block(avctx, samples, buf);
  75. if (res < 0)
  76. return res;
  77. }
  78. *data_size = frame_bytes;
  79. return avctx->block_align;
  80. }
  81. static void gsm_flush(AVCodecContext *avctx)
  82. {
  83. GSMContext *s = avctx->priv_data;
  84. memset(s, 0, sizeof(*s));
  85. }
  86. AVCodec ff_gsm_decoder = {
  87. .name = "gsm",
  88. .type = AVMEDIA_TYPE_AUDIO,
  89. .id = CODEC_ID_GSM,
  90. .priv_data_size = sizeof(GSMContext),
  91. .init = gsm_init,
  92. .decode = gsm_decode_frame,
  93. .flush = gsm_flush,
  94. .long_name = NULL_IF_CONFIG_SMALL("GSM"),
  95. };
  96. AVCodec ff_gsm_ms_decoder = {
  97. .name = "gsm_ms",
  98. .type = AVMEDIA_TYPE_AUDIO,
  99. .id = CODEC_ID_GSM_MS,
  100. .priv_data_size = sizeof(GSMContext),
  101. .init = gsm_init,
  102. .decode = gsm_decode_frame,
  103. .flush = gsm_flush,
  104. .long_name = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
  105. };