2005-09-02 22:18:59 +03:00
|
|
|
/*
|
2006-10-23 11:57:54 +03:00
|
|
|
* D-Cinema audio demuxer
|
2007-07-09 21:54:11 +03:00
|
|
|
* Copyright (c) 2005 Reimar Döffinger
|
2005-09-02 22:18:59 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2005-09-02 22:18:59 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-09-02 22:18:59 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2005-09-02 22:18:59 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-09-02 22:18:59 +03:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
|
|
|
|
2012-01-12 15:20:36 +03:00
|
|
|
static int daud_header(AVFormatContext *s) {
|
2011-06-18 12:43:24 +03:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
2008-05-29 18:59:14 +03:00
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2005-09-02 22:18:59 +03:00
|
|
|
st->codec->codec_id = CODEC_ID_PCM_S24DAUD;
|
|
|
|
st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd');
|
|
|
|
st->codec->channels = 6;
|
|
|
|
st->codec->sample_rate = 96000;
|
|
|
|
st->codec->bit_rate = 3 * 6 * 96000 * 8;
|
|
|
|
st->codec->block_align = 3 * 6;
|
2008-09-08 17:24:59 +03:00
|
|
|
st->codec->bits_per_coded_sample = 24;
|
2005-09-02 22:18:59 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int daud_packet(AVFormatContext *s, AVPacket *pkt) {
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *pb = s->pb;
|
2005-09-02 22:18:59 +03:00
|
|
|
int ret, size;
|
2011-03-07 22:50:25 +02:00
|
|
|
if (pb->eof_reached)
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2011-02-21 17:43:01 +02:00
|
|
|
size = avio_rb16(pb);
|
|
|
|
avio_rb16(pb); // unknown
|
2005-09-02 22:18:59 +03:00
|
|
|
ret = av_get_packet(pb, pkt, size);
|
|
|
|
pkt->stream_index = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-04 10:35:07 +03:00
|
|
|
static int daud_write_header(struct AVFormatContext *s)
|
|
|
|
{
|
|
|
|
AVCodecContext *codec = s->streams[0]->codec;
|
|
|
|
if (codec->channels!=6 || codec->sample_rate!=96000)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int daud_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
|
|
|
{
|
2011-04-09 00:35:17 +03:00
|
|
|
if (pkt->size > 65535) {
|
|
|
|
av_log(s, AV_LOG_ERROR,
|
|
|
|
"Packet size too large for s302m. (%d > 65535)\n", pkt->size);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-02-21 20:28:17 +02:00
|
|
|
avio_wb16(s->pb, pkt->size);
|
|
|
|
avio_wb16(s->pb, 0x8010); // unknown
|
|
|
|
avio_write(s->pb, pkt->data, pkt->size);
|
2011-03-14 21:39:06 +02:00
|
|
|
avio_flush(s->pb);
|
2008-08-04 10:35:07 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CONFIG_DAUD_DEMUXER
|
2011-01-26 00:03:28 +02:00
|
|
|
AVInputFormat ff_daud_demuxer = {
|
2011-07-16 23:18:12 +03:00
|
|
|
.name = "daud",
|
2012-07-25 00:51:41 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
|
2011-07-16 23:18:12 +03:00
|
|
|
.read_header = daud_header,
|
|
|
|
.read_packet = daud_packet,
|
2012-04-06 17:50:48 +03:00
|
|
|
.extensions = "302",
|
2005-09-02 22:18:59 +03:00
|
|
|
};
|
2008-08-04 10:35:07 +03:00
|
|
|
#endif
|
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_DAUD_MUXER
|
2011-09-23 21:50:11 +03:00
|
|
|
AVOutputFormat ff_daud_muxer = {
|
|
|
|
.name = "daud",
|
2012-07-25 00:51:41 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
|
2011-09-23 21:50:11 +03:00
|
|
|
.extensions = "302",
|
|
|
|
.audio_codec = CODEC_ID_PCM_S24DAUD,
|
|
|
|
.video_codec = CODEC_ID_NONE,
|
|
|
|
.write_header = daud_write_header,
|
|
|
|
.write_packet = daud_write_packet,
|
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2008-08-04 10:35:07 +03:00
|
|
|
};
|
|
|
|
#endif
|