VirtualBox

source: vbox/trunk/src/libs/ffmpeg-20060710/libavformat/au.c@ 7692

Last change on this file since 7692 was 5776, checked in by vboxsync, 17 years ago

ffmpeg: exported to OSE

File size: 5.0 KB
Line 
1/*
2 * AU encoder and decoder
3 * Copyright (c) 2001 Fabrice Bellard.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library 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 GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 "allformats.h"
30#include "avi.h"
31
32/* if we don't know the size in advance */
33#define AU_UNKOWN_SIZE ((uint32_t)(~0))
34
35/* The ffmpeg codecs we support, and the IDs they have in the file */
36static const CodecTag codec_au_tags[] = {
37 { CODEC_ID_PCM_MULAW, 1 },
38 { CODEC_ID_PCM_S16BE, 3 },
39 { CODEC_ID_PCM_ALAW, 27 },
40 { 0, 0 },
41};
42
43#ifdef CONFIG_MUXERS
44/* AUDIO_FILE header */
45static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
46{
47 if(!enc->codec_tag)
48 enc->codec_tag = codec_get_tag(codec_au_tags, enc->codec_id);
49 if(!enc->codec_tag)
50 return -1;
51 put_tag(pb, ".snd"); /* magic number */
52 put_be32(pb, 24); /* header size */
53 put_be32(pb, AU_UNKOWN_SIZE); /* data size */
54 put_be32(pb, (uint32_t)enc->codec_tag); /* codec ID */
55 put_be32(pb, enc->sample_rate);
56 put_be32(pb, (uint32_t)enc->channels);
57 return 0;
58}
59
60static int au_write_header(AVFormatContext *s)
61{
62 ByteIOContext *pb = &s->pb;
63
64 s->priv_data = NULL;
65
66 /* format header */
67 if (put_au_header(pb, s->streams[0]->codec) < 0) {
68 return -1;
69 }
70
71 put_flush_packet(pb);
72
73 return 0;
74}
75
76static int au_write_packet(AVFormatContext *s, AVPacket *pkt)
77{
78 ByteIOContext *pb = &s->pb;
79 put_buffer(pb, pkt->data, pkt->size);
80 return 0;
81}
82
83static 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_t)(file_size - 24));
94 url_fseek(pb, file_size, SEEK_SET);
95
96 put_flush_packet(pb);
97 }
98
99 return 0;
100}
101#endif //CONFIG_MUXERS
102
103static int au_probe(AVProbeData *p)
104{
105 /* check file header */
106 if (p->buf_size <= 24)
107 return 0;
108 if (p->buf[0] == '.' && p->buf[1] == 's' &&
109 p->buf[2] == 'n' && p->buf[3] == 'd')
110 return AVPROBE_SCORE_MAX;
111 else
112 return 0;
113}
114
115/* au input */
116static int au_read_header(AVFormatContext *s,
117 AVFormatParameters *ap)
118{
119 int size;
120 unsigned int tag;
121 ByteIOContext *pb = &s->pb;
122 unsigned int id, codec, channels, rate;
123 AVStream *st;
124
125 /* check ".snd" header */
126 tag = get_le32(pb);
127 if (tag != MKTAG('.', 's', 'n', 'd'))
128 return -1;
129 size = get_be32(pb); /* header size */
130 get_be32(pb); /* data size */
131
132 id = get_be32(pb);
133 rate = get_be32(pb);
134 channels = get_be32(pb);
135
136 codec = codec_get_id(codec_au_tags, id);
137
138 if (size >= 24) {
139 /* skip unused data */
140 url_fseek(pb, size - 24, SEEK_CUR);
141 }
142
143 /* now we are ready: build format streams */
144 st = av_new_stream(s, 0);
145 if (!st)
146 return -1;
147 st->codec->codec_type = CODEC_TYPE_AUDIO;
148 st->codec->codec_tag = id;
149 st->codec->codec_id = codec;
150 st->codec->channels = channels;
151 st->codec->sample_rate = rate;
152 av_set_pts_info(st, 64, 1, rate);
153 return 0;
154}
155
156#define MAX_SIZE 4096
157
158static int au_read_packet(AVFormatContext *s,
159 AVPacket *pkt)
160{
161 int ret;
162
163 if (url_feof(&s->pb))
164 return AVERROR_IO;
165 ret= av_get_packet(&s->pb, pkt, MAX_SIZE);
166 if (ret < 0)
167 return AVERROR_IO;
168 pkt->stream_index = 0;
169
170 /* note: we need to modify the packet size here to handle the last
171 packet */
172 pkt->size = ret;
173 return 0;
174}
175
176static int au_read_close(AVFormatContext *s)
177{
178 return 0;
179}
180
181static AVInputFormat au_demuxer = {
182 "au",
183 "SUN AU Format",
184 0,
185 au_probe,
186 au_read_header,
187 au_read_packet,
188 au_read_close,
189 pcm_read_seek,
190};
191
192#ifdef CONFIG_MUXERS
193static AVOutputFormat au_muxer = {
194 "au",
195 "SUN AU Format",
196 "audio/basic",
197 "au",
198 0,
199 CODEC_ID_PCM_S16BE,
200 CODEC_ID_NONE,
201 au_write_header,
202 au_write_packet,
203 au_write_trailer,
204};
205#endif //CONFIG_MUXERS
206
207int au_init(void)
208{
209 av_register_input_format(&au_demuxer);
210#ifdef CONFIG_MUXERS
211 av_register_output_format(&au_muxer);
212#endif //CONFIG_MUXERS
213 return 0;
214}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette