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.

136 lines
4.0KB

  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. #define GSM_BLOCK_SIZE 33
  25. #define GSM_BLOCK_SAMPLES 160
  26. #define GSM_SAMPLE_RATE 8000
  27. typedef struct {
  28. AVClass *class;
  29. int sample_rate;
  30. } GSMDemuxerContext;
  31. static int gsm_read_packet(AVFormatContext *s, AVPacket *pkt)
  32. {
  33. int ret, size;
  34. size = GSM_BLOCK_SIZE * 32;
  35. if (av_new_packet(pkt, size) < 0)
  36. return AVERROR(ENOMEM);
  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_free_packet(pkt);
  42. return ret < 0 ? ret : AVERROR(EIO);
  43. }
  44. pkt->size = ret;
  45. pkt->duration = ret / GSM_BLOCK_SIZE;
  46. pkt->pts = pkt->pos / GSM_BLOCK_SIZE;
  47. return 0;
  48. }
  49. static int gsm_read_header(AVFormatContext *s, AVFormatParameters *ap)
  50. {
  51. GSMDemuxerContext *c = s->priv_data;
  52. AVStream *st = avformat_new_stream(s, NULL);
  53. if (!st)
  54. return AVERROR(ENOMEM);
  55. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  56. st->codec->codec_id = s->iformat->value;
  57. st->codec->channels = 1;
  58. st->codec->sample_rate = c->sample_rate;
  59. st->codec->block_align = GSM_BLOCK_SIZE;
  60. st->codec->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
  61. av_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
  62. return 0;
  63. }
  64. static int gsm_read_seek2(AVFormatContext *s, int stream_index, int64_t min_ts,
  65. int64_t ts, int64_t max_ts, int flags)
  66. {
  67. GSMDemuxerContext *c = s->priv_data;
  68. /* convert timestamps to file positions */
  69. if (!(flags & AVSEEK_FLAG_BYTE)) {
  70. if (stream_index < 0) {
  71. AVRational bitrate_q = { GSM_BLOCK_SAMPLES, c->sample_rate * GSM_BLOCK_SIZE };
  72. ts = av_rescale_q(ts, AV_TIME_BASE_Q, bitrate_q);
  73. min_ts = av_rescale_q(min_ts, AV_TIME_BASE_Q, bitrate_q);
  74. max_ts = av_rescale_q(max_ts, AV_TIME_BASE_Q, bitrate_q);
  75. } else {
  76. ts *= GSM_BLOCK_SIZE;
  77. min_ts *= GSM_BLOCK_SIZE;
  78. max_ts *= GSM_BLOCK_SIZE;
  79. }
  80. }
  81. /* round to nearest block boundary */
  82. ts = (ts + GSM_BLOCK_SIZE / 2) / GSM_BLOCK_SIZE * GSM_BLOCK_SIZE;
  83. ts = FFMAX(0, ts);
  84. /* handle min/max */
  85. while (ts < min_ts)
  86. ts += GSM_BLOCK_SIZE;
  87. while (ts > max_ts)
  88. ts -= GSM_BLOCK_SIZE;
  89. if (ts < min_ts || ts > max_ts)
  90. return -1;
  91. return avio_seek(s->pb, ts, SEEK_SET);
  92. }
  93. static const AVOption options[] = {
  94. { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
  95. AV_OPT_TYPE_INT, {.dbl = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
  96. AV_OPT_FLAG_DECODING_PARAM },
  97. { NULL },
  98. };
  99. static const AVClass class = {
  100. .class_name = "gsm demuxer",
  101. .item_name = av_default_item_name,
  102. .option = options,
  103. .version = LIBAVUTIL_VERSION_INT,
  104. };
  105. AVInputFormat ff_gsm_demuxer = {
  106. .name = "gsm",
  107. .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
  108. .priv_data_size = sizeof(GSMDemuxerContext),
  109. .read_header = gsm_read_header,
  110. .read_packet = gsm_read_packet,
  111. .read_seek2 = gsm_read_seek2,
  112. .extensions = "gsm",
  113. .value = CODEC_ID_GSM,
  114. .priv_class = &class,
  115. };