Mercurial > libavformat.hg
annotate avidec.c @ 89:8e3cf4e9fc5a libavformat
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
author | michaelni |
---|---|
date | Sun, 16 Mar 2003 21:03:20 +0000 |
parents | 25062c9b1f86 |
children | 0c5a7b4ccca9 |
rev | line source |
---|---|
0 | 1 /* |
2 * AVI 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 #include "avformat.h" | |
20 #include "avi.h" | |
21 | |
22 //#define DEBUG | |
23 | |
24 typedef struct AVIIndex { | |
25 unsigned char tag[4]; | |
26 unsigned int flags, pos, len; | |
27 struct AVIIndex *next; | |
28 } AVIIndex; | |
29 | |
30 typedef struct { | |
65 | 31 int64_t movi_end; |
0 | 32 offset_t movi_list; |
33 AVIIndex *first, *last; | |
34 } AVIContext; | |
35 | |
36 #ifdef DEBUG | |
37 static void print_tag(const char *str, unsigned int tag, int size) | |
38 { | |
39 printf("%s: tag=%c%c%c%c size=0x%x\n", | |
40 str, tag & 0xff, | |
41 (tag >> 8) & 0xff, | |
42 (tag >> 16) & 0xff, | |
43 (tag >> 24) & 0xff, | |
44 size); | |
45 } | |
46 #endif | |
47 | |
48 static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
49 { | |
50 AVIContext *avi = s->priv_data; | |
51 ByteIOContext *pb = &s->pb; | |
65 | 52 uint32_t tag, tag1; |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
53 int codec_type, stream_index, frame_period, bit_rate, scale, rate; |
45 | 54 unsigned int size; |
0 | 55 int i; |
56 AVStream *st; | |
57 | |
58 /* check RIFF header */ | |
59 tag = get_le32(pb); | |
60 | |
61 if (tag != MKTAG('R', 'I', 'F', 'F')) | |
62 return -1; | |
63 get_le32(pb); /* file size */ | |
64 tag = get_le32(pb); | |
65 if (tag != MKTAG('A', 'V', 'I', ' ')) | |
66 return -1; | |
67 | |
68 /* first list tag */ | |
69 stream_index = -1; | |
70 codec_type = -1; | |
71 frame_period = 0; | |
72 for(;;) { | |
73 if (url_feof(pb)) | |
74 goto fail; | |
75 tag = get_le32(pb); | |
76 size = get_le32(pb); | |
77 #ifdef DEBUG | |
78 print_tag("tag", tag, size); | |
79 #endif | |
80 | |
81 switch(tag) { | |
82 case MKTAG('L', 'I', 'S', 'T'): | |
83 /* ignored, except when start of video packets */ | |
84 tag1 = get_le32(pb); | |
85 #ifdef DEBUG | |
86 print_tag("list", tag1, 0); | |
87 #endif | |
88 if (tag1 == MKTAG('m', 'o', 'v', 'i')) { | |
89 avi->movi_end = url_ftell(pb) + size - 4; | |
90 #ifdef DEBUG | |
91 printf("movi end=%Lx\n", avi->movi_end); | |
92 #endif | |
93 goto end_of_header; | |
94 } | |
95 break; | |
96 case MKTAG('a', 'v', 'i', 'h'): | |
97 /* avi header */ | |
98 /* using frame_period is bad idea */ | |
99 frame_period = get_le32(pb); | |
100 bit_rate = get_le32(pb) * 8; | |
101 url_fskip(pb, 4 * 4); | |
102 s->nb_streams = get_le32(pb); | |
103 for(i=0;i<s->nb_streams;i++) { | |
104 AVStream *st = av_mallocz(sizeof(AVStream)); | |
105 if (!st) | |
106 goto fail; | |
5 | 107 avcodec_get_context_defaults(&st->codec); |
108 | |
0 | 109 s->streams[i] = st; |
110 } | |
111 url_fskip(pb, size - 7 * 4); | |
112 break; | |
113 case MKTAG('s', 't', 'r', 'h'): | |
114 /* stream header */ | |
115 stream_index++; | |
116 tag1 = get_le32(pb); | |
117 switch(tag1) { | |
118 case MKTAG('v', 'i', 'd', 's'): | |
119 codec_type = CODEC_TYPE_VIDEO; | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
120 |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
121 if (stream_index >= s->nb_streams) { |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
122 url_fskip(pb, size - 4); |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
123 break; |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
124 } |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
125 |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
126 st = s->streams[stream_index]; |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
127 |
0 | 128 get_le32(pb); /* codec tag */ |
129 get_le32(pb); /* flags */ | |
130 get_le16(pb); /* priority */ | |
131 get_le16(pb); /* language */ | |
132 get_le32(pb); /* XXX: initial frame ? */ | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
133 scale= get_le32(pb); /* scale */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
134 rate= get_le32(pb); /* rate */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
135 |
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
136 if(scale && rate){ |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
137 st->codec.frame_rate = rate; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
138 st->codec.frame_rate_base= scale; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
139 }else if(frame_period){ |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
140 st->codec.frame_rate = 1000000; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
141 st->codec.frame_rate_base= frame_period; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
142 }else{ |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
143 st->codec.frame_rate = 25; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
144 st->codec.frame_rate_base = 1; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
84
diff
changeset
|
145 } |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
146 |
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
147 url_fskip(pb, size - 7 * 4); |
0 | 148 break; |
149 case MKTAG('a', 'u', 'd', 's'): | |
150 codec_type = CODEC_TYPE_AUDIO; | |
151 /* nothing really useful */ | |
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
152 url_fskip(pb, size - 4); |
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
153 break; |
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
154 default: |
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
155 goto fail; |
0 | 156 } |
157 break; | |
158 case MKTAG('s', 't', 'r', 'f'): | |
159 /* stream header */ | |
160 if (stream_index >= s->nb_streams) { | |
161 url_fskip(pb, size); | |
162 } else { | |
163 st = s->streams[stream_index]; | |
164 switch(codec_type) { | |
165 case CODEC_TYPE_VIDEO: | |
166 get_le32(pb); /* size */ | |
167 st->codec.width = get_le32(pb); | |
168 st->codec.height = get_le32(pb); | |
169 get_le16(pb); /* panes */ | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
170 st->codec.bits_per_sample= get_le16(pb); /* depth */ |
0 | 171 tag1 = get_le32(pb); |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
172 get_le32(pb); /* ImageSize */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
173 get_le32(pb); /* XPelsPerMeter */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
174 get_le32(pb); /* YPelsPerMeter */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
175 get_le32(pb); /* ClrUsed */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
176 get_le32(pb); /* ClrImportant */ |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
177 |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
178 st->codec.extradata_size= size - 10*4; |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
179 st->codec.extradata= av_malloc(st->codec.extradata_size); //FIXME where should we free this? |
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
180 get_buffer(pb, st->codec.extradata, st->codec.extradata_size); |
76 | 181 |
182 if(st->codec.extradata_size & 1) //FIXME check if the encoder really did this correctly | |
183 get_byte(pb); | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
184 |
0 | 185 #ifdef DEBUG |
186 print_tag("video", tag1, 0); | |
187 #endif | |
188 st->codec.codec_type = CODEC_TYPE_VIDEO; | |
189 st->codec.codec_tag = tag1; | |
190 st->codec.codec_id = codec_get_id(codec_bmp_tags, tag1); | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
191 // url_fskip(pb, size - 5 * 4); |
0 | 192 break; |
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
193 case CODEC_TYPE_AUDIO: |
84
0068a6902911
correct AUDIO strf parsing patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
82
diff
changeset
|
194 get_wav_header(pb, &st->codec, size); |
13
8a5285a0ca2f
Fix for odd strf tag in Stargate SG-1 - 3x18 - Shades of Grey.avi
mmu_man
parents:
5
diff
changeset
|
195 if (size%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */ |
8a5285a0ca2f
Fix for odd strf tag in Stargate SG-1 - 3x18 - Shades of Grey.avi
mmu_man
parents:
5
diff
changeset
|
196 url_fskip(pb, 1); |
0 | 197 break; |
198 default: | |
199 url_fskip(pb, size); | |
200 break; | |
201 } | |
202 } | |
203 break; | |
204 default: | |
205 /* skip tag */ | |
206 size += (size & 1); | |
207 url_fskip(pb, size); | |
208 break; | |
209 } | |
210 } | |
211 end_of_header: | |
212 /* check stream number */ | |
213 if (stream_index != s->nb_streams - 1) { | |
214 fail: | |
215 for(i=0;i<s->nb_streams;i++) { | |
80 | 216 av_freep(&s->streams[i]->codec.extradata); |
0 | 217 av_freep(&s->streams[i]); |
218 } | |
219 return -1; | |
220 } | |
221 | |
222 return 0; | |
223 } | |
224 | |
225 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt) | |
226 { | |
227 AVIContext *avi = s->priv_data; | |
228 ByteIOContext *pb = &s->pb; | |
82 | 229 int n, d[8], size, i; |
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
230 |
82 | 231 memset(d, -1, sizeof(int)*8); |
232 | |
233 for(i=url_ftell(pb); (!url_feof(pb)) && i < avi->movi_end; i++){ | |
234 int j; | |
235 | |
236 for(j=0; j<7; j++) | |
237 d[j]= d[j+1]; | |
238 d[7]= get_byte(pb); | |
239 | |
240 size= d[4] + (d[5]<<8) + (d[6]<<16) + (d[7]<<24); | |
241 | |
242 //parse ix## | |
243 n= (d[2] - '0') * 10 + (d[3] - '0'); | |
244 if( d[2] >= '0' && d[2] <= '9' | |
245 && d[3] >= '0' && d[3] <= '9' | |
246 && d[0] == 'i' && d[1] == 'x' | |
247 && n < s->nb_streams | |
248 && i + size <= avi->movi_end){ | |
249 | |
250 url_fskip(pb, size); | |
251 } | |
252 | |
253 //parse ##dc/##wb | |
254 n= (d[0] - '0') * 10 + (d[1] - '0'); | |
255 if( d[0] >= '0' && d[0] <= '9' | |
256 && d[1] >= '0' && d[1] <= '9' | |
257 &&((d[2] == 'd' && d[3] == 'c') || (d[2] == 'w' && d[3] == 'b')) | |
258 && n < s->nb_streams | |
259 && i + size <= avi->movi_end){ | |
260 | |
261 av_new_packet(pkt, size); | |
262 pkt->stream_index = n; | |
263 | |
264 get_buffer(pb, pkt->data, pkt->size); | |
265 | |
266 if (size & 1) | |
267 get_byte(pb); | |
268 | |
269 return 0; | |
270 } | |
271 } | |
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
272 |
82 | 273 return -1; |
0 | 274 } |
275 | |
276 static int avi_read_close(AVFormatContext *s) | |
277 { | |
278 return 0; | |
279 } | |
280 | |
281 static int avi_probe(AVProbeData *p) | |
282 { | |
283 /* check file header */ | |
284 if (p->buf_size <= 32) | |
285 return 0; | |
286 if (p->buf[0] == 'R' && p->buf[1] == 'I' && | |
287 p->buf[2] == 'F' && p->buf[3] == 'F' && | |
288 p->buf[8] == 'A' && p->buf[9] == 'V' && | |
289 p->buf[10] == 'I' && p->buf[11] == ' ') | |
290 return AVPROBE_SCORE_MAX; | |
291 else | |
292 return 0; | |
293 } | |
294 | |
295 static AVInputFormat avi_iformat = { | |
296 "avi", | |
297 "avi format", | |
298 sizeof(AVIContext), | |
299 avi_probe, | |
300 avi_read_header, | |
301 avi_read_packet, | |
302 avi_read_close, | |
303 }; | |
304 | |
305 int avidec_init(void) | |
306 { | |
307 av_register_input_format(&avi_iformat); | |
308 return 0; | |
309 } |