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.

156 lines
4.3KB

  1. /*
  2. * Creative Voice File demuxer.
  3. * Copyright (c) 2006 Aurelien Jacobs <aurel@gnuage.org>
  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 St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "voc.h"
  22. static int voc_probe(AVProbeData *p)
  23. {
  24. int version, check;
  25. if (p->buf_size < 26)
  26. return 0;
  27. if (memcmp(p->buf, voc_magic, sizeof(voc_magic) - 1))
  28. return 0;
  29. version = p->buf[22] | (p->buf[23] << 8);
  30. check = p->buf[24] | (p->buf[25] << 8);
  31. if (~version + 0x1234 != check)
  32. return 10;
  33. return AVPROBE_SCORE_MAX;
  34. }
  35. static int voc_read_header(AVFormatContext *s, AVFormatParameters *ap)
  36. {
  37. voc_dec_context_t *voc = s->priv_data;
  38. ByteIOContext *pb = &s->pb;
  39. int header_size;
  40. AVStream *st;
  41. url_fskip(pb, 20);
  42. header_size = get_le16(pb) - 22;
  43. if (header_size != 4) {
  44. av_log(s, AV_LOG_ERROR, "unknown header size: %d\n", header_size);
  45. return AVERROR_NOTSUPP;
  46. }
  47. url_fskip(pb, header_size);
  48. st = av_new_stream(s, 0);
  49. if (!st)
  50. return AVERROR_NOMEM;
  51. st->codec->codec_type = CODEC_TYPE_AUDIO;
  52. voc->remaining_size = 0;
  53. return 0;
  54. }
  55. int
  56. voc_get_packet(AVFormatContext *s, AVPacket *pkt, AVStream *st, int max_size)
  57. {
  58. voc_dec_context_t *voc = s->priv_data;
  59. AVCodecContext *dec = st->codec;
  60. ByteIOContext *pb = &s->pb;
  61. voc_type_t type;
  62. int size;
  63. int sample_rate = 0;
  64. int channels = 1;
  65. while (!voc->remaining_size) {
  66. type = get_byte(pb);
  67. if (type == VOC_TYPE_EOF)
  68. return AVERROR_IO;
  69. voc->remaining_size = get_le24(pb);
  70. max_size -= 4;
  71. switch (type) {
  72. case VOC_TYPE_VOICE_DATA:
  73. dec->sample_rate = 1000000 / (256 - get_byte(pb));
  74. if (sample_rate)
  75. dec->sample_rate = sample_rate;
  76. dec->channels = channels;
  77. dec->codec_id = codec_get_id(voc_codec_tags, get_byte(pb));
  78. dec->bits_per_sample = av_get_bits_per_sample(dec->codec_id);
  79. voc->remaining_size -= 2;
  80. max_size -= 2;
  81. channels = 1;
  82. break;
  83. case VOC_TYPE_VOICE_DATA_CONT:
  84. break;
  85. case VOC_TYPE_EXTENDED:
  86. sample_rate = get_le16(pb);
  87. get_byte(pb);
  88. channels = get_byte(pb) + 1;
  89. sample_rate = 256000000 / (channels * (65536 - sample_rate));
  90. voc->remaining_size = 0;
  91. max_size -= 4;
  92. break;
  93. case VOC_TYPE_NEW_VOICE_DATA:
  94. dec->sample_rate = get_le32(pb);
  95. dec->bits_per_sample = get_byte(pb);
  96. dec->channels = get_byte(pb);
  97. dec->codec_id = codec_get_id(voc_codec_tags, get_le16(pb));
  98. url_fskip(pb, 4);
  99. voc->remaining_size -= 12;
  100. max_size -= 12;
  101. break;
  102. default:
  103. url_fskip(pb, voc->remaining_size);
  104. max_size -= voc->remaining_size;
  105. voc->remaining_size = 0;
  106. break;
  107. }
  108. }
  109. dec->bit_rate = dec->sample_rate * dec->bits_per_sample;
  110. if (max_size <= 0)
  111. max_size = 2048;
  112. size = FFMIN(voc->remaining_size, max_size);
  113. voc->remaining_size -= size;
  114. return av_get_packet(pb, pkt, size);
  115. }
  116. static int voc_read_packet(AVFormatContext *s, AVPacket *pkt)
  117. {
  118. return voc_get_packet(s, pkt, s->streams[0], 0);
  119. }
  120. static int voc_read_close(AVFormatContext *s)
  121. {
  122. return 0;
  123. }
  124. AVInputFormat voc_demuxer = {
  125. "voc",
  126. "Creative Voice File format",
  127. sizeof(voc_dec_context_t),
  128. voc_probe,
  129. voc_read_header,
  130. voc_read_packet,
  131. voc_read_close,
  132. .codec_tag=(const AVCodecTag*[]){voc_codec_tags, 0},
  133. };