gsmdec.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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->duration = 1;
  44. pkt->pts = pkt->pos / GSM_BLOCK_SIZE;
  45. return 0;
  46. }
  47. static int gsm_read_header(AVFormatContext *s)
  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->raw_codec_id;
  55. st->codec->channels = 1;
  56. st->codec->sample_rate = c->sample_rate;
  57. st->codec->bit_rate = GSM_BLOCK_SIZE * 8 * c->sample_rate / GSM_BLOCK_SAMPLES;
  58. avpriv_set_pts_info(st, 64, GSM_BLOCK_SAMPLES, GSM_SAMPLE_RATE);
  59. return 0;
  60. }
  61. static const AVOption options[] = {
  62. { "sample_rate", "", offsetof(GSMDemuxerContext, sample_rate),
  63. AV_OPT_TYPE_INT, {.i64 = GSM_SAMPLE_RATE}, 1, INT_MAX / GSM_BLOCK_SIZE,
  64. AV_OPT_FLAG_DECODING_PARAM },
  65. { NULL },
  66. };
  67. static const AVClass class = {
  68. .class_name = "gsm demuxer",
  69. .item_name = av_default_item_name,
  70. .option = options,
  71. .version = LIBAVUTIL_VERSION_INT,
  72. };
  73. AVInputFormat ff_gsm_demuxer = {
  74. .name = "gsm",
  75. .long_name = NULL_IF_CONFIG_SMALL("raw GSM"),
  76. .priv_data_size = sizeof(GSMDemuxerContext),
  77. .read_header = gsm_read_header,
  78. .read_packet = gsm_read_packet,
  79. .flags = AVFMT_GENERIC_INDEX,
  80. .extensions = "gsm",
  81. .raw_codec_id = AV_CODEC_ID_GSM,
  82. .priv_class = &class,
  83. };