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.

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