au.c 5.26 KB
Newer Older
1
/*
2
 * AU muxer and demuxer
3
 * Copyright (c) 2001 Fabrice Bellard
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 21 22 23 24 25 26 27 28 29 30
 */

/*
 * 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"
31
#include "pcm.h"
32
#include "riff.h"
33 34

/* if we don't know the size in advance */
35
#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
36 37

/* The ffmpeg codecs we support, and the IDs they have in the file */
38
static const AVCodecTag codec_au_tags[] = {
39
    { CODEC_ID_PCM_MULAW, 1 },
40
    { CODEC_ID_PCM_S8, 2 },
41
    { CODEC_ID_PCM_S16BE, 3 },
42 43
    { CODEC_ID_PCM_S24BE, 4 },
    { CODEC_ID_PCM_S32BE, 5 },
44
    { CODEC_ID_PCM_F32BE, 6 },
45
    { CODEC_ID_PCM_F64BE, 7 },
46
    { CODEC_ID_PCM_ALAW, 27 },
47
    { CODEC_ID_NONE, 0 },
48 49
};

50
#if CONFIG_AU_MUXER
51
/* AUDIO_FILE header */
52
static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
53
{
54
    if(!enc->codec_tag)
55 56 57
        return -1;
    put_tag(pb, ".snd");       /* magic number */
    put_be32(pb, 24);           /* header size */
58
    put_be32(pb, AU_UNKNOWN_SIZE); /* data size */
59
    put_be32(pb, (uint32_t)enc->codec_tag);     /* codec ID */
60
    put_be32(pb, enc->sample_rate);
61
    put_be32(pb, (uint32_t)enc->channels);
62 63 64 65 66
    return 0;
}

static int au_write_header(AVFormatContext *s)
{
67
    ByteIOContext *pb = s->pb;
68 69 70 71

    s->priv_data = NULL;

    /* format header */
72
    if (put_au_header(pb, s->streams[0]->codec) < 0) {
73 74 75 76 77 78 79 80
        return -1;
    }

    put_flush_packet(pb);

    return 0;
}

81
static int au_write_packet(AVFormatContext *s, AVPacket *pkt)
82
{
83
    ByteIOContext *pb = s->pb;
84
    put_buffer(pb, pkt->data, pkt->size);
85 86 87 88 89
    return 0;
}

static int au_write_trailer(AVFormatContext *s)
{
90
    ByteIOContext *pb = s->pb;
91
    int64_t file_size;
92

93
    if (!url_is_streamed(s->pb)) {
94 95 96 97

        /* update file size */
        file_size = url_ftell(pb);
        url_fseek(pb, 8, SEEK_SET);
98
        put_be32(pb, (uint32_t)(file_size - 24));
99 100 101 102 103 104 105
        url_fseek(pb, file_size, SEEK_SET);

        put_flush_packet(pb);
    }

    return 0;
}
106
#endif /* CONFIG_AU_MUXER */
107

Fabrice Bellard's avatar
Fabrice Bellard committed
108 109 110 111 112 113 114 115 116 117
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;
}

118 119
/* au input */
static int au_read_header(AVFormatContext *s,
120
                          AVFormatParameters *ap)
121 122 123
{
    int size;
    unsigned int tag;
124
    ByteIOContext *pb = s->pb;
125 126
    unsigned int id, channels, rate;
    enum CodecID codec;
127 128 129 130 131 132 133 134
    AVStream *st;

    /* check ".snd" header */
    tag = get_le32(pb);
    if (tag != MKTAG('.', 's', 'n', 'd'))
        return -1;
    size = get_be32(pb); /* header size */
    get_be32(pb); /* data size */
135

136 137 138
    id = get_be32(pb);
    rate = get_be32(pb);
    channels = get_be32(pb);
139

140
    codec = ff_codec_get_id(codec_au_tags, id);
141

142 143 144 145 146
    if (!av_get_bits_per_sample(codec)) {
        av_log_ask_for_sample(s, "could not determine bits per sample\n");
        return AVERROR_INVALIDDATA;
    }

147 148 149 150 151 152
    if (size >= 24) {
        /* skip unused data */
        url_fseek(pb, size - 24, SEEK_CUR);
    }

    /* now we are ready: build format streams */
153
    st = av_new_stream(s, 0);
154 155
    if (!st)
        return -1;
156
    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
157 158 159 160
    st->codec->codec_tag = id;
    st->codec->codec_id = codec;
    st->codec->channels = channels;
    st->codec->sample_rate = rate;
161
    av_set_pts_info(st, 64, 1, rate);
162 163 164
    return 0;
}

165
#define BLOCK_SIZE 1024
166 167

static int au_read_packet(AVFormatContext *s,
168
                          AVPacket *pkt)
169
{
170
    int ret;
171

172 173 174
    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);
Michael Niedermayer's avatar
Michael Niedermayer committed
175
    if (ret < 0)
176
        return ret;
177 178 179 180 181
    pkt->stream_index = 0;

    /* note: we need to modify the packet size here to handle the last
       packet */
    pkt->size = ret;
182
    return 0;
183 184
}

185
#if CONFIG_AU_DEMUXER
186
AVInputFormat au_demuxer = {
Fabrice Bellard's avatar
Fabrice Bellard committed
187
    "au",
188
    NULL_IF_CONFIG_SMALL("SUN AU format"),
Fabrice Bellard's avatar
Fabrice Bellard committed
189 190 191 192
    0,
    au_probe,
    au_read_header,
    au_read_packet,
193
    NULL,
194
    pcm_read_seek,
195
    .codec_tag= (const AVCodecTag* const []){codec_au_tags, 0},
Fabrice Bellard's avatar
Fabrice Bellard committed
196
};
197
#endif
Fabrice Bellard's avatar
Fabrice Bellard committed
198

199
#if CONFIG_AU_MUXER
200
AVOutputFormat au_muxer = {
201
    "au",
202
    NULL_IF_CONFIG_SMALL("SUN AU format"),
203 204
    "audio/basic",
    "au",
Fabrice Bellard's avatar
Fabrice Bellard committed
205
    0,
206 207 208 209 210
    CODEC_ID_PCM_S16BE,
    CODEC_ID_NONE,
    au_write_header,
    au_write_packet,
    au_write_trailer,
211
    .codec_tag= (const AVCodecTag* const []){codec_au_tags, 0},
212
};
213
#endif //CONFIG_AU_MUXER