daud.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * D-Cinema audio demuxer
  3. * Copyright (c) 2005 Reimar Döffinger
  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. static int daud_header(AVFormatContext *s, AVFormatParameters *ap) {
  23. AVStream *st = av_new_stream(s, 0);
  24. st->codec->codec_type = CODEC_TYPE_AUDIO;
  25. st->codec->codec_id = CODEC_ID_PCM_S24DAUD;
  26. st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd');
  27. st->codec->channels = 6;
  28. st->codec->sample_rate = 96000;
  29. st->codec->bit_rate = 3 * 6 * 96000 * 8;
  30. st->codec->block_align = 3 * 6;
  31. st->codec->bits_per_sample = 24;
  32. return 0;
  33. }
  34. static int daud_packet(AVFormatContext *s, AVPacket *pkt) {
  35. ByteIOContext *pb = s->pb;
  36. int ret, size;
  37. if (url_feof(pb))
  38. return AVERROR(EIO);
  39. size = get_be16(pb);
  40. get_be16(pb); // unknown
  41. ret = av_get_packet(pb, pkt, size);
  42. pkt->stream_index = 0;
  43. return ret;
  44. }
  45. AVInputFormat daud_demuxer = {
  46. "daud",
  47. "D-Cinema audio format",
  48. 0,
  49. NULL,
  50. daud_header,
  51. daud_packet,
  52. NULL,
  53. NULL,
  54. .extensions = "302",
  55. };