gsmdec.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * RAW GSM demuxer
  3. * Copyright (c) 2011 Justin Ruggles
  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 "libavutil/mathematics.h"
  22. #include "libavutil/opt.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #define GSM_BLOCK_SIZE 33
  26. #define GSM_BLOCK_SAMPLES 160
  27. #define GSM_SAMPLE_RATE 8000
  28. typedef struct {
  29. AVClass *class;
  30. int sample_rate;
  31. } GSMDemuxerContext;
  32. static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
  33. {
  34. int ret, size;
  35. size = GSM_BLOCK_SIZE;
  36. pkt->pos = avio_tell(s->pb);
  37. pkt->stream_index = 0;
  38. ret = av_get_packet(s->pb, pkt, size);
  39. if (ret < GSM_BLOCK_SIZE) {
  40. av_free_packet(pkt);
  41. return ret < 0 ? ret : AVERROR(EIO);
  42. }
  43. pkt->size = ret;
  44. pkt->duration = 1;
  45. pkt->pts = pkt->pos / GSM_BLOCK_SIZE;
  46. return 0;
  47. }
  48. static int gsm_read_header(AVFormatContext *s, AVFormatParameters *ap)
  49. {
  50. GSMDemuxerContext *c = s->priv_data;
  51. AVStream *st = avformat_new_stream(s, NULL);
  52. if (!st)
  53. return AVERROR(ENOMEM);
  54. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  55. st->codec->codec_id = s->iformat->value;
  56. st->codec->channels = 1;
  57. st->codec->sample_rate = c->sample_rate;
  58. st->codec->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
  59. avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
  60. return 0;
  61. }
  62. static const AVOption options[] = {
  63. { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
  64. AV_OPT_TYPE_INT, {.dbl = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
  65. AV_OPT_FLAG_DECODING_PARAM },
  66. { NULL },
  67. };
  68. static const AVClass class = {
  69. .class_name = "gsm demuxer",
  70. .item_name = av_default_item_name,
  71. .option = options,
  72. .version = LIBAVUTIL_VERSION_INT,
  73. };
  74. AVInputFormat ff_gsm_demuxer = {
  75. .name = "gsm",
  76. .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
  77. .priv_data_size = sizeof(GSMDemuxerContext),
  78. .read_header = gsm_read_header,
  79. .read_packet = gsm_read_packet,
  80. .flags = AVFMT_GENERIC_INDEX,
  81. .extensions = "gsm",
  82. .value = CODEC_ID_GSM,
  83. .priv_class = &class,
  84. };