Mercurial > libavformat.hg
annotate au.c @ 3142:8891d470ada3 libavformat
typo fixes
author | diego |
---|---|
date | Sat, 15 Mar 2008 16:15:47 +0000 |
parents | 473906f5a3b9 |
children | 7a0230981402 |
rev | line source |
---|---|
885 | 1 /* |
1415
3b00fb8ef8e4
replace coder/decoder file description in libavformat by muxer/demuxer
aurel
parents:
1358
diff
changeset
|
2 * AU muxer and demuxer |
0 | 3 * Copyright (c) 2001 Fabrice Bellard. |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1172
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 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" | |
2545
213268d7594e
move unrelated functions declarations out of allformats.h
aurel
parents:
2274
diff
changeset
|
31 #include "raw.h" |
1172
6a5e58d2114b
move common stuff from avienc.c and wav.c to new file riff.c
mru
parents:
1169
diff
changeset
|
32 #include "riff.h" |
0 | 33 |
34 /* if we don't know the size in advance */ | |
1885 | 35 #define AU_UNKNOWN_SIZE ((uint32_t)(~0)) |
0 | 36 |
37 /* The ffmpeg codecs we support, and the IDs they have in the file */ | |
1677
2a85c82b8538
add codec_id <-> codec_tag tables to AVIn/OutputFormat
michael
parents:
1415
diff
changeset
|
38 static const AVCodecTag codec_au_tags[] = { |
0 | 39 { CODEC_ID_PCM_MULAW, 1 }, |
2933 | 40 { CODEC_ID_PCM_S8, 2 }, |
0 | 41 { CODEC_ID_PCM_S16BE, 3 }, |
42 { CODEC_ID_PCM_ALAW, 27 }, | |
43 { 0, 0 }, | |
44 }; | |
45 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
46 #ifdef CONFIG_MUXERS |
0 | 47 /* AUDIO_FILE header */ |
48 static int put_au_header(ByteIOContext *pb, AVCodecContext *enc) | |
49 { | |
196 | 50 if(!enc->codec_tag) |
0 | 51 return -1; |
52 put_tag(pb, ".snd"); /* magic number */ | |
53 put_be32(pb, 24); /* header size */ | |
1885 | 54 put_be32(pb, AU_UNKNOWN_SIZE); /* data size */ |
196 | 55 put_be32(pb, (uint32_t)enc->codec_tag); /* codec ID */ |
0 | 56 put_be32(pb, enc->sample_rate); |
65 | 57 put_be32(pb, (uint32_t)enc->channels); |
0 | 58 return 0; |
59 } | |
60 | |
61 static int au_write_header(AVFormatContext *s) | |
62 { | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
63 ByteIOContext *pb = s->pb; |
0 | 64 |
65 s->priv_data = NULL; | |
66 | |
67 /* format header */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
68 if (put_au_header(pb, s->streams[0]->codec) < 0) { |
0 | 69 return -1; |
70 } | |
71 | |
72 put_flush_packet(pb); | |
73 | |
74 return 0; | |
75 } | |
76 | |
468 | 77 static int au_write_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 78 { |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
79 ByteIOContext *pb = s->pb; |
468 | 80 put_buffer(pb, pkt->data, pkt->size); |
0 | 81 return 0; |
82 } | |
83 | |
84 static int au_write_trailer(AVFormatContext *s) | |
85 { | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
86 ByteIOContext *pb = s->pb; |
0 | 87 offset_t file_size; |
88 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
89 if (!url_is_streamed(s->pb)) { |
0 | 90 |
91 /* update file size */ | |
92 file_size = url_ftell(pb); | |
93 url_fseek(pb, 8, SEEK_SET); | |
65 | 94 put_be32(pb, (uint32_t)(file_size - 24)); |
0 | 95 url_fseek(pb, file_size, SEEK_SET); |
96 | |
97 put_flush_packet(pb); | |
98 } | |
99 | |
100 return 0; | |
101 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
102 #endif //CONFIG_MUXERS |
0 | 103 |
104 static int au_probe(AVProbeData *p) | |
105 { | |
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; | |
110 else | |
111 return 0; | |
112 } | |
113 | |
114 /* au input */ | |
115 static int au_read_header(AVFormatContext *s, | |
306 | 116 AVFormatParameters *ap) |
0 | 117 { |
118 int size; | |
119 unsigned int tag; | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
120 ByteIOContext *pb = s->pb; |
0 | 121 unsigned int id, codec, channels, rate; |
122 AVStream *st; | |
123 | |
124 /* check ".snd" header */ | |
125 tag = get_le32(pb); | |
126 if (tag != MKTAG('.', 's', 'n', 'd')) | |
127 return -1; | |
128 size = get_be32(pb); /* header size */ | |
129 get_be32(pb); /* data size */ | |
885 | 130 |
0 | 131 id = get_be32(pb); |
132 rate = get_be32(pb); | |
133 channels = get_be32(pb); | |
885 | 134 |
0 | 135 codec = codec_get_id(codec_au_tags, id); |
136 | |
137 if (size >= 24) { | |
138 /* skip unused data */ | |
139 url_fseek(pb, size - 24, SEEK_CUR); | |
140 } | |
141 | |
142 /* now we are ready: build format streams */ | |
187 | 143 st = av_new_stream(s, 0); |
0 | 144 if (!st) |
145 return -1; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
146 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
147 st->codec->codec_tag = id; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
148 st->codec->codec_id = codec; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
149 st->codec->channels = channels; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
150 st->codec->sample_rate = rate; |
567 | 151 av_set_pts_info(st, 64, 1, rate); |
0 | 152 return 0; |
153 } | |
154 | |
155 #define MAX_SIZE 4096 | |
156 | |
157 static int au_read_packet(AVFormatContext *s, | |
158 AVPacket *pkt) | |
159 { | |
160 int ret; | |
161 | |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
162 if (url_feof(s->pb)) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2001
diff
changeset
|
163 return AVERROR(EIO); |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2545
diff
changeset
|
164 ret= av_get_packet(s->pb, pkt, MAX_SIZE); |
775 | 165 if (ret < 0) |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2001
diff
changeset
|
166 return AVERROR(EIO); |
0 | 167 pkt->stream_index = 0; |
168 | |
169 /* note: we need to modify the packet size here to handle the last | |
170 packet */ | |
171 pkt->size = ret; | |
172 return 0; | |
173 } | |
174 | |
175 static int au_read_close(AVFormatContext *s) | |
176 { | |
177 return 0; | |
178 } | |
179 | |
1169 | 180 #ifdef CONFIG_AU_DEMUXER |
181 AVInputFormat au_demuxer = { | |
0 | 182 "au", |
183 "SUN AU Format", | |
184 0, | |
185 au_probe, | |
186 au_read_header, | |
187 au_read_packet, | |
188 au_read_close, | |
306 | 189 pcm_read_seek, |
1679 | 190 .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, |
0 | 191 }; |
1169 | 192 #endif |
0 | 193 |
1169 | 194 #ifdef CONFIG_AU_MUXER |
195 AVOutputFormat au_muxer = { | |
0 | 196 "au", |
197 "SUN AU Format", | |
198 "audio/basic", | |
199 "au", | |
200 0, | |
201 CODEC_ID_PCM_S16BE, | |
202 CODEC_ID_NONE, | |
203 au_write_header, | |
204 au_write_packet, | |
205 au_write_trailer, | |
1679 | 206 .codec_tag= (const AVCodecTag*[]){codec_au_tags, 0}, |
0 | 207 }; |
1169 | 208 #endif //CONFIG_AU_MUXER |