]> git.sesse.net Git - ffmpeg/blob - libavformat/avidec.c
1004c172ef8e2144d7081cb16af3ee5b8f406a88
[ffmpeg] / libavformat / avidec.c
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 #include "avformat.h"
20 #include "avi.h"
21 #include "dv.h"
22
23 #undef NDEBUG
24 #include <assert.h>
25
26 //#define DEBUG
27 //#define DEBUG_SEEK
28
29 typedef struct AVIStream {
30     int64_t frame_offset; /* current frame (video) or byte (audio) counter
31                          (used to compute the pts) */
32     int remaining;
33     int packet_size;
34
35     int scale;
36     int rate;
37     int sample_size; /* size of one sample (or packet) (in the rate/scale sense) in bytes */
38     int start;
39
40     int64_t cum_len; /* temporary storage (used during seek) */
41
42     int prefix;                       ///< normally 'd'<<8 + 'c' or 'w'<<8 + 'b'
43     int prefix_count;
44 } AVIStream;
45
46 typedef struct {
47     int64_t  riff_end;
48     int64_t  movi_end;
49     offset_t movi_list;
50     int index_loaded;
51     int is_odml;
52     int non_interleaved;
53     int stream_index;
54     DVDemuxContext* dv_demux;
55 } AVIContext;
56
57 static int avi_load_index(AVFormatContext *s);
58 static int guess_ni_flag(AVFormatContext *s);
59
60 #ifdef DEBUG
61 static void print_tag(const char *str, unsigned int tag, int size)
62 {
63     printf("%s: tag=%c%c%c%c size=0x%x\n",
64            str, tag & 0xff,
65            (tag >> 8) & 0xff,
66            (tag >> 16) & 0xff,
67            (tag >> 24) & 0xff,
68            size);
69 }
70 #endif
71
72 static int get_riff(AVIContext *avi, ByteIOContext *pb)
73 {
74     uint32_t tag;
75     /* check RIFF header */
76     tag = get_le32(pb);
77
78     if (tag != MKTAG('R', 'I', 'F', 'F'))
79         return -1;
80     avi->riff_end = get_le32(pb);   /* RIFF chunk size */
81     avi->riff_end += url_ftell(pb); /* RIFF chunk end */
82     tag = get_le32(pb);
83     if (tag != MKTAG('A', 'V', 'I', ' ') && tag != MKTAG('A', 'V', 'I', 'X'))
84         return -1;
85
86     return 0;
87 }
88
89 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num){
90     AVIContext *avi = s->priv_data;
91     ByteIOContext *pb = &s->pb;
92     int longs_pre_entry= get_le16(pb);
93     int index_sub_type = get_byte(pb);
94     int index_type     = get_byte(pb);
95     int entries_in_use = get_le32(pb);
96     int chunk_id       = get_le32(pb);
97     int64_t base       = get_le64(pb);
98     int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0');
99     AVStream *st;
100     AVIStream *ast;
101     int i;
102     int64_t last_pos= -1;
103
104 //    av_log(s, AV_LOG_ERROR, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%Ld\n",
105 //        longs_pre_entry,index_type, entries_in_use, chunk_id, base);
106
107     if(stream_id > s->nb_streams || stream_id < 0)
108         return -1;
109     st= s->streams[stream_id];
110     ast = st->priv_data;
111
112     if(index_sub_type)
113         return -1;
114
115     get_le32(pb);
116
117     if(index_type && longs_pre_entry != 2)
118         return -1;
119     if(index_type>1)
120         return -1;
121
122     for(i=0; i<entries_in_use; i++){
123         if(index_type){
124             int64_t pos= get_le32(pb) + base - 8;
125             int len    = get_le32(pb);
126             int key= len >= 0;
127             len &= 0x7FFFFFFF;
128
129 //av_log(s, AV_LOG_ERROR, "pos:%Ld, len:%X\n", pos, len);
130             if(last_pos == pos || pos == base - 8)
131                 avi->non_interleaved= 1;
132             else
133                 av_add_index_entry(st, pos, ast->cum_len, len, 0, key ? AVINDEX_KEYFRAME : 0);
134
135             if(ast->sample_size)
136                 ast->cum_len += len / ast->sample_size;
137             else
138                 ast->cum_len ++;
139             last_pos= pos;
140         }else{
141             int64_t offset= get_le64(pb);
142             int size      = get_le32(pb);
143             int duration  = get_le32(pb);
144             int64_t pos= url_ftell(pb);
145
146             url_fseek(pb, offset+8, SEEK_SET);
147             read_braindead_odml_indx(s, frame_num);
148             frame_num += duration;
149
150             url_fseek(pb, pos, SEEK_SET);
151         }
152     }
153     return 0;
154 }
155
156 static void clean_index(AVFormatContext *s){
157     int i, j;
158
159     for(i=0; i<s->nb_streams; i++){
160         AVStream *st = s->streams[i];
161         AVIStream *ast = st->priv_data;
162         int n= st->nb_index_entries;
163         int max= ast->sample_size;
164         int64_t pos, size, ts;
165
166         if(n != 1 || ast->sample_size==0)
167             continue;
168
169         while(max < 1024) max+=max;
170
171         pos= st->index_entries[0].pos;
172         size= st->index_entries[0].size;
173         ts= st->index_entries[0].timestamp;
174
175         for(j=0; j<size; j+=max){
176             av_add_index_entry(st, pos+j, ts + j/ast->sample_size, FFMIN(max, size-j), 0, AVINDEX_KEYFRAME);
177         }
178     }
179 }
180
181 static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
182 {
183     AVIContext *avi = s->priv_data;
184     ByteIOContext *pb = &s->pb;
185     uint32_t tag, tag1, handler;
186     int codec_type, stream_index, frame_period, bit_rate;
187     unsigned int size, nb_frames;
188     int i, n;
189     AVStream *st;
190     AVIStream *ast;
191     int xan_video = 0;  /* hack to support Xan A/V */
192
193     avi->stream_index= -1;
194
195     if (get_riff(avi, pb) < 0)
196         return -1;
197
198     /* first list tag */
199     stream_index = -1;
200     codec_type = -1;
201     frame_period = 0;
202     for(;;) {
203         if (url_feof(pb))
204             goto fail;
205         tag = get_le32(pb);
206         size = get_le32(pb);
207 #ifdef DEBUG
208         print_tag("tag", tag, size);
209 #endif
210
211         switch(tag) {
212         case MKTAG('L', 'I', 'S', 'T'):
213             /* ignored, except when start of video packets */
214             tag1 = get_le32(pb);
215 #ifdef DEBUG
216             print_tag("list", tag1, 0);
217 #endif
218             if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
219                 avi->movi_list = url_ftell(pb) - 4;
220                 if(size) avi->movi_end = avi->movi_list + size;
221                 else     avi->movi_end = url_fsize(pb);
222 #ifdef DEBUG
223                 printf("movi end=%Lx\n", avi->movi_end);
224 #endif
225                 goto end_of_header;
226             }
227             break;
228         case MKTAG('d', 'm', 'l', 'h'):
229             avi->is_odml = 1;
230             url_fskip(pb, size + (size & 1));
231             break;
232         case MKTAG('a', 'v', 'i', 'h'):
233             /* avi header */
234             /* using frame_period is bad idea */
235             frame_period = get_le32(pb);
236             bit_rate = get_le32(pb) * 8;
237             get_le32(pb);
238             avi->non_interleaved |= get_le32(pb) & AVIF_MUSTUSEINDEX;
239
240             url_fskip(pb, 2 * 4);
241             n = get_le32(pb);
242             for(i=0;i<n;i++) {
243                 AVIStream *ast;
244                 st = av_new_stream(s, i);
245                 if (!st)
246                     goto fail;
247
248                 ast = av_mallocz(sizeof(AVIStream));
249                 if (!ast)
250                     goto fail;
251                 st->priv_data = ast;
252             }
253             url_fskip(pb, size - 7 * 4);
254             break;
255         case MKTAG('s', 't', 'r', 'h'):
256             /* stream header */
257             stream_index++;
258             tag1 = get_le32(pb);
259             handler = get_le32(pb); /* codec tag */
260 #ifdef DEBUG
261         print_tag("strh", tag1, -1);
262 #endif
263             if(tag1 == MKTAG('i', 'a', 'v', 's') || tag1 == MKTAG('i', 'v', 'a', 's')){
264                 /*
265                  * After some consideration -- I don't think we
266                  * have to support anything but DV in a type1 AVIs.
267                  */
268                 if (s->nb_streams != 1)
269                     goto fail;
270
271                 if (handler != MKTAG('d', 'v', 's', 'd') &&
272                     handler != MKTAG('d', 'v', 'h', 'd') &&
273                     handler != MKTAG('d', 'v', 's', 'l'))
274                    goto fail;
275
276                 ast = s->streams[0]->priv_data;
277                 av_freep(&s->streams[0]->codec->extradata);
278                 av_freep(&s->streams[0]);
279                 s->nb_streams = 0;
280                 avi->dv_demux = dv_init_demux(s);
281                 if (!avi->dv_demux)
282                     goto fail;
283                 s->streams[0]->priv_data = ast;
284                 url_fskip(pb, 3 * 4);
285                 ast->scale = get_le32(pb);
286                 ast->rate = get_le32(pb);
287                 stream_index = s->nb_streams - 1;
288                 url_fskip(pb, size - 7*4);
289                 break;
290             }
291
292             if (stream_index >= s->nb_streams) {
293                 url_fskip(pb, size - 8);
294                 break;
295             }
296             st = s->streams[stream_index];
297             ast = st->priv_data;
298             st->codec->stream_codec_tag= handler;
299
300             get_le32(pb); /* flags */
301             get_le16(pb); /* priority */
302             get_le16(pb); /* language */
303             get_le32(pb); /* initial frame */
304             ast->scale = get_le32(pb);
305             ast->rate = get_le32(pb);
306             if(ast->scale && ast->rate){
307             }else if(frame_period){
308                 ast->rate = 1000000;
309                 ast->scale = frame_period;
310             }else{
311                 ast->rate = 25;
312                 ast->scale = 1;
313             }
314             av_set_pts_info(st, 64, ast->scale, ast->rate);
315
316             ast->start= get_le32(pb); /* start */
317             nb_frames = get_le32(pb);
318
319             st->start_time = 0;
320             st->duration = nb_frames;
321             get_le32(pb); /* buffer size */
322             get_le32(pb); /* quality */
323             ast->sample_size = get_le32(pb); /* sample ssize */
324 //            av_log(NULL, AV_LOG_DEBUG, "%d %d %d %d\n", ast->rate, ast->scale, ast->start, ast->sample_size);
325
326             switch(tag1) {
327             case MKTAG('v', 'i', 'd', 's'):
328                 codec_type = CODEC_TYPE_VIDEO;
329
330                 ast->sample_size = 0;
331                 break;
332             case MKTAG('a', 'u', 'd', 's'):
333                 codec_type = CODEC_TYPE_AUDIO;
334                 break;
335             case MKTAG('t', 'x', 't', 's'):
336                 //FIXME
337                 codec_type = CODEC_TYPE_DATA; //CODEC_TYPE_SUB ?  FIXME
338                 break;
339             case MKTAG('p', 'a', 'd', 's'):
340                 codec_type = CODEC_TYPE_UNKNOWN;
341                 stream_index--;
342                 break;
343             default:
344                 av_log(s, AV_LOG_ERROR, "unknown stream type %X\n", tag1);
345                 goto fail;
346             }
347             url_fskip(pb, size - 12 * 4);
348             break;
349         case MKTAG('s', 't', 'r', 'f'):
350             /* stream header */
351             if (stream_index >= s->nb_streams || avi->dv_demux) {
352                 url_fskip(pb, size);
353             } else {
354                 st = s->streams[stream_index];
355                 switch(codec_type) {
356                 case CODEC_TYPE_VIDEO:
357                     get_le32(pb); /* size */
358                     st->codec->width = get_le32(pb);
359                     st->codec->height = get_le32(pb);
360                     get_le16(pb); /* panes */
361                     st->codec->bits_per_sample= get_le16(pb); /* depth */
362                     tag1 = get_le32(pb);
363                     get_le32(pb); /* ImageSize */
364                     get_le32(pb); /* XPelsPerMeter */
365                     get_le32(pb); /* YPelsPerMeter */
366                     get_le32(pb); /* ClrUsed */
367                     get_le32(pb); /* ClrImportant */
368
369                  if(size > 10*4 && size<(1<<30)){
370                     st->codec->extradata_size= size - 10*4;
371                     st->codec->extradata= av_malloc(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
372                     get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
373                  }
374
375                     if(st->codec->extradata_size & 1) //FIXME check if the encoder really did this correctly
376                         get_byte(pb);
377
378                     /* Extract palette from extradata if bpp <= 8 */
379                     /* This code assumes that extradata contains only palette */
380                     /* This is true for all paletted codecs implemented in ffmpeg */
381                     if (st->codec->extradata_size && (st->codec->bits_per_sample <= 8)) {
382                         st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
383 #ifdef WORDS_BIGENDIAN
384                         for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
385                             st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]);
386 #else
387                         memcpy(st->codec->palctrl->palette, st->codec->extradata,
388                                FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
389 #endif
390                         st->codec->palctrl->palette_changed = 1;
391                     }
392
393 #ifdef DEBUG
394                     print_tag("video", tag1, 0);
395 #endif
396                     st->codec->codec_type = CODEC_TYPE_VIDEO;
397                     st->codec->codec_tag = tag1;
398                     st->codec->codec_id = codec_get_id(codec_bmp_tags, tag1);
399                     if (st->codec->codec_id == CODEC_ID_XAN_WC4)
400                         xan_video = 1;
401                     st->need_parsing = 2; //only parse headers dont do slower repacketization, this is needed to get the pict type which is needed for generating correct pts
402 //                    url_fskip(pb, size - 5 * 4);
403                     break;
404                 case CODEC_TYPE_AUDIO:
405                     get_wav_header(pb, st->codec, size);
406                     if(ast->sample_size && st->codec->block_align && ast->sample_size % st->codec->block_align)
407                         av_log(s, AV_LOG_DEBUG, "invalid sample size or block align detected\n");
408                     if (size%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
409                         url_fskip(pb, 1);
410                     /* special case time: To support Xan DPCM, hardcode
411                      * the format if Xxan is the video codec */
412                     st->need_parsing = 1;
413                     /* force parsing as several audio frames can be in
414                        one packet */
415                     if (xan_video)
416                         st->codec->codec_id = CODEC_ID_XAN_DPCM;
417                     break;
418                 default:
419                     st->codec->codec_type = CODEC_TYPE_DATA;
420                     st->codec->codec_id= CODEC_ID_NONE;
421                     st->codec->codec_tag= 0;
422                     url_fskip(pb, size);
423                     break;
424                 }
425             }
426             break;
427         case MKTAG('i', 'n', 'd', 'x'):
428             i= url_ftell(pb);
429             read_braindead_odml_indx(s, 0);
430             avi->index_loaded=1;
431             url_fseek(pb, i+size, SEEK_SET);
432             break;
433         default:
434             /* skip tag */
435             size += (size & 1);
436             url_fskip(pb, size);
437             break;
438         }
439     }
440  end_of_header:
441     /* check stream number */
442     if (stream_index != s->nb_streams - 1) {
443     fail:
444         for(i=0;i<s->nb_streams;i++) {
445             av_freep(&s->streams[i]->codec->extradata);
446             av_freep(&s->streams[i]);
447         }
448         return -1;
449     }
450
451     if(!avi->index_loaded)
452         avi_load_index(s);
453     avi->index_loaded = 1;
454     avi->non_interleaved |= guess_ni_flag(s);
455     if(avi->non_interleaved)
456         clean_index(s);
457
458     return 0;
459 }
460
461 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
462 {
463     AVIContext *avi = s->priv_data;
464     ByteIOContext *pb = &s->pb;
465     int n, d[8], size;
466     offset_t i, sync;
467     void* dstr;
468
469     if (avi->dv_demux) {
470         size = dv_get_packet(avi->dv_demux, pkt);
471         if (size >= 0)
472             return size;
473     }
474
475     if(avi->non_interleaved){
476         int best_stream_index = 0;
477         AVStream *best_st= NULL;
478         AVIStream *best_ast;
479         int64_t best_ts= INT64_MAX;
480         int i;
481
482         for(i=0; i<s->nb_streams; i++){
483             AVStream *st = s->streams[i];
484             AVIStream *ast = st->priv_data;
485             int64_t ts= ast->frame_offset;
486
487             if(ast->sample_size)
488                 ts /= ast->sample_size;
489             ts= av_rescale(ts, AV_TIME_BASE * (int64_t)st->time_base.num, st->time_base.den);
490
491 //            av_log(NULL, AV_LOG_DEBUG, "%Ld %d/%d %Ld\n", ts, st->time_base.num, st->time_base.den, ast->frame_offset);
492             if(ts < best_ts){
493                 best_ts= ts;
494                 best_st= st;
495                 best_stream_index= i;
496             }
497         }
498         best_ast = best_st->priv_data;
499         best_ts= av_rescale(best_ts, best_st->time_base.den, AV_TIME_BASE * (int64_t)best_st->time_base.num); //FIXME a little ugly
500         if(best_ast->remaining)
501             i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
502         else
503             i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
504
505 //        av_log(NULL, AV_LOG_DEBUG, "%d\n", i);
506         if(i>=0){
507             int64_t pos= best_st->index_entries[i].pos;
508             pos += best_ast->packet_size - best_ast->remaining;
509             url_fseek(&s->pb, pos + 8, SEEK_SET);
510 //        av_log(NULL, AV_LOG_DEBUG, "pos=%Ld\n", pos);
511
512             assert(best_ast->remaining <= best_ast->packet_size);
513
514             avi->stream_index= best_stream_index;
515             if(!best_ast->remaining)
516                 best_ast->packet_size=
517                 best_ast->remaining= best_st->index_entries[i].size;
518         }
519     }
520
521 resync:
522     if(avi->stream_index >= 0){
523         AVStream *st= s->streams[ avi->stream_index ];
524         AVIStream *ast= st->priv_data;
525         int size;
526
527         if(ast->sample_size <= 1) // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
528             size= INT_MAX;
529         else if(ast->sample_size < 32)
530             size= 64*ast->sample_size;
531         else
532             size= ast->sample_size;
533
534         if(size > ast->remaining)
535             size= ast->remaining;
536         av_get_packet(pb, pkt, size);
537
538         if (avi->dv_demux) {
539             dstr = pkt->destruct;
540             size = dv_produce_packet(avi->dv_demux, pkt,
541                                     pkt->data, pkt->size);
542             pkt->destruct = dstr;
543             pkt->flags |= PKT_FLAG_KEY;
544         } else {
545             /* XXX: how to handle B frames in avi ? */
546             pkt->dts = ast->frame_offset;
547 //                pkt->dts += ast->start;
548             if(ast->sample_size)
549                 pkt->dts /= ast->sample_size;
550 //av_log(NULL, AV_LOG_DEBUG, "dts:%Ld offset:%Ld %d/%d smpl_siz:%d base:%d st:%d size:%d\n", pkt->dts, ast->frame_offset, ast->scale, ast->rate, ast->sample_size, AV_TIME_BASE, avi->stream_index, size);
551             pkt->stream_index = avi->stream_index;
552
553             if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
554                 if(st->index_entries){
555                     AVIndexEntry *e;
556                     int index;
557
558                     index= av_index_search_timestamp(st, pkt->dts, 0);
559                     e= &st->index_entries[index];
560
561                     if(index >= 0 && e->timestamp == ast->frame_offset){
562                         if (e->flags & AVINDEX_KEYFRAME)
563                             pkt->flags |= PKT_FLAG_KEY;
564                     }
565                 } else {
566                     /* if no index, better to say that all frames
567                         are key frames */
568                     pkt->flags |= PKT_FLAG_KEY;
569                 }
570             } else {
571                 pkt->flags |= PKT_FLAG_KEY;
572             }
573             if(ast->sample_size)
574                 ast->frame_offset += pkt->size;
575             else
576                 ast->frame_offset++;
577         }
578         ast->remaining -= size;
579         if(!ast->remaining){
580             avi->stream_index= -1;
581             ast->packet_size= 0;
582             if (size & 1) {
583                 get_byte(pb);
584                 size++;
585             }
586         }
587
588         return size;
589     }
590
591     memset(d, -1, sizeof(int)*8);
592     for(i=sync=url_ftell(pb); !url_feof(pb); i++) {
593         int j;
594
595         if (i >= avi->movi_end) {
596             if (avi->is_odml) {
597                 url_fskip(pb, avi->riff_end - i);
598                 avi->riff_end = avi->movi_end = url_fsize(pb);
599             } else
600                 break;
601         }
602
603         for(j=0; j<7; j++)
604             d[j]= d[j+1];
605         d[7]= get_byte(pb);
606
607         size= d[4] + (d[5]<<8) + (d[6]<<16) + (d[7]<<24);
608
609         if(    d[2] >= '0' && d[2] <= '9'
610             && d[3] >= '0' && d[3] <= '9'){
611             n= (d[2] - '0') * 10 + (d[3] - '0');
612         }else{
613             n= 100; //invalid stream id
614         }
615 //av_log(NULL, AV_LOG_DEBUG, "%X %X %X %X %X %X %X %X %lld %d %d\n", d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
616         if(i + size > avi->movi_end || d[0]<0)
617             continue;
618
619         //parse ix##
620         if(  (d[0] == 'i' && d[1] == 'x' && n < s->nb_streams)
621         //parse JUNK
622            ||(d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K')){
623             url_fskip(pb, size);
624 //av_log(NULL, AV_LOG_DEBUG, "SKIP\n");
625             goto resync;
626         }
627
628         if(    d[0] >= '0' && d[0] <= '9'
629             && d[1] >= '0' && d[1] <= '9'){
630             n= (d[0] - '0') * 10 + (d[1] - '0');
631         }else{
632             n= 100; //invalid stream id
633         }
634
635         //parse ##dc/##wb
636         if(n < s->nb_streams){
637           AVStream *st;
638           AVIStream *ast;
639           st = s->streams[n];
640           ast = st->priv_data;
641
642           if(   (st->discard >= AVDISCARD_DEFAULT && size==0)
643              /*|| (st->discard >= AVDISCARD_NONKEY && !(pkt->flags & PKT_FLAG_KEY))*/ //FIXME needs a little reordering
644              || st->discard >= AVDISCARD_ALL){
645                 if(ast->sample_size) ast->frame_offset += pkt->size;
646                 else                 ast->frame_offset++;
647                 url_fskip(pb, size);
648                 goto resync;
649           }
650
651           if(   ((ast->prefix_count<5 || sync+9 > i) && d[2]<128 && d[3]<128) ||
652                 d[2]*256+d[3] == ast->prefix /*||
653                 (d[2] == 'd' && d[3] == 'c') ||
654                 (d[2] == 'w' && d[3] == 'b')*/) {
655
656 //av_log(NULL, AV_LOG_DEBUG, "OK\n");
657             if(d[2]*256+d[3] == ast->prefix)
658                 ast->prefix_count++;
659             else{
660                 ast->prefix= d[2]*256+d[3];
661                 ast->prefix_count= 0;
662             }
663
664             avi->stream_index= n;
665             ast->packet_size= size + 8;
666             ast->remaining= size;
667             goto resync;
668           }
669         }
670         /* palette changed chunk */
671         if (   d[0] >= '0' && d[0] <= '9'
672             && d[1] >= '0' && d[1] <= '9'
673             && ((d[2] == 'p' && d[3] == 'c'))
674             && n < s->nb_streams && i + size <= avi->movi_end) {
675
676             AVStream *st;
677             int first, clr, flags, k, p;
678
679             st = s->streams[n];
680
681             first = get_byte(pb);
682             clr = get_byte(pb);
683             if(!clr) /* all 256 colors used */
684                 clr = 256;
685             flags = get_le16(pb);
686             p = 4;
687             for (k = first; k < clr + first; k++) {
688                 int r, g, b;
689                 r = get_byte(pb);
690                 g = get_byte(pb);
691                 b = get_byte(pb);
692                     get_byte(pb);
693                 st->codec->palctrl->palette[k] = b + (g << 8) + (r << 16);
694             }
695             st->codec->palctrl->palette_changed = 1;
696             goto resync;
697         }
698
699     }
700
701     return -1;
702 }
703
704 /* XXX: we make the implicit supposition that the position are sorted
705    for each stream */
706 static int avi_read_idx1(AVFormatContext *s, int size)
707 {
708     AVIContext *avi = s->priv_data;
709     ByteIOContext *pb = &s->pb;
710     int nb_index_entries, i;
711     AVStream *st;
712     AVIStream *ast;
713     unsigned int index, tag, flags, pos, len;
714     unsigned last_pos= -1;
715
716     nb_index_entries = size / 16;
717     if (nb_index_entries <= 0)
718         return -1;
719
720     /* read the entries and sort them in each stream component */
721     for(i = 0; i < nb_index_entries; i++) {
722         tag = get_le32(pb);
723         flags = get_le32(pb);
724         pos = get_le32(pb);
725         len = get_le32(pb);
726 #if defined(DEBUG_SEEK)
727         av_log(NULL, AV_LOG_DEBUG, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
728                i, tag, flags, pos, len);
729 #endif
730         if(i==0 && pos > avi->movi_list)
731             avi->movi_list= 0; //FIXME better check
732         pos += avi->movi_list;
733
734         index = ((tag & 0xff) - '0') * 10;
735         index += ((tag >> 8) & 0xff) - '0';
736         if (index >= s->nb_streams)
737             continue;
738         st = s->streams[index];
739         ast = st->priv_data;
740
741 #if defined(DEBUG_SEEK)
742         av_log(NULL, AV_LOG_DEBUG, "%d cum_len=%d\n", len, ast->cum_len);
743 #endif
744         if(last_pos == pos)
745             avi->non_interleaved= 1;
746         else
747             av_add_index_entry(st, pos, ast->cum_len, len, 0, (flags&AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
748         if(ast->sample_size)
749             ast->cum_len += len / ast->sample_size;
750         else
751             ast->cum_len ++;
752         last_pos= pos;
753     }
754     return 0;
755 }
756
757 static int guess_ni_flag(AVFormatContext *s){
758     int i;
759     int64_t last_start=0;
760     int64_t first_end= INT64_MAX;
761
762     for(i=0; i<s->nb_streams; i++){
763         AVStream *st = s->streams[i];
764         int n= st->nb_index_entries;
765
766         if(n <= 0)
767             continue;
768
769         if(st->index_entries[0].pos > last_start)
770             last_start= st->index_entries[0].pos;
771         if(st->index_entries[n-1].pos < first_end)
772             first_end= st->index_entries[n-1].pos;
773     }
774     return last_start > first_end;
775 }
776
777 static int avi_load_index(AVFormatContext *s)
778 {
779     AVIContext *avi = s->priv_data;
780     ByteIOContext *pb = &s->pb;
781     uint32_t tag, size;
782     offset_t pos= url_ftell(pb);
783
784     url_fseek(pb, avi->movi_end, SEEK_SET);
785 #ifdef DEBUG_SEEK
786     printf("movi_end=0x%llx\n", avi->movi_end);
787 #endif
788     for(;;) {
789         if (url_feof(pb))
790             break;
791         tag = get_le32(pb);
792         size = get_le32(pb);
793 #ifdef DEBUG_SEEK
794         printf("tag=%c%c%c%c size=0x%x\n",
795                tag & 0xff,
796                (tag >> 8) & 0xff,
797                (tag >> 16) & 0xff,
798                (tag >> 24) & 0xff,
799                size);
800 #endif
801         switch(tag) {
802         case MKTAG('i', 'd', 'x', '1'):
803             if (avi_read_idx1(s, size) < 0)
804                 goto skip;
805             else
806                 goto the_end;
807             break;
808         default:
809         skip:
810             size += (size & 1);
811             url_fskip(pb, size);
812             break;
813         }
814     }
815  the_end:
816     url_fseek(pb, pos, SEEK_SET);
817     return 0;
818 }
819
820 static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
821 {
822     AVIContext *avi = s->priv_data;
823     AVStream *st;
824     int i, index;
825     int64_t pos;
826
827     if (!avi->index_loaded) {
828         /* we only load the index on demand */
829         avi_load_index(s);
830         avi->index_loaded = 1;
831     }
832     assert(stream_index>= 0);
833
834     st = s->streams[stream_index];
835     index= av_index_search_timestamp(st, timestamp, flags);
836     if(index<0)
837         return -1;
838
839     /* find the position */
840     pos = st->index_entries[index].pos;
841     timestamp = st->index_entries[index].timestamp;
842
843 //    av_log(NULL, AV_LOG_DEBUG, "XX %Ld %d %Ld\n", timestamp, index, st->index_entries[index].timestamp);
844
845     for(i = 0; i < s->nb_streams; i++) {
846         AVStream *st2 = s->streams[i];
847         AVIStream *ast2 = st2->priv_data;
848
849         ast2->packet_size=
850         ast2->remaining= 0;
851
852         if (st2->nb_index_entries <= 0)
853             continue;
854
855 //        assert(st2->codec->block_align);
856         assert(st2->time_base.den == ast2->rate);
857         assert(st2->time_base.num == ast2->scale);
858         index = av_index_search_timestamp(
859                 st2,
860                 av_rescale(timestamp, st2->time_base.den*(int64_t)st->time_base.num, st->time_base.den * (int64_t)st2->time_base.num),
861                 flags | AVSEEK_FLAG_BACKWARD);
862         if(index<0)
863             index=0;
864
865         if(!avi->non_interleaved){
866             while(index>0 && st2->index_entries[index].pos > pos)
867                 index--;
868             while(index+1 < st2->nb_index_entries && st2->index_entries[index].pos < pos)
869                 index++;
870         }
871
872 //        av_log(NULL, AV_LOG_DEBUG, "%Ld %d %Ld\n", timestamp, index, st2->index_entries[index].timestamp);
873         /* extract the current frame number */
874         ast2->frame_offset = st2->index_entries[index].timestamp;
875         if(ast2->sample_size)
876             ast2->frame_offset *=ast2->sample_size;
877     }
878
879     if (avi->dv_demux)
880         dv_flush_audio_packets(avi->dv_demux);
881     /* do the seek */
882     url_fseek(&s->pb, pos, SEEK_SET);
883     avi->stream_index= -1;
884     return 0;
885 }
886
887 static int avi_read_close(AVFormatContext *s)
888 {
889     int i;
890     AVIContext *avi = s->priv_data;
891
892     for(i=0;i<s->nb_streams;i++) {
893         AVStream *st = s->streams[i];
894         AVIStream *ast = st->priv_data;
895         av_free(ast);
896         av_free(st->codec->extradata);
897         av_free(st->codec->palctrl);
898     }
899
900     if (avi->dv_demux)
901         av_free(avi->dv_demux);
902
903     return 0;
904 }
905
906 static int avi_probe(AVProbeData *p)
907 {
908     /* check file header */
909     if (p->buf_size <= 32)
910         return 0;
911     if (p->buf[0] == 'R' && p->buf[1] == 'I' &&
912         p->buf[2] == 'F' && p->buf[3] == 'F' &&
913         p->buf[8] == 'A' && p->buf[9] == 'V' &&
914         p->buf[10] == 'I' && p->buf[11] == ' ')
915         return AVPROBE_SCORE_MAX;
916     else
917         return 0;
918 }
919
920 static AVInputFormat avi_iformat = {
921     "avi",
922     "avi format",
923     sizeof(AVIContext),
924     avi_probe,
925     avi_read_header,
926     avi_read_packet,
927     avi_read_close,
928     avi_read_seek,
929 };
930
931 int avidec_init(void)
932 {
933     av_register_input_format(&avi_iformat);
934     return 0;
935 }