]> git.sesse.net Git - ffmpeg/blob - libav/au.c
- ME method compatibility with legacy apps.
[ffmpeg] / libav / au.c
1 /* 
2  * AU encoder and decoder
3  * Copyright (c) 2001 Gerard Lantau.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 /*
21  * First version by Francois Revol revol@free.fr
22  *
23  * Reference documents:
24  * http://www.opengroup.org/public/pubs/external/auformat.html
25  * http://www.goice.co.jp/member/mo/formats/au.html
26  */
27
28 #include "avformat.h"
29 #include "avi.h"
30
31 /* if we don't know the size in advance */
32 #define AU_UNKOWN_SIZE ((UINT32)(~0))
33
34 /* The ffmpeg codecs we support, and the IDs they have in the file */
35 CodecTag codec_au_tags[] = {
36     { CODEC_ID_PCM_MULAW, 1 },
37     { CODEC_ID_PCM_S16BE, 3 },
38     { CODEC_ID_PCM_ALAW, 27 },
39     { 0, 0 },
40 };
41
42 /* AUDIO_FILE header */
43 int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
44 {
45     int tag;
46
47     tag = codec_get_tag(codec_au_tags, enc->codec_id);
48     if (tag == 0)
49         return -1;
50     put_tag(pb, ".snd");       /* magic number */
51     put_be32(pb, 24);           /* header size */
52     put_be32(pb, AU_UNKOWN_SIZE); /* data size */
53     put_be32(pb, (UINT32)tag);     /* codec ID */
54     put_be32(pb, enc->sample_rate);
55     put_be32(pb, (UINT32)enc->channels);
56     return 0;
57 }
58
59 static int au_write_header(AVFormatContext *s)
60 {
61     ByteIOContext *pb = &s->pb;
62
63     s->priv_data = NULL;
64
65     /* format header */
66     if (put_au_header(pb, &s->streams[0]->codec) < 0) {
67         return -1;
68     }
69
70     put_flush_packet(pb);
71
72     return 0;
73 }
74
75 static int au_write_packet(AVFormatContext *s, int stream_index_ptr,
76                            UINT8 *buf, int size, int force_pts)
77 {
78     ByteIOContext *pb = &s->pb;
79     put_buffer(pb, buf, size);
80     return 0;
81 }
82
83 static int au_write_trailer(AVFormatContext *s)
84 {
85     ByteIOContext *pb = &s->pb;
86     offset_t file_size;
87
88     if (!url_is_streamed(&s->pb)) {
89
90         /* update file size */
91         file_size = url_ftell(pb);
92         url_fseek(pb, 8, SEEK_SET);
93         put_be32(pb, (UINT32)(file_size - 24));
94         url_fseek(pb, file_size, SEEK_SET);
95
96         put_flush_packet(pb);
97     }
98
99     return 0;
100 }
101
102 /* au input */
103 static int au_read_header(AVFormatContext *s,
104                            AVFormatParameters *ap)
105 {
106     int size;
107     unsigned int tag;
108     ByteIOContext *pb = &s->pb;
109     unsigned int id, codec, channels, rate;
110     AVStream *st;
111
112     /* check ".snd" header */
113     tag = get_le32(pb);
114     if (tag != MKTAG('.', 's', 'n', 'd'))
115         return -1;
116     size = get_be32(pb); /* header size */
117     get_be32(pb); /* data size */
118     
119     id = get_be32(pb);
120     rate = get_be32(pb);
121     channels = get_be32(pb);
122     
123     codec = codec_get_id(codec_au_tags, id);
124
125     if (size >= 24) {
126         /* skip unused data */
127         url_fseek(pb, size - 24, SEEK_CUR);
128     }
129
130     /* now we are ready: build format streams */
131     st = malloc(sizeof(AVStream));
132     if (!st)
133         return -1;
134     s->nb_streams = 1;
135     s->streams[0] = st;
136
137     st->id = 0;
138     
139     st->codec.codec_type = CODEC_TYPE_AUDIO;
140     st->codec.codec_tag = id;
141     st->codec.codec_id = codec;
142     st->codec.channels = channels;
143     st->codec.sample_rate = rate;
144     return 0;
145 }
146
147 #define MAX_SIZE 4096
148
149 static int au_read_packet(AVFormatContext *s,
150                            AVPacket *pkt)
151 {
152     int packet_size, n, ret;
153
154     if (url_feof(&s->pb))
155         return -EIO;
156     packet_size = url_get_packet_size(&s->pb);
157     n = MAX_SIZE / packet_size;
158     if (n <= 0)
159         return n = 1;
160     if (av_new_packet(pkt, n * packet_size))
161         return -EIO;
162     pkt->stream_index = 0;
163
164     ret = get_buffer(&s->pb, pkt->data, pkt->size);
165     if (ret < 0)
166         av_free_packet(pkt);
167     /* note: we need to modify the packet size here to handle the last
168        packet */
169     pkt->size = ret;
170     return ret;
171 }
172
173 static int au_read_close(AVFormatContext *s)
174 {
175     return 0;
176 }
177
178 AVFormat au_format = {
179     "au",
180     "SUN AU Format",
181     "audio/basic",
182     "au",
183     CODEC_ID_PCM_S16BE,
184     CODEC_ID_NONE,
185     au_write_header,
186     au_write_packet,
187     au_write_trailer,
188
189     au_read_header,
190     au_read_packet,
191     au_read_close,
192 };