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.

76 lines
2.4KB

  1. /*
  2. * ACM demuxer
  3. * Copyright (c) 2015 Paul B Mahol
  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. #include "rawdec.h"
  24. #include "internal.h"
  25. static int acm_probe(AVProbeData *p)
  26. {
  27. if (AV_RB32(p->buf) != 0x97280301)
  28. return 0;
  29. return AVPROBE_SCORE_MAX / 3 * 2;
  30. }
  31. static int acm_read_header(AVFormatContext *s)
  32. {
  33. AVStream *st;
  34. int ret;
  35. st = avformat_new_stream(s, NULL);
  36. if (!st)
  37. return AVERROR(ENOMEM);
  38. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  39. st->codecpar->codec_id = AV_CODEC_ID_INTERPLAY_ACM;
  40. ff_alloc_extradata(st->codecpar, 14);
  41. if (!st->codecpar->extradata)
  42. return AVERROR(ENOMEM);
  43. ret = avio_read(s->pb, st->codecpar->extradata, 14);
  44. if (ret < 10)
  45. return ret < 0 ? ret : AVERROR_EOF;
  46. st->codecpar->channels = AV_RL16(st->codecpar->extradata + 8);
  47. st->codecpar->sample_rate = AV_RL16(st->codecpar->extradata + 10);
  48. if (st->codecpar->channels <= 0 || st->codecpar->sample_rate <= 0)
  49. return AVERROR_INVALIDDATA;
  50. st->start_time = 0;
  51. st->duration = AV_RL32(st->codecpar->extradata + 4) / st->codecpar->channels;
  52. st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
  53. avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
  54. return 0;
  55. }
  56. AVInputFormat ff_acm_demuxer = {
  57. .name = "acm",
  58. .long_name = NULL_IF_CONFIG_SMALL("Interplay ACM"),
  59. .read_probe = acm_probe,
  60. .read_header = acm_read_header,
  61. .read_packet = ff_raw_read_partial_packet,
  62. .flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK | AVFMT_NOTIMESTAMPS,
  63. .extensions = "acm",
  64. .raw_codec_id = AV_CODEC_ID_INTERPLAY_ACM,
  65. };