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