3 * Copyright (c) 2001 Fabrice Bellard.
5 * This file is part of FFmpeg.
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.
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.
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
23 * First version by Francois Revol revol@free.fr
25 * Reference documents:
26 * http://www.opengroup.org/public/pubs/external/auformat.html
27 * http://www.goice.co.jp/member/mo/formats/au.html
34 /* if we don't know the size in advance */
35 #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
37 /* The ffmpeg codecs we support, and the IDs they have in the file */
38 static const AVCodecTag codec_au_tags
[] = {
39 { CODEC_ID_PCM_MULAW
, 1 },
40 { CODEC_ID_PCM_S8
, 2 },
41 { CODEC_ID_PCM_S16BE
, 3 },
42 { CODEC_ID_PCM_ALAW
, 27 },
47 /* AUDIO_FILE header */
48 static int put_au_header(ByteIOContext
*pb
, AVCodecContext
*enc
)
52 put_tag(pb
, ".snd"); /* magic number */
53 put_be32(pb
, 24); /* header size */
54 put_be32(pb
, AU_UNKNOWN_SIZE
); /* data size */
55 put_be32(pb
, (uint32_t)enc
->codec_tag
); /* codec ID */
56 put_be32(pb
, enc
->sample_rate
);
57 put_be32(pb
, (uint32_t)enc
->channels
);
61 static int au_write_header(AVFormatContext
*s
)
63 ByteIOContext
*pb
= s
->pb
;
68 if (put_au_header(pb
, s
->streams
[0]->codec
) < 0) {
77 static int au_write_packet(AVFormatContext
*s
, AVPacket
*pkt
)
79 ByteIOContext
*pb
= s
->pb
;
80 put_buffer(pb
, pkt
->data
, pkt
->size
);
84 static int au_write_trailer(AVFormatContext
*s
)
86 ByteIOContext
*pb
= s
->pb
;
89 if (!url_is_streamed(s
->pb
)) {
91 /* update file size */
92 file_size
= url_ftell(pb
);
93 url_fseek(pb
, 8, SEEK_SET
);
94 put_be32(pb
, (uint32_t)(file_size
- 24));
95 url_fseek(pb
, file_size
, SEEK_SET
);
102 #endif //CONFIG_MUXERS
104 static int au_probe(AVProbeData
*p
)
106 /* check file header */
107 if (p
->buf
[0] == '.' && p
->buf
[1] == 's' &&
108 p
->buf
[2] == 'n' && p
->buf
[3] == 'd')
109 return AVPROBE_SCORE_MAX
;
115 static int au_read_header(AVFormatContext
*s
,
116 AVFormatParameters
*ap
)
120 ByteIOContext
*pb
= s
->pb
;
121 unsigned int id
, codec
, channels
, rate
;
124 /* check ".snd" header */
126 if (tag
!= MKTAG('.', 's', 'n', 'd'))
128 size
= get_be32(pb
); /* header size */
129 get_be32(pb
); /* data size */
133 channels
= get_be32(pb
);
135 codec
= codec_get_id(codec_au_tags
, id
);
138 /* skip unused data */
139 url_fseek(pb
, size
- 24, SEEK_CUR
);
142 /* now we are ready: build format streams */
143 st
= av_new_stream(s
, 0);
146 st
->codec
->codec_type
= CODEC_TYPE_AUDIO
;
147 st
->codec
->codec_tag
= id
;
148 st
->codec
->codec_id
= codec
;
149 st
->codec
->channels
= channels
;
150 st
->codec
->sample_rate
= rate
;
151 av_set_pts_info(st
, 64, 1, rate
);
155 #define MAX_SIZE 4096
157 static int au_read_packet(AVFormatContext
*s
,
164 ret
= av_get_packet(s
->pb
, pkt
, MAX_SIZE
);
167 pkt
->stream_index
= 0;
169 /* note: we need to modify the packet size here to handle the last
175 #ifdef CONFIG_AU_DEMUXER
176 AVInputFormat au_demuxer
= {
178 NULL_IF_CONFIG_SMALL("SUN AU format"),
185 .codec_tag
= (const AVCodecTag
*[]){codec_au_tags
, 0},
189 #ifdef CONFIG_AU_MUXER
190 AVOutputFormat au_muxer
= {
192 NULL_IF_CONFIG_SMALL("SUN AU format"),
201 .codec_tag
= (const AVCodecTag
*[]){codec_au_tags
, 0},
203 #endif //CONFIG_AU_MUXER