Mercurial > libavformat.hg
annotate au.c @ 1552:de18846fa25c libavformat
Minor modifications to handle mms streaming.
Patch by Ryan Martell rdm4 martellventures com.
author | takis |
---|---|
date | Mon, 04 Dec 2006 15:46:32 +0000 |
parents | 3b00fb8ef8e4 |
children | 2a85c82b8538 |
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" | |
1142
e3a585883bbd
Move initialisations and internal symbols in allformats.h,
gpoirier
parents:
896
diff
changeset
|
31 #include "allformats.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 */ | |
65 | 35 #define AU_UNKOWN_SIZE ((uint32_t)(~0)) |
0 | 36 |
37 /* The ffmpeg codecs we support, and the IDs they have in the file */ | |
38 static const CodecTag codec_au_tags[] = { | |
39 { CODEC_ID_PCM_MULAW, 1 }, | |
40 { CODEC_ID_PCM_S16BE, 3 }, | |
41 { CODEC_ID_PCM_ALAW, 27 }, | |
42 { 0, 0 }, | |
43 }; | |
44 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
45 #ifdef CONFIG_MUXERS |
0 | 46 /* AUDIO_FILE header */ |
47 static int put_au_header(ByteIOContext *pb, AVCodecContext *enc) | |
48 { | |
196 | 49 if(!enc->codec_tag) |
50 enc->codec_tag = codec_get_tag(codec_au_tags, enc->codec_id); | |
51 if(!enc->codec_tag) | |
0 | 52 return -1; |
53 put_tag(pb, ".snd"); /* magic number */ | |
54 put_be32(pb, 24); /* header size */ | |
55 put_be32(pb, AU_UNKOWN_SIZE); /* data size */ | |
196 | 56 put_be32(pb, (uint32_t)enc->codec_tag); /* codec ID */ |
0 | 57 put_be32(pb, enc->sample_rate); |
65 | 58 put_be32(pb, (uint32_t)enc->channels); |
0 | 59 return 0; |
60 } | |
61 | |
62 static int au_write_header(AVFormatContext *s) | |
63 { | |
64 ByteIOContext *pb = &s->pb; | |
65 | |
66 s->priv_data = NULL; | |
67 | |
68 /* 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
|
69 if (put_au_header(pb, s->streams[0]->codec) < 0) { |
0 | 70 return -1; |
71 } | |
72 | |
73 put_flush_packet(pb); | |
74 | |
75 return 0; | |
76 } | |
77 | |
468 | 78 static int au_write_packet(AVFormatContext *s, AVPacket *pkt) |
0 | 79 { |
80 ByteIOContext *pb = &s->pb; | |
468 | 81 put_buffer(pb, pkt->data, pkt->size); |
0 | 82 return 0; |
83 } | |
84 | |
85 static int au_write_trailer(AVFormatContext *s) | |
86 { | |
87 ByteIOContext *pb = &s->pb; | |
88 offset_t file_size; | |
89 | |
90 if (!url_is_streamed(&s->pb)) { | |
91 | |
92 /* update file size */ | |
93 file_size = url_ftell(pb); | |
94 url_fseek(pb, 8, SEEK_SET); | |
65 | 95 put_be32(pb, (uint32_t)(file_size - 24)); |
0 | 96 url_fseek(pb, file_size, SEEK_SET); |
97 | |
98 put_flush_packet(pb); | |
99 } | |
100 | |
101 return 0; | |
102 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
820
diff
changeset
|
103 #endif //CONFIG_MUXERS |
0 | 104 |
105 static int au_probe(AVProbeData *p) | |
106 { | |
107 /* check file header */ | |
108 if (p->buf_size <= 24) | |
109 return 0; | |
110 if (p->buf[0] == '.' && p->buf[1] == 's' && | |
111 p->buf[2] == 'n' && p->buf[3] == 'd') | |
112 return AVPROBE_SCORE_MAX; | |
113 else | |
114 return 0; | |
115 } | |
116 | |
117 /* au input */ | |
118 static int au_read_header(AVFormatContext *s, | |
306 | 119 AVFormatParameters *ap) |
0 | 120 { |
121 int size; | |
122 unsigned int tag; | |
123 ByteIOContext *pb = &s->pb; | |
124 unsigned int id, codec, channels, rate; | |
125 AVStream *st; | |
126 | |
127 /* check ".snd" header */ | |
128 tag = get_le32(pb); | |
129 if (tag != MKTAG('.', 's', 'n', 'd')) | |
130 return -1; | |
131 size = get_be32(pb); /* header size */ | |
132 get_be32(pb); /* data size */ | |
885 | 133 |
0 | 134 id = get_be32(pb); |
135 rate = get_be32(pb); | |
136 channels = get_be32(pb); | |
885 | 137 |
0 | 138 codec = codec_get_id(codec_au_tags, id); |
139 | |
140 if (size >= 24) { | |
141 /* skip unused data */ | |
142 url_fseek(pb, size - 24, SEEK_CUR); | |
143 } | |
144 | |
145 /* now we are ready: build format streams */ | |
187 | 146 st = av_new_stream(s, 0); |
0 | 147 if (!st) |
148 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
|
149 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
|
150 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
|
151 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
|
152 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
|
153 st->codec->sample_rate = rate; |
567 | 154 av_set_pts_info(st, 64, 1, rate); |
0 | 155 return 0; |
156 } | |
157 | |
158 #define MAX_SIZE 4096 | |
159 | |
160 static int au_read_packet(AVFormatContext *s, | |
161 AVPacket *pkt) | |
162 { | |
163 int ret; | |
164 | |
165 if (url_feof(&s->pb)) | |
482 | 166 return AVERROR_IO; |
775 | 167 ret= av_get_packet(&s->pb, pkt, MAX_SIZE); |
168 if (ret < 0) | |
482 | 169 return AVERROR_IO; |
0 | 170 pkt->stream_index = 0; |
171 | |
172 /* note: we need to modify the packet size here to handle the last | |
173 packet */ | |
174 pkt->size = ret; | |
175 return 0; | |
176 } | |
177 | |
178 static int au_read_close(AVFormatContext *s) | |
179 { | |
180 return 0; | |
181 } | |
182 | |
1169 | 183 #ifdef CONFIG_AU_DEMUXER |
184 AVInputFormat au_demuxer = { | |
0 | 185 "au", |
186 "SUN AU Format", | |
187 0, | |
188 au_probe, | |
189 au_read_header, | |
190 au_read_packet, | |
191 au_read_close, | |
306 | 192 pcm_read_seek, |
0 | 193 }; |
1169 | 194 #endif |
0 | 195 |
1169 | 196 #ifdef CONFIG_AU_MUXER |
197 AVOutputFormat au_muxer = { | |
0 | 198 "au", |
199 "SUN AU Format", | |
200 "audio/basic", | |
201 "au", | |
202 0, | |
203 CODEC_ID_PCM_S16BE, | |
204 CODEC_ID_NONE, | |
205 au_write_header, | |
206 au_write_packet, | |
207 au_write_trailer, | |
208 }; | |
1169 | 209 #endif //CONFIG_AU_MUXER |