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.

96 lines
2.9KB

  1. /*
  2. * D-Cinema audio demuxer
  3. * Copyright (c) 2005 Reimar Döffinger
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/channel_layout.h"
  22. #include "avformat.h"
  23. static int daud_header(AVFormatContext *s) {
  24. AVStream *st = avformat_new_stream(s, NULL);
  25. if (!st)
  26. return AVERROR(ENOMEM);
  27. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  28. st->codec->codec_id = AV_CODEC_ID_PCM_S24DAUD;
  29. st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd');
  30. st->codec->channels = 6;
  31. st->codec->channel_layout = AV_CH_LAYOUT_5POINT1;
  32. st->codec->sample_rate = 96000;
  33. st->codec->bit_rate = 3 * 6 * 96000 * 8;
  34. st->codec->block_align = 3 * 6;
  35. st->codec->bits_per_coded_sample = 24;
  36. return 0;
  37. }
  38. static int daud_packet(AVFormatContext *s, AVPacket *pkt) {
  39. AVIOContext *pb = s->pb;
  40. int ret, size;
  41. if (pb->eof_reached)
  42. return AVERROR(EIO);
  43. size = avio_rb16(pb);
  44. avio_rb16(pb); // unknown
  45. ret = av_get_packet(pb, pkt, size);
  46. pkt->stream_index = 0;
  47. return ret;
  48. }
  49. static int daud_write_header(struct AVFormatContext *s)
  50. {
  51. AVCodecContext *codec = s->streams[0]->codec;
  52. if (codec->channels!=6 || codec->sample_rate!=96000)
  53. return -1;
  54. return 0;
  55. }
  56. static int daud_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  57. {
  58. if (pkt->size > 65535) {
  59. av_log(s, AV_LOG_ERROR,
  60. "Packet size too large for s302m. (%d > 65535)\n", pkt->size);
  61. return -1;
  62. }
  63. avio_wb16(s->pb, pkt->size);
  64. avio_wb16(s->pb, 0x8010); // unknown
  65. avio_write(s->pb, pkt->data, pkt->size);
  66. return 0;
  67. }
  68. #if CONFIG_DAUD_DEMUXER
  69. AVInputFormat ff_daud_demuxer = {
  70. .name = "daud",
  71. .long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
  72. .read_header = daud_header,
  73. .read_packet = daud_packet,
  74. .extensions = "302",
  75. };
  76. #endif
  77. #if CONFIG_DAUD_MUXER
  78. AVOutputFormat ff_daud_muxer = {
  79. .name = "daud",
  80. .long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
  81. .extensions = "302",
  82. .audio_codec = AV_CODEC_ID_PCM_S24DAUD,
  83. .video_codec = AV_CODEC_ID_NONE,
  84. .write_header = daud_write_header,
  85. .write_packet = daud_write_packet,
  86. .flags = AVFMT_NOTIMESTAMPS,
  87. };
  88. #endif