]> git.sesse.net Git - ffmpeg/blob - libavformat/au.c
Merge commit 'f7bf72a4a1146a7583577c9bdc066767e1ba3c6a'
[ffmpeg] / libavformat / au.c
1 /*
2  * AU muxer and demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * 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  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * 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  * First version by Francois Revol revol@free.fr
24  *
25  * Reference documents:
26  * http://www.opengroup.org/public/pubs/external/auformat.html
27  * http://www.goice.co.jp/member/mo/formats/au.html
28  */
29
30 #include "avformat.h"
31 #include "internal.h"
32 #include "avio_internal.h"
33 #include "pcm.h"
34
35 /* if we don't know the size in advance */
36 #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
37 /* the specification requires an annotation field of at least eight bytes */
38 #define AU_HEADER_SIZE (24+8)
39
40 static const AVCodecTag codec_au_tags[] = {
41     { AV_CODEC_ID_PCM_MULAW,  1 },
42     { AV_CODEC_ID_PCM_S8,     2 },
43     { AV_CODEC_ID_PCM_S16BE,  3 },
44     { AV_CODEC_ID_PCM_S24BE,  4 },
45     { AV_CODEC_ID_PCM_S32BE,  5 },
46     { AV_CODEC_ID_PCM_F32BE,  6 },
47     { AV_CODEC_ID_PCM_F64BE,  7 },
48     { AV_CODEC_ID_ADPCM_G722,24 },
49     { AV_CODEC_ID_PCM_ALAW,  27 },
50     { AV_CODEC_ID_NONE,       0 },
51 };
52
53 #if CONFIG_AU_DEMUXER
54
55 static int au_probe(AVProbeData *p)
56 {
57     if (p->buf[0] == '.' && p->buf[1] == 's' &&
58         p->buf[2] == 'n' && p->buf[3] == 'd')
59         return AVPROBE_SCORE_MAX;
60     else
61         return 0;
62 }
63
64 #define BLOCK_SIZE 1024
65
66 static int au_read_header(AVFormatContext *s)
67 {
68     int size, data_size = 0;
69     unsigned int tag;
70     AVIOContext *pb = s->pb;
71     unsigned int id, channels, rate;
72     int bps;
73     enum AVCodecID codec;
74     AVStream *st;
75
76     tag = avio_rl32(pb);
77     if (tag != MKTAG('.', 's', 'n', 'd'))
78         return AVERROR_INVALIDDATA;
79     size = avio_rb32(pb); /* header size */
80     data_size = avio_rb32(pb); /* data size in bytes */
81
82     if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
83         av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
84         return AVERROR_INVALIDDATA;
85     }
86
87     id       = avio_rb32(pb);
88     rate     = avio_rb32(pb);
89     channels = avio_rb32(pb);
90
91     if (size > 24) {
92         /* skip unused data */
93         avio_skip(pb, size - 24);
94     }
95
96     codec = ff_codec_get_id(codec_au_tags, id);
97
98     if (codec == AV_CODEC_ID_NONE) {
99         av_log_ask_for_sample(s, "unknown or unsupported codec tag: %u\n", id);
100         return AVERROR_PATCHWELCOME;
101     }
102
103     bps = av_get_bits_per_sample(codec);
104     if (!bps) {
105         av_log_ask_for_sample(s, "could not determine bits per sample\n");
106         return AVERROR_PATCHWELCOME;
107     }
108
109     if (channels == 0 || channels >= INT_MAX / (BLOCK_SIZE * bps >> 3)) {
110         av_log(s, AV_LOG_ERROR, "Invalid number of channels %u\n", channels);
111         return AVERROR_INVALIDDATA;
112     }
113
114     if (rate == 0 || rate > INT_MAX) {
115         av_log(s, AV_LOG_ERROR, "Invalid sample rate: %u\n", rate);
116         return AVERROR_INVALIDDATA;
117     }
118
119     st = avformat_new_stream(s, NULL);
120     if (!st)
121         return AVERROR(ENOMEM);
122     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
123     st->codec->codec_tag   = id;
124     st->codec->codec_id    = codec;
125     st->codec->channels    = channels;
126     st->codec->sample_rate = rate;
127     st->codec->bit_rate    = channels * rate * bps;
128     st->codec->block_align = FFMAX(bps * st->codec->channels / 8, 1);
129     if (data_size != AU_UNKNOWN_SIZE)
130     st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
131
132     st->start_time = 0;
133     avpriv_set_pts_info(st, 64, 1, rate);
134
135     return 0;
136 }
137
138 static int au_read_packet(AVFormatContext *s, AVPacket *pkt)
139 {
140     int ret;
141
142     ret = av_get_packet(s->pb, pkt, BLOCK_SIZE *
143                         s->streams[0]->codec->block_align);
144     if (ret < 0)
145         return ret;
146
147     pkt->stream_index = 0;
148     pkt->duration     = ret / s->streams[0]->codec->block_align;
149
150     return 0;
151 }
152
153 AVInputFormat ff_au_demuxer = {
154     .name        = "au",
155     .long_name   = NULL_IF_CONFIG_SMALL("Sun AU"),
156     .read_probe  = au_probe,
157     .read_header = au_read_header,
158     .read_packet = au_read_packet,
159     .read_seek   = ff_pcm_read_seek,
160     .codec_tag   = (const AVCodecTag* const []) { codec_au_tags, 0 },
161 };
162
163 #endif /* CONFIG_AU_DEMUXER */
164
165 #if CONFIG_AU_MUXER
166
167 #include "rawenc.h"
168
169 /* AUDIO_FILE header */
170 static int put_au_header(AVIOContext *pb, AVCodecContext *enc)
171 {
172     if (!enc->codec_tag)
173         return AVERROR(EINVAL);
174
175     ffio_wfourcc(pb, ".snd");                   /* magic number */
176     avio_wb32(pb, AU_HEADER_SIZE);              /* header size */
177     avio_wb32(pb, AU_UNKNOWN_SIZE);             /* data size */
178     avio_wb32(pb, enc->codec_tag);              /* codec ID */
179     avio_wb32(pb, enc->sample_rate);
180     avio_wb32(pb, enc->channels);
181     avio_wb64(pb, 0); /* annotation field */
182
183     return 0;
184 }
185
186 static int au_write_header(AVFormatContext *s)
187 {
188     AVIOContext *pb = s->pb;
189     int ret;
190
191     if ((ret = put_au_header(pb, s->streams[0]->codec)) < 0)
192         return ret;
193
194     avio_flush(pb);
195
196     return 0;
197 }
198
199 static int au_write_trailer(AVFormatContext *s)
200 {
201     AVIOContext *pb = s->pb;
202     int64_t file_size = avio_tell(pb);
203
204     if (s->pb->seekable && file_size < INT32_MAX) {
205         /* update file size */
206         avio_seek(pb, 8, SEEK_SET);
207         avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
208         avio_seek(pb, file_size, SEEK_SET);
209         avio_flush(pb);
210     }
211
212     return 0;
213 }
214
215 AVOutputFormat ff_au_muxer = {
216     .name          = "au",
217     .long_name     = NULL_IF_CONFIG_SMALL("Sun AU"),
218     .mime_type     = "audio/basic",
219     .extensions    = "au",
220     .audio_codec   = AV_CODEC_ID_PCM_S16BE,
221     .video_codec   = AV_CODEC_ID_NONE,
222     .write_header  = au_write_header,
223     .write_packet  = ff_raw_write_packet,
224     .write_trailer = au_write_trailer,
225     .codec_tag     = (const AVCodecTag* const []) { codec_au_tags, 0 },
226 };
227
228 #endif /* CONFIG_AU_MUXER */