2005-09-02 22:18:59 +03:00
|
|
|
/*
|
2014-06-23 07:03:50 +03:00
|
|
|
* D-Cinema audio muxer
|
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
|
|
|
*/
|
2012-04-07 19:55:12 +03:00
|
|
|
|
2005-09-02 22:18:59 +03:00
|
|
|
#include "avformat.h"
|
|
|
|
|
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);
|
2008-08-04 10:35:07 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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",
|
2012-08-05 12:11:04 +03:00
|
|
|
.audio_codec = AV_CODEC_ID_PCM_S24DAUD,
|
|
|
|
.video_codec = AV_CODEC_ID_NONE,
|
2011-09-23 21:50:11 +03:00
|
|
|
.write_header = daud_write_header,
|
|
|
|
.write_packet = daud_write_packet,
|
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2008-08-04 10:35:07 +03:00
|
|
|
};
|