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.

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