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