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.

79 lines
2.3KB

  1. /*
  2. * Black ops audio demuxer
  3. * Copyright (c) 2013 Michael Niedermayer
  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 "libavutil/intreadwrite.h"
  22. #include "avformat.h"
  23. static int probe(AVProbeData *p)
  24. {
  25. if (p->buf_size < 2096)
  26. return 0;
  27. if ( AV_RL32(p->buf ) != 1
  28. || AV_RL32(p->buf + 8) > 100000
  29. || AV_RL32(p->buf + 12) > 8
  30. || AV_RL32(p->buf + 16) != 2096
  31. ||!AV_RL32(p->buf + 21)
  32. || AV_RL16(p->buf + 25) != 2096
  33. || AV_RL32(p->buf + 48) % AV_RL32(p->buf + 21)
  34. )
  35. return 0;
  36. return AVPROBE_SCORE_EXTENSION;
  37. }
  38. static int read_header(AVFormatContext *s)
  39. {
  40. AVStream *st = avformat_new_stream(s, NULL);
  41. if (!st)
  42. return AVERROR(ENOMEM);
  43. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  44. st->codec->codec_id = AV_CODEC_ID_ADPCM_MS;
  45. avio_rl32(s->pb);
  46. avio_rl32(s->pb);
  47. st->codec->sample_rate = avio_rl32(s->pb);
  48. st->codec->channels = avio_rl32(s->pb);
  49. s->data_offset = avio_rl32(s->pb);
  50. avio_r8(s->pb);
  51. st->codec->block_align = st->codec->channels * avio_rl32(s->pb);
  52. avio_seek(s->pb, s->data_offset, SEEK_SET);
  53. return 0;
  54. }
  55. static int read_packet(AVFormatContext *s, AVPacket *pkt)
  56. {
  57. AVStream *st = s->streams[0];
  58. return av_get_packet(s->pb, pkt, st->codec->block_align);
  59. }
  60. AVInputFormat ff_boa_demuxer = {
  61. .name = "boa",
  62. .long_name = NULL_IF_CONFIG_SMALL("Black Ops Audio"),
  63. .read_probe = probe,
  64. .read_header = read_header,
  65. .read_packet = read_packet,
  66. .flags = AVFMT_GENERIC_INDEX,
  67. };