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.

159 lines
4.0KB

  1. /*
  2. * Sierra SOL demuxer
  3. * Copyright Konstantin Shishkov.
  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. /*
  22. * Based on documents from Game Audio Player and own research
  23. */
  24. #include "avformat.h"
  25. #include "allformats.h"
  26. #include "riff.h"
  27. #include "bswap.h"
  28. /* if we don't know the size in advance */
  29. #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
  30. static int sol_probe(AVProbeData *p)
  31. {
  32. /* check file header */
  33. uint16_t magic;
  34. magic=le2me_16(*((uint16_t*)p->buf));
  35. if ((magic == 0x0B8D || magic == 0x0C0D || magic == 0x0C8D) &&
  36. p->buf[2] == 'S' && p->buf[3] == 'O' &&
  37. p->buf[4] == 'L' && p->buf[5] == 0)
  38. return AVPROBE_SCORE_MAX;
  39. else
  40. return 0;
  41. }
  42. #define SOL_DPCM 1
  43. #define SOL_16BIT 4
  44. #define SOL_STEREO 16
  45. static int sol_codec_id(int magic, int type)
  46. {
  47. if (magic == 0x0B8D)
  48. {
  49. if (type & SOL_DPCM) return CODEC_ID_SOL_DPCM;
  50. else return CODEC_ID_PCM_U8;
  51. }
  52. if (type & SOL_DPCM)
  53. {
  54. if (type & SOL_16BIT) return CODEC_ID_SOL_DPCM;
  55. else if (magic == 0x0C8D) return CODEC_ID_SOL_DPCM;
  56. else return CODEC_ID_SOL_DPCM;
  57. }
  58. if (type & SOL_16BIT) return CODEC_ID_PCM_S16LE;
  59. return CODEC_ID_PCM_U8;
  60. }
  61. static int sol_codec_type(int magic, int type)
  62. {
  63. if (magic == 0x0B8D) return 1;//SOL_DPCM_OLD;
  64. if (type & SOL_DPCM)
  65. {
  66. if (type & SOL_16BIT) return 3;//SOL_DPCM_NEW16;
  67. else if (magic == 0x0C8D) return 1;//SOL_DPCM_OLD;
  68. else return 2;//SOL_DPCM_NEW8;
  69. }
  70. return -1;
  71. }
  72. static int sol_channels(int magic, int type)
  73. {
  74. if (magic == 0x0B8D || !(type & SOL_STEREO)) return 1;
  75. return 2;
  76. }
  77. static int sol_read_header(AVFormatContext *s,
  78. AVFormatParameters *ap)
  79. {
  80. int size;
  81. unsigned int magic,tag;
  82. ByteIOContext *pb = &s->pb;
  83. unsigned int id, codec, channels, rate, type;
  84. AVStream *st;
  85. /* check ".snd" header */
  86. magic = get_le16(pb);
  87. tag = get_le32(pb);
  88. if (tag != MKTAG('S', 'O', 'L', 0))
  89. return -1;
  90. rate = get_le16(pb);
  91. type = get_byte(pb);
  92. size = get_le32(pb);
  93. if (magic != 0x0B8D)
  94. get_byte(pb); /* newer SOLs contain padding byte */
  95. codec = sol_codec_id(magic, type);
  96. channels = sol_channels(magic, type);
  97. if (codec == CODEC_ID_SOL_DPCM)
  98. id = sol_codec_type(magic, type);
  99. else id = 0;
  100. /* now we are ready: build format streams */
  101. st = av_new_stream(s, 0);
  102. if (!st)
  103. return -1;
  104. st->codec->codec_type = CODEC_TYPE_AUDIO;
  105. st->codec->codec_tag = id;
  106. st->codec->codec_id = codec;
  107. st->codec->channels = channels;
  108. st->codec->sample_rate = rate;
  109. av_set_pts_info(st, 64, 1, rate);
  110. return 0;
  111. }
  112. #define MAX_SIZE 4096
  113. static int sol_read_packet(AVFormatContext *s,
  114. AVPacket *pkt)
  115. {
  116. int ret;
  117. if (url_feof(&s->pb))
  118. return AVERROR(EIO);
  119. ret= av_get_packet(&s->pb, pkt, MAX_SIZE);
  120. pkt->stream_index = 0;
  121. /* note: we need to modify the packet size here to handle the last
  122. packet */
  123. pkt->size = ret;
  124. return 0;
  125. }
  126. static int sol_read_close(AVFormatContext *s)
  127. {
  128. return 0;
  129. }
  130. AVInputFormat sol_demuxer = {
  131. "sol",
  132. "Sierra SOL Format",
  133. 0,
  134. sol_probe,
  135. sol_read_header,
  136. sol_read_packet,
  137. sol_read_close,
  138. pcm_read_seek,
  139. };