mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
19 years ago
|
/*
|
||
11 years ago
|
* D-Cinema audio muxer
|
||
18 years ago
|
* Copyright (c) 2005 Reimar Döffinger
|
||
19 years ago
|
*
|
||
18 years ago
|
* This file is part of FFmpeg.
|
||
|
*
|
||
|
* FFmpeg is free software; you can redistribute it and/or
|
||
19 years ago
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
18 years ago
|
* version 2.1 of the License, or (at your option) any later version.
|
||
19 years ago
|
*
|
||
18 years ago
|
* FFmpeg is distributed in the hope that it will be useful,
|
||
19 years ago
|
* 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
|
||
18 years ago
|
* License along with FFmpeg; if not, write to the Free Software
|
||
19 years ago
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
19 years ago
|
*/
|
||
13 years ago
|
|
||
19 years ago
|
#include "avformat.h"
|
||
|
|
||
17 years ago
|
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)
|
||
|
{
|
||
14 years ago
|
if (pkt->size > 65535) {
|
||
|
av_log(s, AV_LOG_ERROR,
|
||
|
"Packet size too large for s302m. (%d > 65535)\n", pkt->size);
|
||
|
return -1;
|
||
|
}
|
||
14 years ago
|
avio_wb16(s->pb, pkt->size);
|
||
|
avio_wb16(s->pb, 0x8010); // unknown
|
||
|
avio_write(s->pb, pkt->data, pkt->size);
|
||
17 years ago
|
return 0;
|
||
|
}
|
||
|
|
||
13 years ago
|
AVOutputFormat ff_daud_muxer = {
|
||
|
.name = "daud",
|
||
12 years ago
|
.long_name = NULL_IF_CONFIG_SMALL("D-Cinema audio"),
|
||
13 years ago
|
.extensions = "302",
|
||
12 years ago
|
.audio_codec = AV_CODEC_ID_PCM_S24DAUD,
|
||
|
.video_codec = AV_CODEC_ID_NONE,
|
||
13 years ago
|
.write_header = daud_write_header,
|
||
|
.write_packet = daud_write_packet,
|
||
|
.flags = AVFMT_NOTIMESTAMPS,
|
||
17 years ago
|
};
|