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.2KB

  1. /*
  2. * PVF demuxer
  3. * Copyright (c) 2012 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 "avformat.h"
  22. #include "internal.h"
  23. #include "pcm.h"
  24. static int pvf_probe(AVProbeData *p)
  25. {
  26. if (!memcmp(p->buf, "PVF1\n", 5))
  27. return AVPROBE_SCORE_MAX;
  28. return 0;
  29. }
  30. static int pvf_read_header(AVFormatContext *s)
  31. {
  32. char buffer[32];
  33. AVStream *st;
  34. int bps, channels, sample_rate;
  35. avio_skip(s->pb, 5);
  36. ff_get_line(s->pb, buffer, sizeof(buffer));
  37. if (sscanf(buffer, "%d %d %d",
  38. &channels,
  39. &sample_rate,
  40. &bps) != 3)
  41. return AVERROR_INVALIDDATA;
  42. if (channels <= 0 || bps <= 0 || sample_rate <= 0)
  43. return AVERROR_INVALIDDATA;
  44. st = avformat_new_stream(s, NULL);
  45. if (!st)
  46. return AVERROR(ENOMEM);
  47. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  48. st->codec->channels = channels;
  49. st->codec->sample_rate = sample_rate;
  50. st->codec->codec_id = ff_get_pcm_codec_id(bps, 0, 1, 0xFFFF);
  51. st->codec->bits_per_coded_sample = bps;
  52. st->codec->block_align = bps * st->codec->channels / 8;
  53. avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
  54. return 0;
  55. }
  56. AVInputFormat ff_pvf_demuxer = {
  57. .name = "pvf",
  58. .long_name = NULL_IF_CONFIG_SMALL("PVF (Portable Voice Format)"),
  59. .read_probe = pvf_probe,
  60. .read_header = pvf_read_header,
  61. .read_packet = ff_pcm_read_packet,
  62. .read_seek = ff_pcm_read_seek,
  63. .extensions = "pvf",
  64. .flags = AVFMT_GENERIC_INDEX,
  65. };