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