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.

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