2005-09-02 21:18:59 +02:00
|
|
|
/*
|
2006-10-23 10:57:54 +02:00
|
|
|
* D-Cinema audio demuxer
|
2007-07-09 20:54:11 +02:00
|
|
|
* Copyright (c) 2005 Reimar Döffinger
|
2005-09-02 21:18:59 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* This file is part of Libav.
|
2006-10-07 17:30:46 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2005-09-02 21:18:59 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 17:30:46 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-09-02 21:18:59 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2005-09-02 21:18:59 +02: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 18:35:10 +01:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 23:43:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-09-02 21:18:59 +02:00
|
|
|
*/
|
|
|
|
#include "avformat.h"
|
|
|
|
|
2012-01-12 13:20:36 +01:00
|
|
|
static int daud_header(AVFormatContext *s) {
|
2011-06-18 11:43:24 +02:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
2008-05-29 17:59:14 +02:00
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
2010-03-31 01:30:55 +02:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2005-09-02 21:18:59 +02: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 16:24:59 +02:00
|
|
|
st->codec->bits_per_coded_sample = 24;
|
2005-09-02 21:18:59 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int daud_packet(AVFormatContext *s, AVPacket *pkt) {
|
2011-02-20 11:04:12 +01:00
|
|
|
AVIOContext *pb = s->pb;
|
2005-09-02 21:18:59 +02:00
|
|
|
int ret, size;
|
2011-03-07 21:50:25 +01:00
|
|
|
if (pb->eof_reached)
|
2007-07-19 17:23:32 +02:00
|
|
|
return AVERROR(EIO);
|
2011-02-21 16:43:01 +01:00
|
|
|
size = avio_rb16(pb);
|
|
|
|
avio_rb16(pb); // unknown
|
2005-09-02 21:18:59 +02:00
|
|
|
ret = av_get_packet(pb, pkt, size);
|
|
|
|
pkt->stream_index = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-04 09:35:07 +02: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-08 23:35:17 +02: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 19:28:17 +01:00
|
|
|
avio_wb16(s->pb, pkt->size);
|
|
|
|
avio_wb16(s->pb, 0x8010); // unknown
|
|
|
|
avio_write(s->pb, pkt->data, pkt->size);
|
2011-03-14 20:39:06 +01:00
|
|
|
avio_flush(s->pb);
|
2008-08-04 09:35:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CONFIG_DAUD_DEMUXER
|
2011-01-25 23:03:28 +01:00
|
|
|
AVInputFormat ff_daud_demuxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "daud",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio format"),
|
|
|
|
.read_header = daud_header,
|
|
|
|
.read_packet = daud_packet,
|
2005-09-02 21:18:59 +02:00
|
|
|
.extensions = "302",
|
|
|
|
};
|
2008-08-04 09:35:07 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-14 00:44:16 +01:00
|
|
|
#if CONFIG_DAUD_MUXER
|
2011-09-23 20:50:11 +02:00
|
|
|
AVOutputFormat ff_daud_muxer = {
|
|
|
|
.name = "daud",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio format"),
|
|
|
|
.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 09:35:07 +02:00
|
|
|
};
|
|
|
|
#endif
|