2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2006-10-23 08:57:54 +00:00
|
|
|
* AU muxer and demuxer
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2002-04-08 12:32:01 +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
|
2002-05-25 22:34:32 +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.
|
2002-04-08 12:32:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-04-08 12:32:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:34:32 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2002-04-08 12:32:01 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* 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
|
2002-04-08 12:32:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First version by Francois Revol revol@free.fr
|
|
|
|
*
|
|
|
|
* Reference documents:
|
|
|
|
* http://www.opengroup.org/public/pubs/external/auformat.html
|
|
|
|
* http://www.goice.co.jp/member/mo/formats/au.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avformat.h"
|
2011-02-24 06:36:02 +00:00
|
|
|
#include "avio_internal.h"
|
2010-08-30 21:17:34 +00:00
|
|
|
#include "pcm.h"
|
2006-07-12 00:09:34 +00:00
|
|
|
#include "riff.h"
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
/* if we don't know the size in advance */
|
2007-03-07 00:49:49 +00:00
|
|
|
#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
/* The ffmpeg codecs we support, and the IDs they have in the file */
|
2007-01-21 01:39:17 +00:00
|
|
|
static const AVCodecTag codec_au_tags[] = {
|
2002-04-08 12:32:01 +00:00
|
|
|
{ CODEC_ID_PCM_MULAW, 1 },
|
2008-01-13 15:08:33 +00:00
|
|
|
{ CODEC_ID_PCM_S8, 2 },
|
2002-04-08 12:32:01 +00:00
|
|
|
{ CODEC_ID_PCM_S16BE, 3 },
|
2008-08-19 10:49:38 +00:00
|
|
|
{ CODEC_ID_PCM_S24BE, 4 },
|
|
|
|
{ CODEC_ID_PCM_S32BE, 5 },
|
2008-07-26 07:09:44 +00:00
|
|
|
{ CODEC_ID_PCM_F32BE, 6 },
|
2008-08-19 10:49:38 +00:00
|
|
|
{ CODEC_ID_PCM_F64BE, 7 },
|
2002-04-08 12:32:01 +00:00
|
|
|
{ CODEC_ID_PCM_ALAW, 27 },
|
2009-10-16 14:46:06 +00:00
|
|
|
{ CODEC_ID_NONE, 0 },
|
2002-04-08 12:32:01 +00:00
|
|
|
};
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AU_MUXER
|
2002-04-08 12:32:01 +00:00
|
|
|
/* AUDIO_FILE header */
|
2011-02-20 10:04:12 +00:00
|
|
|
static int put_au_header(AVIOContext *pb, AVCodecContext *enc)
|
2002-04-08 12:32:01 +00:00
|
|
|
{
|
2003-08-18 09:20:02 +00:00
|
|
|
if(!enc->codec_tag)
|
2002-04-08 12:32:01 +00:00
|
|
|
return -1;
|
2011-02-24 06:36:02 +00:00
|
|
|
ffio_wfourcc(pb, ".snd"); /* magic number */
|
2011-02-21 18:28:17 +00:00
|
|
|
avio_wb32(pb, 24); /* header size */
|
|
|
|
avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
|
|
|
|
avio_wb32(pb, (uint32_t)enc->codec_tag); /* codec ID */
|
|
|
|
avio_wb32(pb, enc->sample_rate);
|
|
|
|
avio_wb32(pb, (uint32_t)enc->channels);
|
2002-04-08 12:32:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int au_write_header(AVFormatContext *s)
|
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
s->priv_data = NULL;
|
|
|
|
|
|
|
|
/* format header */
|
2005-07-17 22:24:36 +00:00
|
|
|
if (put_au_header(pb, s->streams[0]->codec) < 0) {
|
2002-04-08 12:32:01 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-03-14 19:39:06 +00:00
|
|
|
avio_flush(pb);
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-05-29 02:06:32 +00:00
|
|
|
static int au_write_packet(AVFormatContext *s, AVPacket *pkt)
|
2002-04-08 12:32:01 +00:00
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2011-02-21 18:28:17 +00:00
|
|
|
avio_write(pb, pkt->data, pkt->size);
|
2002-04-08 12:32:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int au_write_trailer(AVFormatContext *s)
|
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2008-10-03 10:16:29 +00:00
|
|
|
int64_t file_size;
|
2002-04-08 12:32:01 +00:00
|
|
|
|
2011-03-05 20:06:46 +00:00
|
|
|
if (s->pb->seekable) {
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
/* update file size */
|
2011-03-03 19:11:45 +00:00
|
|
|
file_size = avio_tell(pb);
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, 8, SEEK_SET);
|
2011-02-21 18:28:17 +00:00
|
|
|
avio_wb32(pb, (uint32_t)(file_size - 24));
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, file_size, SEEK_SET);
|
2002-04-08 12:32:01 +00:00
|
|
|
|
2011-03-14 19:39:06 +00:00
|
|
|
avio_flush(pb);
|
2002-04-08 12:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-09-02 22:45:13 +00:00
|
|
|
#endif /* CONFIG_AU_MUXER */
|
2002-04-08 12:32:01 +00:00
|
|
|
|
2002-05-20 16:31:13 +00:00
|
|
|
static int au_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
/* check file header */
|
|
|
|
if (p->buf[0] == '.' && p->buf[1] == 's' &&
|
|
|
|
p->buf[2] == 'n' && p->buf[3] == 'd')
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-04-08 12:32:01 +00:00
|
|
|
/* au input */
|
|
|
|
static int au_read_header(AVFormatContext *s,
|
2003-11-10 18:41:45 +00:00
|
|
|
AVFormatParameters *ap)
|
2002-04-08 12:32:01 +00:00
|
|
|
{
|
2011-07-18 12:02:07 +00:00
|
|
|
int size, bps, data_size = 0;
|
2002-04-08 12:32:01 +00:00
|
|
|
unsigned int tag;
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2008-10-02 16:03:00 +00:00
|
|
|
unsigned int id, channels, rate;
|
|
|
|
enum CodecID codec;
|
2002-04-08 12:32:01 +00:00
|
|
|
AVStream *st;
|
|
|
|
|
|
|
|
/* check ".snd" header */
|
2011-02-21 15:43:01 +00:00
|
|
|
tag = avio_rl32(pb);
|
2002-04-08 12:32:01 +00:00
|
|
|
if (tag != MKTAG('.', 's', 'n', 'd'))
|
|
|
|
return -1;
|
2011-02-21 15:43:01 +00:00
|
|
|
size = avio_rb32(pb); /* header size */
|
2011-07-18 11:59:30 +00:00
|
|
|
data_size = avio_rb32(pb); /* data size in bytes */
|
|
|
|
|
2011-08-13 10:06:09 +00:00
|
|
|
if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
|
2011-07-18 11:59:30 +00:00
|
|
|
av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
id = avio_rb32(pb);
|
|
|
|
rate = avio_rb32(pb);
|
|
|
|
channels = avio_rb32(pb);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2009-06-22 23:09:34 +00:00
|
|
|
codec = ff_codec_get_id(codec_au_tags, id);
|
2002-04-08 12:32:01 +00:00
|
|
|
|
2011-07-18 12:02:07 +00:00
|
|
|
if (!(bps = av_get_bits_per_sample(codec))) {
|
2010-05-31 10:47:36 +00:00
|
|
|
av_log_ask_for_sample(s, "could not determine bits per sample\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2002-04-08 12:32:01 +00:00
|
|
|
if (size >= 24) {
|
|
|
|
/* skip unused data */
|
2011-03-15 08:14:38 +00:00
|
|
|
avio_skip(pb, size - 24);
|
2002-04-08 12:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* now we are ready: build format streams */
|
2003-08-08 17:52:30 +00:00
|
|
|
st = av_new_stream(s, 0);
|
2002-04-08 12:32:01 +00:00
|
|
|
if (!st)
|
|
|
|
return -1;
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_tag = id;
|
|
|
|
st->codec->codec_id = codec;
|
|
|
|
st->codec->channels = channels;
|
|
|
|
st->codec->sample_rate = rate;
|
2011-08-13 10:06:09 +00:00
|
|
|
if (data_size != AU_UNKNOWN_SIZE)
|
2011-07-18 12:02:07 +00:00
|
|
|
st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * bps);
|
2004-10-18 09:43:39 +00:00
|
|
|
av_set_pts_info(st, 64, 1, rate);
|
2002-04-08 12:32:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-07 13:55:38 +00:00
|
|
|
#define BLOCK_SIZE 1024
|
2002-04-08 12:32:01 +00:00
|
|
|
|
|
|
|
static int au_read_packet(AVFormatContext *s,
|
2002-07-24 17:56:25 +00:00
|
|
|
AVPacket *pkt)
|
2002-04-08 12:32:01 +00:00
|
|
|
{
|
2002-07-24 17:56:25 +00:00
|
|
|
int ret;
|
2002-04-08 12:32:01 +00:00
|
|
|
|
2009-12-07 13:55:38 +00:00
|
|
|
ret= av_get_packet(s->pb, pkt, BLOCK_SIZE *
|
|
|
|
s->streams[0]->codec->channels *
|
|
|
|
av_get_bits_per_sample(s->streams[0]->codec->codec_id) >> 3);
|
2005-05-26 20:17:12 +00:00
|
|
|
if (ret < 0)
|
2009-10-01 17:08:33 +00:00
|
|
|
return ret;
|
2002-04-08 12:32:01 +00:00
|
|
|
pkt->stream_index = 0;
|
|
|
|
|
|
|
|
/* note: we need to modify the packet size here to handle the last
|
|
|
|
packet */
|
|
|
|
pkt->size = ret;
|
2002-07-24 17:56:25 +00:00
|
|
|
return 0;
|
2002-04-08 12:32:01 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AU_DEMUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_au_demuxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "au",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("SUN AU format"),
|
|
|
|
.read_probe = au_probe,
|
|
|
|
.read_header = au_read_header,
|
|
|
|
.read_packet = au_read_packet,
|
|
|
|
.read_seek = pcm_read_seek,
|
2008-08-24 16:51:50 +00:00
|
|
|
.codec_tag= (const AVCodecTag* const []){codec_au_tags, 0},
|
2002-05-20 16:31:13 +00:00
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif
|
2002-05-20 16:31:13 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_AU_MUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVOutputFormat ff_au_muxer = {
|
2011-07-16 20:18:12 +00:00
|
|
|
.name = "au",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("SUN AU format"),
|
|
|
|
.mime_type = "audio/basic",
|
|
|
|
.extensions = "au",
|
|
|
|
.audio_codec = CODEC_ID_PCM_S16BE,
|
|
|
|
.video_codec = CODEC_ID_NONE,
|
|
|
|
.write_header = au_write_header,
|
|
|
|
.write_packet = au_write_packet,
|
|
|
|
.write_trailer = au_write_trailer,
|
2008-08-24 16:51:50 +00:00
|
|
|
.codec_tag= (const AVCodecTag* const []){codec_au_tags, 0},
|
2002-04-08 12:32:01 +00:00
|
|
|
};
|
2006-07-10 21:14:37 +00:00
|
|
|
#endif //CONFIG_AU_MUXER
|