]> git.sesse.net Git - ffmpeg/blob - libavformat/au.c
Merge commit 'bb6c67bb36b136de10256f0999128df4a42f9ffc'
[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 #include "riff.h"
35
36 /* if we don't know the size in advance */
37 #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
38 /* the specification requires an annotation field of at least eight bytes */
39 #define AU_HEADER_SIZE (24+8)
40
41 /* The libavcodec codecs we support, and the IDs they have in the file */
42 static const AVCodecTag codec_au_tags[] = {
43     { AV_CODEC_ID_PCM_MULAW, 1 },
44     { AV_CODEC_ID_PCM_S8, 2 },
45     { AV_CODEC_ID_PCM_S16BE, 3 },
46     { AV_CODEC_ID_PCM_S24BE, 4 },
47     { AV_CODEC_ID_PCM_S32BE, 5 },
48     { AV_CODEC_ID_PCM_F32BE, 6 },
49     { AV_CODEC_ID_PCM_F64BE, 7 },
50     { AV_CODEC_ID_ADPCM_G722, 24 },
51     { AV_CODEC_ID_PCM_ALAW, 27 },
52     { AV_CODEC_ID_NONE, 0 },
53 };
54
55 #if CONFIG_AU_MUXER
56 /* AUDIO_FILE header */
57 static int put_au_header(AVIOContext *pb, AVCodecContext *enc)
58 {
59     if(!enc->codec_tag)
60         return -1;
61     ffio_wfourcc(pb, ".snd");    /* magic number */
62     avio_wb32(pb, AU_HEADER_SIZE);  /* header size */
63     avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
64     avio_wb32(pb, (uint32_t)enc->codec_tag);     /* codec ID */
65     avio_wb32(pb, enc->sample_rate);
66     avio_wb32(pb, (uint32_t)enc->channels);
67     avio_wb64(pb, 0); /* annotation field */
68     return 0;
69 }
70
71 static int au_write_header(AVFormatContext *s)
72 {
73     AVIOContext *pb = s->pb;
74
75     s->priv_data = NULL;
76
77     /* format header */
78     if (put_au_header(pb, s->streams[0]->codec) < 0) {
79         return -1;
80     }
81
82     avio_flush(pb);
83
84     return 0;
85 }
86
87 static int au_write_packet(AVFormatContext *s, AVPacket *pkt)
88 {
89     AVIOContext *pb = s->pb;
90     avio_write(pb, pkt->data, pkt->size);
91     return 0;
92 }
93
94 static int au_write_trailer(AVFormatContext *s)
95 {
96     AVIOContext *pb = s->pb;
97     int64_t file_size;
98
99     if (s->pb->seekable) {
100
101         /* update file size */
102         file_size = avio_tell(pb);
103         avio_seek(pb, 8, SEEK_SET);
104         avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
105         avio_seek(pb, file_size, SEEK_SET);
106
107         avio_flush(pb);
108     }
109
110     return 0;
111 }
112 #endif /* CONFIG_AU_MUXER */
113
114 static int au_probe(AVProbeData *p)
115 {
116     /* check file header */
117     if (p->buf[0] == '.' && p->buf[1] == 's' &&
118         p->buf[2] == 'n' && p->buf[3] == 'd')
119         return AVPROBE_SCORE_MAX;
120     else
121         return 0;
122 }
123
124 /* au input */
125 static int au_read_header(AVFormatContext *s)
126 {
127     int size, bps, data_size = 0;
128     unsigned int tag;
129     AVIOContext *pb = s->pb;
130     unsigned int id, channels, rate;
131     enum AVCodecID codec;
132     AVStream *st;
133
134     /* check ".snd" header */
135     tag = avio_rl32(pb);
136     if (tag != MKTAG('.', 's', 'n', 'd'))
137         return -1;
138     size = avio_rb32(pb); /* header size */
139     data_size = avio_rb32(pb); /* data size in bytes */
140
141     if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
142         av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
143         return AVERROR_INVALIDDATA;
144     }
145
146     id = avio_rb32(pb);
147     rate = avio_rb32(pb);
148     channels = avio_rb32(pb);
149
150     codec = ff_codec_get_id(codec_au_tags, id);
151
152     if (!(bps = av_get_bits_per_sample(codec))) {
153         av_log_ask_for_sample(s, "could not determine bits per sample\n");
154         return AVERROR_INVALIDDATA;
155     }
156
157     if (channels == 0 || channels > 64) {
158         av_log(s, AV_LOG_ERROR, "Invalid number of channels %d\n", channels);
159         return AVERROR_INVALIDDATA;
160     }
161
162     if (size >= 24) {
163         /* skip unused data */
164         avio_skip(pb, size - 24);
165     }
166
167     /* now we are ready: build format streams */
168     st = avformat_new_stream(s, NULL);
169     if (!st)
170         return -1;
171     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
172     st->codec->codec_tag = id;
173     st->codec->codec_id = codec;
174     st->codec->channels = channels;
175     st->codec->sample_rate = rate;
176     if (data_size != AU_UNKNOWN_SIZE)
177     st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
178     avpriv_set_pts_info(st, 64, 1, rate);
179     return 0;
180 }
181
182 #define BLOCK_SIZE 1024
183
184 static int au_read_packet(AVFormatContext *s,
185                           AVPacket *pkt)
186 {
187     int ret;
188     int bpcs = av_get_bits_per_sample(s->streams[0]->codec->codec_id);
189
190     if (!bpcs)
191         return AVERROR(EINVAL);
192     ret= av_get_packet(s->pb, pkt, BLOCK_SIZE *
193                        s->streams[0]->codec->channels *
194                        bpcs >> 3);
195     if (ret < 0)
196         return ret;
197     pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
198     pkt->stream_index = 0;
199     return 0;
200 }
201
202 #if CONFIG_AU_DEMUXER
203 AVInputFormat ff_au_demuxer = {
204     .name           = "au",
205     .long_name      = NULL_IF_CONFIG_SMALL("Sun AU"),
206     .read_probe     = au_probe,
207     .read_header    = au_read_header,
208     .read_packet    = au_read_packet,
209     .read_seek      = ff_pcm_read_seek,
210     .codec_tag      = (const AVCodecTag* const []){ codec_au_tags, 0 },
211 };
212 #endif
213
214 #if CONFIG_AU_MUXER
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      = au_write_packet,
224     .write_trailer     = au_write_trailer,
225     .codec_tag         = (const AVCodecTag* const []){ codec_au_tags, 0 },
226 };
227 #endif //CONFIG_AU_MUXER