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