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.

102 lines
2.9KB

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