2005-09-02 19:18:59 +00:00
|
|
|
/*
|
2014-06-23 04:03:50 +00:00
|
|
|
* D-Cinema audio muxer
|
2007-07-09 18:54:11 +00:00
|
|
|
* Copyright (c) 2005 Reimar Döffinger
|
2005-09-02 19:18:59 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; 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
|
|
|
*/
|
2012-04-07 16:55:12 +00:00
|
|
|
|
2005-09-02 19:18:59 +00:00
|
|
|
#include "avformat.h"
|
|
|
|
|
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-04-08 21:35:17 +00: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 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);
|
2008-08-04 07:35:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-23 18:50:11 +00:00
|
|
|
AVOutputFormat ff_daud_muxer = {
|
|
|
|
.name = "daud",
|
2012-07-24 21:51:41 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
|
2011-09-23 18:50:11 +00:00
|
|
|
.extensions = "302",
|
2012-08-05 09:11:04 +00:00
|
|
|
.audio_codec = AV_CODEC_ID_PCM_S24DAUD,
|
|
|
|
.video_codec = AV_CODEC_ID_NONE,
|
2011-09-23 18:50:11 +00:00
|
|
|
.write_header = daud_write_header,
|
|
|
|
.write_packet = daud_write_packet,
|
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2008-08-04 07:35:07 +00:00
|
|
|
};
|