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.

146 lines
4.1KB

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