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
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg 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
|
2006-10-07 18:30:46 +03:00
|
|
|
* License along with FFmpeg; 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
|
|
|
*/
|
2012-04-07 19:55:12 +03:00
|
|
|
|
|
|
|
#include "libavutil/channel_layout.h"
|
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;
|
2012-08-05 12:11:04 +03:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_PCM_S24DAUD;
|
2005-09-02 22:18:59 +03:00
|
|
|
st->codec->codec_tag = MKTAG('d', 'a', 'u', 'd');
|
|
|
|
st->codec->channels = 6;
|
2012-04-07 19:55:12 +03:00
|
|
|
st->codec->channel_layout = AV_CH_LAYOUT_5POINT1;
|
2005-09-02 22:18:59 +03:00
|
|
|
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;
|
2014-08-07 23:12:41 +03:00
|
|
|
if (avio_feof(pb))
|
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;
|
|
|
|
}
|
|
|
|
|
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-20 23:18:26 +03:00
|
|
|
.extensions = "302,daud",
|
2005-09-02 22:18:59 +03:00
|
|
|
};
|