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.

134 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. #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 * 32;
  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 = ret / GSM_BLOCK_SIZE;
  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->block_align = GSM_BLOCK_SIZE;
  59. st->codec->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
  60. avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
  61. return 0;
  62. }
  63. static int gsm_read_seek2(AVFormatContext *s, int stream_index, int64_t min_ts,
  64. int64_t ts, int64_t max_ts, int flags)
  65. {
  66. GSMDemuxerContext *c = s->priv_data;
  67. /* convert timestamps to file positions */
  68. if (!(flags & AVSEEK_FLAG_BYTE)) {
  69. if (stream_index < 0) {
  70. AVRational bitrate_q = { GSM_BLOCK_SAMPLES, c->sample_rate * GSM_BLOCK_SIZE };
  71. ts = av_rescale_q(ts, AV_TIME_BASE_Q, bitrate_q);
  72. min_ts = av_rescale_q(min_ts, AV_TIME_BASE_Q, bitrate_q);
  73. max_ts = av_rescale_q(max_ts, AV_TIME_BASE_Q, bitrate_q);
  74. } else {
  75. ts *= GSM_BLOCK_SIZE;
  76. min_ts *= GSM_BLOCK_SIZE;
  77. max_ts *= GSM_BLOCK_SIZE;
  78. }
  79. }
  80. /* round to nearest block boundary */
  81. ts = (ts + GSM_BLOCK_SIZE / 2) / GSM_BLOCK_SIZE * GSM_BLOCK_SIZE;
  82. ts = FFMAX(0, ts);
  83. /* handle min/max */
  84. while (ts < min_ts)
  85. ts += GSM_BLOCK_SIZE;
  86. while (ts > max_ts)
  87. ts -= GSM_BLOCK_SIZE;
  88. if (ts < min_ts || ts > max_ts)
  89. return -1;
  90. return avio_seek(s->pb, ts, SEEK_SET);
  91. }
  92. static const AVOption options[] = {
  93. { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
  94. AV_OPT_TYPE_INT, {.dbl = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
  95. AV_OPT_FLAG_DECODING_PARAM },
  96. { NULL },
  97. };
  98. static const AVClass class = {
  99. .class_name = "gsm demuxer",
  100. .item_name = av_default_item_name,
  101. .option = options,
  102. .version = LIBAVUTIL_VERSION_INT,
  103. };
  104. AVInputFormat ff_gsm_demuxer = {
  105. .name = "gsm",
  106. .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
  107. .priv_data_size = sizeof(GSMDemuxerContext),
  108. .read_header = gsm_read_header,
  109. .read_packet = gsm_read_packet,
  110. .read_seek2 = gsm_read_seek2,
  111. .extensions = "gsm",
  112. .value = CODEC_ID_GSM,
  113. .priv_class = &class,
  114. };