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.

91 lines
2.5KB

  1. /*
  2. * SDX demuxer
  3. * Copyright (c) 2017 Paul B Mahol
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avstring.h"
  22. #include "libavutil/intreadwrite.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "pcm.h"
  26. static int sdx_probe(AVProbeData *p)
  27. {
  28. if (AV_RB32(p->buf) == AV_RB32("SDX:"))
  29. return AVPROBE_SCORE_EXTENSION;
  30. return 0;
  31. }
  32. static int sdx_read_header(AVFormatContext *s)
  33. {
  34. AVStream *st;
  35. int depth, length;
  36. avio_skip(s->pb, 4);
  37. while (!avio_feof(s->pb)) {
  38. if (avio_r8(s->pb) == 0x1a)
  39. break;
  40. }
  41. if (avio_r8(s->pb) != 1)
  42. return AVERROR_INVALIDDATA;
  43. length = avio_r8(s->pb);
  44. avio_skip(s->pb, length);
  45. avio_skip(s->pb, 4);
  46. depth = avio_r8(s->pb);
  47. st = avformat_new_stream(s, NULL);
  48. if (!st)
  49. return AVERROR(ENOMEM);
  50. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  51. st->codecpar->channels = 1;
  52. st->codecpar->sample_rate = avio_rl32(s->pb);
  53. switch (depth) {
  54. case 8:
  55. st->codecpar->codec_id = AV_CODEC_ID_PCM_U8;
  56. break;
  57. case 16:
  58. st->codecpar->codec_id = AV_CODEC_ID_PCM_U16LE;
  59. break;
  60. case 24:
  61. st->codecpar->codec_id = AV_CODEC_ID_PCM_U24LE;
  62. break;
  63. case 32:
  64. st->codecpar->codec_id = AV_CODEC_ID_PCM_U32LE;
  65. break;
  66. default:
  67. return AVERROR_INVALIDDATA;
  68. }
  69. avio_skip(s->pb, 16);
  70. st->codecpar->block_align = depth / 8;
  71. return 0;
  72. }
  73. AVInputFormat ff_sdx_demuxer = {
  74. .name = "sdx",
  75. .long_name = NULL_IF_CONFIG_SMALL("Sample Dump eXchange"),
  76. .read_probe = sdx_probe,
  77. .read_header = sdx_read_header,
  78. .read_packet = ff_pcm_read_packet,
  79. .read_seek = ff_pcm_read_seek,
  80. .extensions = "sdx",
  81. .flags = AVFMT_GENERIC_INDEX,
  82. };