]> git.sesse.net Git - ffmpeg/blob - libavformat/avidec.c
Merge remote-tracking branch 'luzero/segment'
[ffmpeg] / libavformat / avidec.c
1 /*
2  * AVI demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
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
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <strings.h>
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/mathematics.h"
25 #include "libavutil/bswap.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/dict.h"
28 #include "avformat.h"
29 #include "avi.h"
30 #include "dv.h"
31 #include "riff.h"
32
33 #undef NDEBUG
34 #include <assert.h>
35
36 typedef struct AVIStream {
37     int64_t frame_offset; /* current frame (video) or byte (audio) counter
38                          (used to compute the pts) */
39     int remaining;
40     int packet_size;
41
42     int scale;
43     int rate;
44     int sample_size; /* size of one sample (or packet) (in the rate/scale sense) in bytes */
45
46     int64_t cum_len; /* temporary storage (used during seek) */
47
48     int prefix;                       ///< normally 'd'<<8 + 'c' or 'w'<<8 + 'b'
49     int prefix_count;
50     uint32_t pal[256];
51     int has_pal;
52     int dshow_block_align;            ///< block align variable used to emulate bugs in the MS dshow demuxer
53
54     AVFormatContext *sub_ctx;
55     AVPacket sub_pkt;
56     uint8_t *sub_buffer;
57
58     int64_t seek_pos;
59 } AVIStream;
60
61 typedef struct {
62     const AVClass *class;
63     int64_t  riff_end;
64     int64_t  movi_end;
65     int64_t  fsize;
66     int64_t movi_list;
67     int64_t last_pkt_pos;
68     int index_loaded;
69     int is_odml;
70     int non_interleaved;
71     int stream_index;
72     DVDemuxContext* dv_demux;
73     int odml_depth;
74     int use_odml;
75 #define MAX_ODML_DEPTH 1000
76     int64_t dts_max;
77 } AVIContext;
78
79
80 static const AVOption options[] = {
81     { "use_odml", "use odml index", offsetof(AVIContext, use_odml), FF_OPT_TYPE_INT, {.dbl = 1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM},
82     { NULL },
83 };
84
85 static const AVClass demuxer_class = {
86     "AVI demuxer",
87     av_default_item_name,
88     options,
89     LIBAVUTIL_VERSION_INT,
90 };
91
92
93 static const char avi_headers[][8] = {
94     { 'R', 'I', 'F', 'F',    'A', 'V', 'I', ' ' },
95     { 'R', 'I', 'F', 'F',    'A', 'V', 'I', 'X' },
96     { 'R', 'I', 'F', 'F',    'A', 'V', 'I', 0x19},
97     { 'O', 'N', '2', ' ',    'O', 'N', '2', 'f' },
98     { 'R', 'I', 'F', 'F',    'A', 'M', 'V', ' ' },
99     { 0 }
100 };
101
102 static int avi_load_index(AVFormatContext *s);
103 static int guess_ni_flag(AVFormatContext *s);
104
105 #define print_tag(str, tag, size)                       \
106     av_dlog(NULL, "%s: tag=%c%c%c%c size=0x%x\n",       \
107            str, tag & 0xff,                             \
108            (tag >> 8) & 0xff,                           \
109            (tag >> 16) & 0xff,                          \
110            (tag >> 24) & 0xff,                          \
111            size)
112
113 static inline int get_duration(AVIStream *ast, int len){
114     if(ast->sample_size){
115         return len;
116     }else if (ast->dshow_block_align){
117         return (len + ast->dshow_block_align - 1)/ast->dshow_block_align;
118     }else
119         return 1;
120 }
121
122 static int get_riff(AVFormatContext *s, AVIOContext *pb)
123 {
124     AVIContext *avi = s->priv_data;
125     char header[8];
126     int i;
127
128     /* check RIFF header */
129     avio_read(pb, header, 4);
130     avi->riff_end = avio_rl32(pb);  /* RIFF chunk size */
131     avi->riff_end += avio_tell(pb); /* RIFF chunk end */
132     avio_read(pb, header+4, 4);
133
134     for(i=0; avi_headers[i][0]; i++)
135         if(!memcmp(header, avi_headers[i], 8))
136             break;
137     if(!avi_headers[i][0])
138         return -1;
139
140     if(header[7] == 0x19)
141         av_log(s, AV_LOG_INFO, "This file has been generated by a totally broken muxer.\n");
142
143     return 0;
144 }
145
146 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num){
147     AVIContext *avi = s->priv_data;
148     AVIOContext *pb = s->pb;
149     int longs_pre_entry= avio_rl16(pb);
150     int index_sub_type = avio_r8(pb);
151     int index_type     = avio_r8(pb);
152     int entries_in_use = avio_rl32(pb);
153     int chunk_id       = avio_rl32(pb);
154     int64_t base       = avio_rl64(pb);
155     int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0');
156     AVStream *st;
157     AVIStream *ast;
158     int i;
159     int64_t last_pos= -1;
160     int64_t filesize= avi->fsize;
161
162     av_dlog(s, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%16"PRIX64"\n",
163             longs_pre_entry,index_type, entries_in_use, chunk_id, base);
164
165     if(stream_id >= s->nb_streams || stream_id < 0)
166         return -1;
167     st= s->streams[stream_id];
168     ast = st->priv_data;
169
170     if(index_sub_type)
171         return -1;
172
173     avio_rl32(pb);
174
175     if(index_type && longs_pre_entry != 2)
176         return -1;
177     if(index_type>1)
178         return -1;
179
180     if(filesize > 0 && base >= filesize){
181         av_log(s, AV_LOG_ERROR, "ODML index invalid\n");
182         if(base>>32 == (base & 0xFFFFFFFF) && (base & 0xFFFFFFFF) < filesize && filesize <= 0xFFFFFFFF)
183             base &= 0xFFFFFFFF;
184         else
185             return -1;
186     }
187
188     for(i=0; i<entries_in_use; i++){
189         if(index_type){
190             int64_t pos= avio_rl32(pb) + base - 8;
191             int len    = avio_rl32(pb);
192             int key= len >= 0;
193             len &= 0x7FFFFFFF;
194
195 #ifdef DEBUG_SEEK
196             av_log(s, AV_LOG_ERROR, "pos:%"PRId64", len:%X\n", pos, len);
197 #endif
198             if(url_feof(pb))
199                 return -1;
200
201             if(last_pos == pos || pos == base - 8)
202                 avi->non_interleaved= 1;
203             if(last_pos != pos && (len || !ast->sample_size))
204                 av_add_index_entry(st, pos, ast->cum_len, len, 0, key ? AVINDEX_KEYFRAME : 0);
205
206             ast->cum_len += get_duration(ast, len);
207             last_pos= pos;
208         }else{
209             int64_t offset, pos;
210             int duration;
211             offset = avio_rl64(pb);
212             avio_rl32(pb);       /* size */
213             duration = avio_rl32(pb);
214
215             if(url_feof(pb))
216                 return -1;
217
218             pos = avio_tell(pb);
219
220             if(avi->odml_depth > MAX_ODML_DEPTH){
221                 av_log(s, AV_LOG_ERROR, "Too deeply nested ODML indexes\n");
222                 return -1;
223             }
224
225             if(avio_seek(pb, offset+8, SEEK_SET) < 0)
226                 return -1;
227             avi->odml_depth++;
228             read_braindead_odml_indx(s, frame_num);
229             avi->odml_depth--;
230             frame_num += duration;
231
232             if(avio_seek(pb, pos, SEEK_SET) < 0) {
233                 av_log(s, AV_LOG_ERROR, "Failed to restore position after reading index");
234                 return -1;
235             }
236
237         }
238     }
239     avi->index_loaded=1;
240     return 0;
241 }
242
243 static void clean_index(AVFormatContext *s){
244     int i;
245     int64_t j;
246
247     for(i=0; i<s->nb_streams; i++){
248         AVStream *st = s->streams[i];
249         AVIStream *ast = st->priv_data;
250         int n= st->nb_index_entries;
251         int max= ast->sample_size;
252         int64_t pos, size, ts;
253
254         if(n != 1 || ast->sample_size==0)
255             continue;
256
257         while(max < 1024) max+=max;
258
259         pos= st->index_entries[0].pos;
260         size= st->index_entries[0].size;
261         ts= st->index_entries[0].timestamp;
262
263         for(j=0; j<size; j+=max){
264             av_add_index_entry(st, pos+j, ts+j, FFMIN(max, size-j), 0, AVINDEX_KEYFRAME);
265         }
266     }
267 }
268
269 static int avi_read_tag(AVFormatContext *s, AVStream *st, uint32_t tag, uint32_t size)
270 {
271     AVIOContext *pb = s->pb;
272     char key[5] = {0}, *value;
273
274     size += (size & 1);
275
276     if (size == UINT_MAX)
277         return -1;
278     value = av_malloc(size+1);
279     if (!value)
280         return -1;
281     avio_read(pb, value, size);
282     value[size]=0;
283
284     AV_WL32(key, tag);
285
286     return av_dict_set(st ? &st->metadata : &s->metadata, key, value,
287                             AV_DICT_DONT_STRDUP_VAL);
288 }
289
290 static void avi_read_info(AVFormatContext *s, uint64_t end)
291 {
292     while (avio_tell(s->pb) < end) {
293         uint32_t tag  = avio_rl32(s->pb);
294         uint32_t size = avio_rl32(s->pb);
295         avi_read_tag(s, NULL, tag, size);
296     }
297 }
298
299 static const char months[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
300                                     "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
301
302 static void avi_metadata_creation_time(AVDictionary **metadata, char *date)
303 {
304     char month[4], time[9], buffer[64];
305     int i, day, year;
306     /* parse standard AVI date format (ie. "Mon Mar 10 15:04:43 2003") */
307     if (sscanf(date, "%*3s%*[ ]%3s%*[ ]%2d%*[ ]%8s%*[ ]%4d",
308                month, &day, time, &year) == 4) {
309         for (i=0; i<12; i++)
310             if (!strcasecmp(month, months[i])) {
311                 snprintf(buffer, sizeof(buffer), "%.4d-%.2d-%.2d %s",
312                          year, i+1, day, time);
313                 av_dict_set(metadata, "creation_time", buffer, 0);
314             }
315     } else if (date[4] == '/' && date[7] == '/') {
316         date[4] = date[7] = '-';
317         av_dict_set(metadata, "creation_time", date, 0);
318     }
319 }
320
321 static void avi_read_nikon(AVFormatContext *s, uint64_t end)
322 {
323     while (avio_tell(s->pb) < end) {
324         uint32_t tag  = avio_rl32(s->pb);
325         uint32_t size = avio_rl32(s->pb);
326         switch (tag) {
327         case MKTAG('n', 'c', 't', 'g'): {  /* Nikon Tags */
328             uint64_t tag_end = avio_tell(s->pb) + size;
329             while (avio_tell(s->pb) < tag_end) {
330                 uint16_t tag  = avio_rl16(s->pb);
331                 uint16_t size = avio_rl16(s->pb);
332                 const char *name = NULL;
333                 char buffer[64] = {0};
334                 size -= avio_read(s->pb, buffer,
335                                    FFMIN(size, sizeof(buffer)-1));
336                 switch (tag) {
337                 case 0x03:  name = "maker";  break;
338                 case 0x04:  name = "model";  break;
339                 case 0x13:  name = "creation_time";
340                     if (buffer[4] == ':' && buffer[7] == ':')
341                         buffer[4] = buffer[7] = '-';
342                     break;
343                 }
344                 if (name)
345                     av_dict_set(&s->metadata, name, buffer, 0);
346                 avio_skip(s->pb, size);
347             }
348             break;
349         }
350         default:
351             avio_skip(s->pb, size);
352             break;
353         }
354     }
355 }
356
357 static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
358 {
359     AVIContext *avi = s->priv_data;
360     AVIOContext *pb = s->pb;
361     unsigned int tag, tag1, handler;
362     int codec_type, stream_index, frame_period;
363     unsigned int size;
364     int i;
365     AVStream *st;
366     AVIStream *ast = NULL;
367     int avih_width=0, avih_height=0;
368     int amv_file_format=0;
369     uint64_t list_end = 0;
370     int ret;
371
372     avi->stream_index= -1;
373
374     if (get_riff(s, pb) < 0)
375         return -1;
376
377     av_log(avi, AV_LOG_DEBUG, "use odml:%d\n", avi->use_odml);
378
379     avi->fsize = avio_size(pb);
380     if(avi->fsize<=0 || avi->fsize < avi->riff_end)
381         avi->fsize= avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
382
383     /* first list tag */
384     stream_index = -1;
385     codec_type = -1;
386     frame_period = 0;
387     for(;;) {
388         if (url_feof(pb))
389             goto fail;
390         tag = avio_rl32(pb);
391         size = avio_rl32(pb);
392
393         print_tag("tag", tag, size);
394
395         switch(tag) {
396         case MKTAG('L', 'I', 'S', 'T'):
397             list_end = avio_tell(pb) + size;
398             /* Ignored, except at start of video packets. */
399             tag1 = avio_rl32(pb);
400
401             print_tag("list", tag1, 0);
402
403             if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
404                 avi->movi_list = avio_tell(pb) - 4;
405                 if(size) avi->movi_end = avi->movi_list + size + (size & 1);
406                 else     avi->movi_end = avi->fsize;
407                 av_dlog(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
408                 goto end_of_header;
409             }
410             else if (tag1 == MKTAG('I', 'N', 'F', 'O'))
411                 avi_read_info(s, list_end);
412             else if (tag1 == MKTAG('n', 'c', 'd', 't'))
413                 avi_read_nikon(s, list_end);
414
415             break;
416         case MKTAG('I', 'D', 'I', 'T'): {
417             unsigned char date[64] = {0};
418             size += (size & 1);
419             size -= avio_read(pb, date, FFMIN(size, sizeof(date)-1));
420             avio_skip(pb, size);
421             avi_metadata_creation_time(&s->metadata, date);
422             break;
423         }
424         case MKTAG('d', 'm', 'l', 'h'):
425             avi->is_odml = 1;
426             avio_skip(pb, size + (size & 1));
427             break;
428         case MKTAG('a', 'm', 'v', 'h'):
429             amv_file_format=1;
430         case MKTAG('a', 'v', 'i', 'h'):
431             /* AVI header */
432             /* using frame_period is bad idea */
433             frame_period = avio_rl32(pb);
434             avio_rl32(pb); /* max. bytes per second */
435             avio_rl32(pb);
436             avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX;
437
438             avio_skip(pb, 2 * 4);
439             avio_rl32(pb);
440             avio_rl32(pb);
441             avih_width=avio_rl32(pb);
442             avih_height=avio_rl32(pb);
443
444             avio_skip(pb, size - 10 * 4);
445             break;
446         case MKTAG('s', 't', 'r', 'h'):
447             /* stream header */
448
449             tag1 = avio_rl32(pb);
450             handler = avio_rl32(pb); /* codec tag */
451
452             if(tag1 == MKTAG('p', 'a', 'd', 's')){
453                 avio_skip(pb, size - 8);
454                 break;
455             }else{
456                 stream_index++;
457                 st = av_new_stream(s, stream_index);
458                 if (!st)
459                     goto fail;
460
461                 ast = av_mallocz(sizeof(AVIStream));
462                 if (!ast)
463                     goto fail;
464                 st->priv_data = ast;
465             }
466             if(amv_file_format)
467                 tag1 = stream_index ? MKTAG('a','u','d','s') : MKTAG('v','i','d','s');
468
469             print_tag("strh", tag1, -1);
470
471             if(tag1 == MKTAG('i', 'a', 'v', 's') || tag1 == MKTAG('i', 'v', 'a', 's')){
472                 int64_t dv_dur;
473
474                 /*
475                  * After some consideration -- I don't think we
476                  * have to support anything but DV in type1 AVIs.
477                  */
478                 if (s->nb_streams != 1)
479                     goto fail;
480
481                 if (handler != MKTAG('d', 'v', 's', 'd') &&
482                     handler != MKTAG('d', 'v', 'h', 'd') &&
483                     handler != MKTAG('d', 'v', 's', 'l'))
484                    goto fail;
485
486                 ast = s->streams[0]->priv_data;
487                 av_freep(&s->streams[0]->codec->extradata);
488                 av_freep(&s->streams[0]->codec);
489                 av_freep(&s->streams[0]);
490                 s->nb_streams = 0;
491                 if (CONFIG_DV_DEMUXER) {
492                     avi->dv_demux = dv_init_demux(s);
493                     if (!avi->dv_demux)
494                         goto fail;
495                 }
496                 s->streams[0]->priv_data = ast;
497                 avio_skip(pb, 3 * 4);
498                 ast->scale = avio_rl32(pb);
499                 ast->rate = avio_rl32(pb);
500                 avio_skip(pb, 4);  /* start time */
501
502                 dv_dur = avio_rl32(pb);
503                 if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
504                     dv_dur *= AV_TIME_BASE;
505                     s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
506                 }
507                 /*
508                  * else, leave duration alone; timing estimation in utils.c
509                  *      will make a guess based on bitrate.
510                  */
511
512                 stream_index = s->nb_streams - 1;
513                 avio_skip(pb, size - 9*4);
514                 break;
515             }
516
517             assert(stream_index < s->nb_streams);
518             st->codec->stream_codec_tag= handler;
519
520             avio_rl32(pb); /* flags */
521             avio_rl16(pb); /* priority */
522             avio_rl16(pb); /* language */
523             avio_rl32(pb); /* initial frame */
524             ast->scale = avio_rl32(pb);
525             ast->rate = avio_rl32(pb);
526             if(!(ast->scale && ast->rate)){
527                 av_log(s, AV_LOG_WARNING, "scale/rate is %u/%u which is invalid. (This file has been generated by broken software.)\n", ast->scale, ast->rate);
528                 if(frame_period){
529                     ast->rate = 1000000;
530                     ast->scale = frame_period;
531                 }else{
532                     ast->rate = 25;
533                     ast->scale = 1;
534                 }
535             }
536             av_set_pts_info(st, 64, ast->scale, ast->rate);
537
538             ast->cum_len=avio_rl32(pb); /* start */
539             st->nb_frames = avio_rl32(pb);
540
541             st->start_time = 0;
542             avio_rl32(pb); /* buffer size */
543             avio_rl32(pb); /* quality */
544             ast->sample_size = avio_rl32(pb); /* sample ssize */
545             ast->cum_len *= FFMAX(1, ast->sample_size);
546 //            av_log(s, AV_LOG_DEBUG, "%d %d %d %d\n", ast->rate, ast->scale, ast->start, ast->sample_size);
547
548             switch(tag1) {
549             case MKTAG('v', 'i', 'd', 's'):
550                 codec_type = AVMEDIA_TYPE_VIDEO;
551
552                 ast->sample_size = 0;
553                 break;
554             case MKTAG('a', 'u', 'd', 's'):
555                 codec_type = AVMEDIA_TYPE_AUDIO;
556                 break;
557             case MKTAG('t', 'x', 't', 's'):
558                 codec_type = AVMEDIA_TYPE_SUBTITLE;
559                 break;
560             case MKTAG('d', 'a', 't', 's'):
561                 codec_type = AVMEDIA_TYPE_DATA;
562                 break;
563             default:
564                 av_log(s, AV_LOG_INFO, "unknown stream type %X\n", tag1);
565             }
566             if(ast->sample_size == 0)
567                 st->duration = st->nb_frames;
568             ast->frame_offset= ast->cum_len;
569             avio_skip(pb, size - 12 * 4);
570             break;
571         case MKTAG('s', 't', 'r', 'f'):
572             /* stream header */
573             if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
574                 avio_skip(pb, size);
575             } else {
576                 uint64_t cur_pos = avio_tell(pb);
577                 if (cur_pos < list_end)
578                     size = FFMIN(size, list_end - cur_pos);
579                 st = s->streams[stream_index];
580                 switch(codec_type) {
581                 case AVMEDIA_TYPE_VIDEO:
582                     if(amv_file_format){
583                         st->codec->width=avih_width;
584                         st->codec->height=avih_height;
585                         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
586                         st->codec->codec_id = CODEC_ID_AMV;
587                         avio_skip(pb, size);
588                         break;
589                     }
590                     tag1 = ff_get_bmp_header(pb, st);
591
592                     if (tag1 == MKTAG('D', 'X', 'S', 'B') || tag1 == MKTAG('D','X','S','A')) {
593                         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
594                         st->codec->codec_tag = tag1;
595                         st->codec->codec_id = CODEC_ID_XSUB;
596                         break;
597                     }
598
599                     if(size > 10*4 && size<(1<<30)){
600                         st->codec->extradata_size= size - 10*4;
601                         st->codec->extradata= av_malloc(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
602                         if (!st->codec->extradata) {
603                             st->codec->extradata_size= 0;
604                             return AVERROR(ENOMEM);
605                         }
606                         avio_read(pb, st->codec->extradata, st->codec->extradata_size);
607                     }
608
609                     if(st->codec->extradata_size & 1) //FIXME check if the encoder really did this correctly
610                         avio_r8(pb);
611
612                     /* Extract palette from extradata if bpp <= 8. */
613                     /* This code assumes that extradata contains only palette. */
614                     /* This is true for all paletted codecs implemented in FFmpeg. */
615                     if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
616                         int pal_size = (1 << st->codec->bits_per_coded_sample) << 2;
617                         const uint8_t *pal_src;
618
619                         pal_size = FFMIN(pal_size, st->codec->extradata_size);
620                         pal_src = st->codec->extradata + st->codec->extradata_size - pal_size;
621 #if HAVE_BIGENDIAN
622                         for (i = 0; i < pal_size/4; i++)
623                             ast->pal[i] = AV_RL32(pal_src+4*i);
624 #else
625                         memcpy(ast->pal, pal_src, pal_size);
626 #endif
627                         ast->has_pal = 1;
628                     }
629
630                     print_tag("video", tag1, 0);
631
632                     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
633                     st->codec->codec_tag = tag1;
634                     st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tag1);
635                     st->need_parsing = AVSTREAM_PARSE_HEADERS; // This is needed to get the pict type which is necessary for generating correct pts.
636                     // Support "Resolution 1:1" for Avid AVI Codec
637                     if(tag1 == MKTAG('A', 'V', 'R', 'n') &&
638                        st->codec->extradata_size >= 31 &&
639                        !memcmp(&st->codec->extradata[28], "1:1", 3))
640                         st->codec->codec_id = CODEC_ID_RAWVIDEO;
641
642                     if(st->codec->codec_tag==0 && st->codec->height > 0 && st->codec->extradata_size < 1U<<30){
643                         st->codec->extradata_size+= 9;
644                         st->codec->extradata= av_realloc_f(st->codec->extradata, 1, st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
645                         if(st->codec->extradata)
646                             memcpy(st->codec->extradata + st->codec->extradata_size - 9, "BottomUp", 9);
647                     }
648                     st->codec->height= FFABS(st->codec->height);
649
650 //                    avio_skip(pb, size - 5 * 4);
651                     break;
652                 case AVMEDIA_TYPE_AUDIO:
653                     ret = ff_get_wav_header(pb, st->codec, size);
654                     if (ret < 0)
655                         return ret;
656                     ast->dshow_block_align= st->codec->block_align;
657                     if(ast->sample_size && st->codec->block_align && ast->sample_size != st->codec->block_align){
658                         av_log(s, AV_LOG_WARNING, "sample size (%d) != block align (%d)\n", ast->sample_size, st->codec->block_align);
659                         ast->sample_size= st->codec->block_align;
660                     }
661                     if (size&1) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
662                         avio_skip(pb, 1);
663                     /* Force parsing as several audio frames can be in
664                      * one packet and timestamps refer to packet start. */
665                     st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
666                     /* ADTS header is in extradata, AAC without header must be
667                      * stored as exact frames. Parser not needed and it will
668                      * fail. */
669                     if (st->codec->codec_id == CODEC_ID_AAC && st->codec->extradata_size)
670                         st->need_parsing = AVSTREAM_PARSE_NONE;
671                     /* AVI files with Xan DPCM audio (wrongly) declare PCM
672                      * audio in the header but have Axan as stream_code_tag. */
673                     if (st->codec->stream_codec_tag == AV_RL32("Axan")){
674                         st->codec->codec_id  = CODEC_ID_XAN_DPCM;
675                         st->codec->codec_tag = 0;
676                         ast->dshow_block_align = 0;
677                     }
678                     if (amv_file_format){
679                         st->codec->codec_id  = CODEC_ID_ADPCM_IMA_AMV;
680                         ast->dshow_block_align = 0;
681                     }
682                     break;
683                 case AVMEDIA_TYPE_SUBTITLE:
684                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
685                     st->request_probe= 1;
686                     break;
687                 default:
688                     st->codec->codec_type = AVMEDIA_TYPE_DATA;
689                     st->codec->codec_id= CODEC_ID_NONE;
690                     st->codec->codec_tag= 0;
691                     avio_skip(pb, size);
692                     break;
693                 }
694             }
695             break;
696         case MKTAG('i', 'n', 'd', 'x'):
697             i= avio_tell(pb);
698             if(pb->seekable && !(s->flags & AVFMT_FLAG_IGNIDX) && avi->use_odml &&
699                read_braindead_odml_indx(s, 0) < 0 && s->error_recognition >= FF_ER_EXPLODE){
700                 goto fail;            }
701             avio_seek(pb, i+size, SEEK_SET);
702             break;
703         case MKTAG('v', 'p', 'r', 'p'):
704             if(stream_index < (unsigned)s->nb_streams && size > 9*4){
705                 AVRational active, active_aspect;
706
707                 st = s->streams[stream_index];
708                 avio_rl32(pb);
709                 avio_rl32(pb);
710                 avio_rl32(pb);
711                 avio_rl32(pb);
712                 avio_rl32(pb);
713
714                 active_aspect.den= avio_rl16(pb);
715                 active_aspect.num= avio_rl16(pb);
716                 active.num       = avio_rl32(pb);
717                 active.den       = avio_rl32(pb);
718                 avio_rl32(pb); //nbFieldsPerFrame
719
720                 if(active_aspect.num && active_aspect.den && active.num && active.den){
721                     st->sample_aspect_ratio= av_div_q(active_aspect, active);
722 //av_log(s, AV_LOG_ERROR, "vprp %d/%d %d/%d\n", active_aspect.num, active_aspect.den, active.num, active.den);
723                 }
724                 size -= 9*4;
725             }
726             avio_skip(pb, size);
727             break;
728         case MKTAG('s', 't', 'r', 'n'):
729             if(s->nb_streams){
730                 avi_read_tag(s, s->streams[s->nb_streams-1], tag, size);
731                 break;
732             }
733         default:
734             if(size > 1000000){
735                 av_log(s, AV_LOG_ERROR, "Something went wrong during header parsing, "
736                                         "I will ignore it and try to continue anyway.\n");
737                 if (s->error_recognition >= FF_ER_EXPLODE) goto fail;
738                 avi->movi_list = avio_tell(pb) - 4;
739                 avi->movi_end  = avi->fsize;
740                 goto end_of_header;
741             }
742             /* skip tag */
743             size += (size & 1);
744             avio_skip(pb, size);
745             break;
746         }
747     }
748  end_of_header:
749     /* check stream number */
750     if (stream_index != s->nb_streams - 1) {
751     fail:
752         return -1;
753     }
754
755     if(!avi->index_loaded && pb->seekable)
756         avi_load_index(s);
757     avi->index_loaded = 1;
758     avi->non_interleaved |= guess_ni_flag(s) | (s->flags & AVFMT_FLAG_SORT_DTS);
759     for(i=0; i<s->nb_streams; i++){
760         AVStream *st = s->streams[i];
761         if(st->nb_index_entries)
762             break;
763     }
764     // DV-in-AVI cannot be non-interleaved, if set this must be
765     // a mis-detection.
766     if(avi->dv_demux)
767         avi->non_interleaved=0;
768     if(i==s->nb_streams && avi->non_interleaved) {
769         av_log(s, AV_LOG_WARNING, "non-interleaved AVI without index, switching to interleaved\n");
770         avi->non_interleaved=0;
771     }
772
773     if(avi->non_interleaved) {
774         av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
775         clean_index(s);
776     }
777
778     ff_metadata_conv_ctx(s, NULL, ff_avi_metadata_conv);
779
780     return 0;
781 }
782
783 static int read_gab2_sub(AVStream *st, AVPacket *pkt) {
784     if (!strcmp(pkt->data, "GAB2") && AV_RL16(pkt->data+5) == 2) {
785         uint8_t desc[256];
786         int score = AVPROBE_SCORE_MAX / 2, ret;
787         AVIStream *ast = st->priv_data;
788         AVInputFormat *sub_demuxer;
789         AVRational time_base;
790         AVIOContext *pb = avio_alloc_context( pkt->data + 7,
791                                               pkt->size - 7,
792                                               0, NULL, NULL, NULL, NULL);
793         AVProbeData pd;
794         unsigned int desc_len = avio_rl32(pb);
795
796         if (desc_len > pb->buf_end - pb->buf_ptr)
797             goto error;
798
799         ret = avio_get_str16le(pb, desc_len, desc, sizeof(desc));
800         avio_skip(pb, desc_len - ret);
801         if (*desc)
802             av_dict_set(&st->metadata, "title", desc, 0);
803
804         avio_rl16(pb);   /* flags? */
805         avio_rl32(pb);   /* data size */
806
807         pd = (AVProbeData) { .buf = pb->buf_ptr, .buf_size = pb->buf_end - pb->buf_ptr };
808         if (!(sub_demuxer = av_probe_input_format2(&pd, 1, &score)))
809             goto error;
810
811         if (!(ast->sub_ctx = avformat_alloc_context()))
812             goto error;
813
814         ast->sub_ctx->pb      = pb;
815         if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
816             av_read_packet(ast->sub_ctx, &ast->sub_pkt);
817             *st->codec = *ast->sub_ctx->streams[0]->codec;
818             ast->sub_ctx->streams[0]->codec->extradata = NULL;
819             time_base = ast->sub_ctx->streams[0]->time_base;
820             av_set_pts_info(st, 64, time_base.num, time_base.den);
821         }
822         ast->sub_buffer = pkt->data;
823         memset(pkt, 0, sizeof(*pkt));
824         return 1;
825 error:
826         av_freep(&pb);
827     }
828     return 0;
829 }
830
831 static AVStream *get_subtitle_pkt(AVFormatContext *s, AVStream *next_st,
832                                   AVPacket *pkt)
833 {
834     AVIStream *ast, *next_ast = next_st->priv_data;
835     int64_t ts, next_ts, ts_min = INT64_MAX;
836     AVStream *st, *sub_st = NULL;
837     int i;
838
839     next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
840                            AV_TIME_BASE_Q);
841
842     for (i=0; i<s->nb_streams; i++) {
843         st  = s->streams[i];
844         ast = st->priv_data;
845         if (st->discard < AVDISCARD_ALL && ast && ast->sub_pkt.data) {
846             ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
847             if (ts <= next_ts && ts < ts_min) {
848                 ts_min = ts;
849                 sub_st = st;
850             }
851         }
852     }
853
854     if (sub_st) {
855         ast = sub_st->priv_data;
856         *pkt = ast->sub_pkt;
857         pkt->stream_index = sub_st->index;
858         if (av_read_packet(ast->sub_ctx, &ast->sub_pkt) < 0)
859             ast->sub_pkt.data = NULL;
860     }
861     return sub_st;
862 }
863
864 static int get_stream_idx(int *d){
865     if(    d[0] >= '0' && d[0] <= '9'
866         && d[1] >= '0' && d[1] <= '9'){
867         return (d[0] - '0') * 10 + (d[1] - '0');
868     }else{
869         return 100; //invalid stream ID
870     }
871 }
872
873 static int avi_sync(AVFormatContext *s, int exit_early)
874 {
875     AVIContext *avi = s->priv_data;
876     AVIOContext *pb = s->pb;
877     int n;
878     unsigned int d[8];
879     unsigned int size;
880     int64_t i, sync;
881
882 start_sync:
883     memset(d, -1, sizeof(d));
884     for(i=sync=avio_tell(pb); !url_feof(pb); i++) {
885         int j;
886
887         for(j=0; j<7; j++)
888             d[j]= d[j+1];
889         d[7]= avio_r8(pb);
890
891         size= d[4] + (d[5]<<8) + (d[6]<<16) + (d[7]<<24);
892
893         n= get_stream_idx(d+2);
894 //av_log(s, AV_LOG_DEBUG, "%X %X %X %X %X %X %X %X %"PRId64" %d %d\n", d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
895         if(i + (uint64_t)size > avi->fsize || d[0] > 127)
896             continue;
897
898         //parse ix##
899         if(  (d[0] == 'i' && d[1] == 'x' && n < s->nb_streams)
900         //parse JUNK
901            ||(d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K')
902            ||(d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1')){
903             avio_skip(pb, size);
904 //av_log(s, AV_LOG_DEBUG, "SKIP\n");
905             goto start_sync;
906         }
907
908         //parse stray LIST
909         if(d[0] == 'L' && d[1] == 'I' && d[2] == 'S' && d[3] == 'T'){
910             avio_skip(pb, 4);
911             goto start_sync;
912         }
913
914         n= get_stream_idx(d);
915
916         if(!((i-avi->last_pkt_pos)&1) && get_stream_idx(d+1) < s->nb_streams)
917             continue;
918
919         //detect ##ix chunk and skip
920         if(d[2] == 'i' && d[3] == 'x' && n < s->nb_streams){
921             avio_skip(pb, size);
922             goto start_sync;
923         }
924
925         //parse ##dc/##wb
926         if(n < s->nb_streams){
927             AVStream *st;
928             AVIStream *ast;
929             st = s->streams[n];
930             ast = st->priv_data;
931
932             if(s->nb_streams>=2){
933                 AVStream *st1  = s->streams[1];
934                 AVIStream *ast1= st1->priv_data;
935                 //workaround for broken small-file-bug402.avi
936                 if(   d[2] == 'w' && d[3] == 'b'
937                    && n==0
938                    && st ->codec->codec_type == AVMEDIA_TYPE_VIDEO
939                    && st1->codec->codec_type == AVMEDIA_TYPE_AUDIO
940                    && ast->prefix == 'd'*256+'c'
941                    && (d[2]*256+d[3] == ast1->prefix || !ast1->prefix_count)
942                   ){
943                     n=1;
944                     st = st1;
945                     ast = ast1;
946                     av_log(s, AV_LOG_WARNING, "Invalid stream + prefix combination, assuming audio.\n");
947                 }
948             }
949
950
951             if(   (st->discard >= AVDISCARD_DEFAULT && size==0)
952                /*|| (st->discard >= AVDISCARD_NONKEY && !(pkt->flags & AV_PKT_FLAG_KEY))*/ //FIXME needs a little reordering
953                || st->discard >= AVDISCARD_ALL){
954                 if (!exit_early) {
955                     ast->frame_offset += get_duration(ast, size);
956                 }
957                 avio_skip(pb, size);
958                 goto start_sync;
959             }
960
961             if (d[2] == 'p' && d[3] == 'c' && size<=4*256+4) {
962                 int k = avio_r8(pb);
963                 int last = (k + avio_r8(pb) - 1) & 0xFF;
964
965                 avio_rl16(pb); //flags
966
967                 for (; k <= last; k++)
968                     ast->pal[k] = avio_rb32(pb)>>8;// b + (g << 8) + (r << 16);
969                 ast->has_pal= 1;
970                 goto start_sync;
971             } else if(   ((ast->prefix_count<5 || sync+9 > i) && d[2]<128 && d[3]<128) ||
972                          d[2]*256+d[3] == ast->prefix /*||
973                          (d[2] == 'd' && d[3] == 'c') ||
974                          (d[2] == 'w' && d[3] == 'b')*/) {
975
976                 if (exit_early)
977                     return 0;
978 //av_log(s, AV_LOG_DEBUG, "OK\n");
979                 if(d[2]*256+d[3] == ast->prefix)
980                     ast->prefix_count++;
981                 else{
982                     ast->prefix= d[2]*256+d[3];
983                     ast->prefix_count= 0;
984                 }
985
986                 avi->stream_index= n;
987                 ast->packet_size= size + 8;
988                 ast->remaining= size;
989
990                 if(size || !ast->sample_size){
991                     uint64_t pos= avio_tell(pb) - 8;
992                     if(!st->index_entries || !st->nb_index_entries || st->index_entries[st->nb_index_entries - 1].pos < pos){
993                         av_add_index_entry(st, pos, ast->frame_offset, size, 0, AVINDEX_KEYFRAME);
994                     }
995                 }
996                 return 0;
997             }
998         }
999     }
1000
1001     return AVERROR_EOF;
1002 }
1003
1004 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
1005 {
1006     AVIContext *avi = s->priv_data;
1007     AVIOContext *pb = s->pb;
1008     int err;
1009     void* dstr;
1010
1011     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1012         int size = dv_get_packet(avi->dv_demux, pkt);
1013         if (size >= 0)
1014             return size;
1015     }
1016
1017     if(avi->non_interleaved){
1018         int best_stream_index = 0;
1019         AVStream *best_st= NULL;
1020         AVIStream *best_ast;
1021         int64_t best_ts= INT64_MAX;
1022         int i;
1023
1024         for(i=0; i<s->nb_streams; i++){
1025             AVStream *st = s->streams[i];
1026             AVIStream *ast = st->priv_data;
1027             int64_t ts= ast->frame_offset;
1028             int64_t last_ts;
1029
1030             if(!st->nb_index_entries)
1031                 continue;
1032
1033             last_ts = st->index_entries[st->nb_index_entries - 1].timestamp;
1034             if(!ast->remaining && ts > last_ts)
1035                 continue;
1036
1037             ts = av_rescale_q(ts, st->time_base, (AVRational){FFMAX(1, ast->sample_size), AV_TIME_BASE});
1038
1039 //            av_log(s, AV_LOG_DEBUG, "%"PRId64" %d/%d %"PRId64"\n", ts, st->time_base.num, st->time_base.den, ast->frame_offset);
1040             if(ts < best_ts){
1041                 best_ts= ts;
1042                 best_st= st;
1043                 best_stream_index= i;
1044             }
1045         }
1046         if(!best_st)
1047             return AVERROR_EOF;
1048
1049         best_ast = best_st->priv_data;
1050         best_ts = av_rescale_q(best_ts, (AVRational){FFMAX(1, best_ast->sample_size), AV_TIME_BASE}, best_st->time_base);
1051         if(best_ast->remaining)
1052             i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
1053         else{
1054             i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
1055             if(i>=0)
1056                 best_ast->frame_offset= best_st->index_entries[i].timestamp;
1057         }
1058
1059 //        av_log(s, AV_LOG_DEBUG, "%d\n", i);
1060         if(i>=0){
1061             int64_t pos= best_st->index_entries[i].pos;
1062             pos += best_ast->packet_size - best_ast->remaining;
1063             if(avio_seek(s->pb, pos + 8, SEEK_SET) < 0)
1064               return AVERROR_EOF;
1065 //        av_log(s, AV_LOG_DEBUG, "pos=%"PRId64"\n", pos);
1066
1067             assert(best_ast->remaining <= best_ast->packet_size);
1068
1069             avi->stream_index= best_stream_index;
1070             if(!best_ast->remaining)
1071                 best_ast->packet_size=
1072                 best_ast->remaining= best_st->index_entries[i].size;
1073         }
1074         else
1075           return AVERROR_EOF;
1076     }
1077
1078 resync:
1079     if(avi->stream_index >= 0){
1080         AVStream *st= s->streams[ avi->stream_index ];
1081         AVIStream *ast= st->priv_data;
1082         int size, err;
1083
1084         if(get_subtitle_pkt(s, st, pkt))
1085             return 0;
1086
1087         if(ast->sample_size <= 1) // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
1088             size= INT_MAX;
1089         else if(ast->sample_size < 32)
1090             // arbitrary multiplier to avoid tiny packets for raw PCM data
1091             size= 1024*ast->sample_size;
1092         else
1093             size= ast->sample_size;
1094
1095         if(size > ast->remaining)
1096             size= ast->remaining;
1097         avi->last_pkt_pos= avio_tell(pb);
1098         err= av_get_packet(pb, pkt, size);
1099         if(err<0)
1100             return err;
1101
1102         if(ast->has_pal && pkt->data && pkt->size<(unsigned)INT_MAX/2){
1103             uint8_t *pal;
1104             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
1105             if(!pal){
1106                 av_log(s, AV_LOG_ERROR, "Failed to allocate data for palette\n");
1107             }else{
1108                 memcpy(pal, ast->pal, AVPALETTE_SIZE);
1109                 ast->has_pal = 0;
1110             }
1111         }
1112
1113         if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1114             dstr = pkt->destruct;
1115             size = dv_produce_packet(avi->dv_demux, pkt,
1116                                     pkt->data, pkt->size, pkt->pos);
1117             pkt->destruct = dstr;
1118             pkt->flags |= AV_PKT_FLAG_KEY;
1119             if (size < 0)
1120                 av_free_packet(pkt);
1121         } else if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE
1122                    && !st->codec->codec_tag && read_gab2_sub(st, pkt)) {
1123             ast->frame_offset++;
1124             avi->stream_index = -1;
1125             ast->remaining = 0;
1126             goto resync;
1127         } else {
1128             /* XXX: How to handle B-frames in AVI? */
1129             pkt->dts = ast->frame_offset;
1130 //                pkt->dts += ast->start;
1131             if(ast->sample_size)
1132                 pkt->dts /= ast->sample_size;
1133 //av_log(s, AV_LOG_DEBUG, "dts:%"PRId64" offset:%"PRId64" %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);
1134             pkt->stream_index = avi->stream_index;
1135
1136             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1137                 AVIndexEntry *e;
1138                 int index;
1139                 assert(st->index_entries);
1140
1141                 index= av_index_search_timestamp(st, ast->frame_offset, 0);
1142                 e= &st->index_entries[index];
1143
1144                 if(index >= 0 && e->timestamp == ast->frame_offset){
1145                     if (index == st->nb_index_entries-1){
1146                         int key=1;
1147                         int i;
1148                         uint32_t state=-1;
1149                         for(i=0; i<FFMIN(size,256); i++){
1150                             if(st->codec->codec_id == CODEC_ID_MPEG4){
1151                                 if(state == 0x1B6){
1152                                     key= !(pkt->data[i]&0xC0);
1153                                     break;
1154                                 }
1155                             }else
1156                                 break;
1157                             state= (state<<8) + pkt->data[i];
1158                         }
1159                         if(!key)
1160                             e->flags &= ~AVINDEX_KEYFRAME;
1161                     }
1162                     if (e->flags & AVINDEX_KEYFRAME)
1163                         pkt->flags |= AV_PKT_FLAG_KEY;
1164                 }
1165             } else {
1166                 pkt->flags |= AV_PKT_FLAG_KEY;
1167             }
1168             ast->frame_offset += get_duration(ast, pkt->size);
1169         }
1170         ast->remaining -= size;
1171         if(!ast->remaining){
1172             avi->stream_index= -1;
1173             ast->packet_size= 0;
1174         }
1175
1176         if(!avi->non_interleaved && pkt->pos >= 0 && ast->seek_pos > pkt->pos){
1177             av_free_packet(pkt);
1178             goto resync;
1179         }
1180         ast->seek_pos= 0;
1181
1182         if(!avi->non_interleaved && st->nb_index_entries>1){
1183             int64_t dts= av_rescale_q(pkt->dts, st->time_base, AV_TIME_BASE_Q);
1184
1185             if(avi->dts_max - dts > 2*AV_TIME_BASE){
1186                 avi->non_interleaved= 1;
1187                 av_log(s, AV_LOG_INFO, "Switching to NI mode, due to poor interleaving\n");
1188             }else if(avi->dts_max < dts)
1189                 avi->dts_max = dts;
1190         }
1191
1192         return size;
1193     }
1194
1195     if ((err = avi_sync(s, 0)) < 0)
1196         return err;
1197     goto resync;
1198 }
1199
1200 /* XXX: We make the implicit supposition that the positions are sorted
1201    for each stream. */
1202 static int avi_read_idx1(AVFormatContext *s, int size)
1203 {
1204     AVIContext *avi = s->priv_data;
1205     AVIOContext *pb = s->pb;
1206     int nb_index_entries, i;
1207     AVStream *st;
1208     AVIStream *ast;
1209     unsigned int index, tag, flags, pos, len, first_packet = 1;
1210     unsigned last_pos= -1;
1211     int64_t idx1_pos, first_packet_pos = 0, data_offset = 0;
1212
1213     nb_index_entries = size / 16;
1214     if (nb_index_entries <= 0)
1215         return -1;
1216
1217     idx1_pos = avio_tell(pb);
1218     avio_seek(pb, avi->movi_list+4, SEEK_SET);
1219     if (avi_sync(s, 1) == 0) {
1220         first_packet_pos = avio_tell(pb) - 8;
1221     }
1222     avi->stream_index = -1;
1223     avio_seek(pb, idx1_pos, SEEK_SET);
1224
1225     /* Read the entries and sort them in each stream component. */
1226     for(i = 0; i < nb_index_entries; i++) {
1227         tag = avio_rl32(pb);
1228         flags = avio_rl32(pb);
1229         pos = avio_rl32(pb);
1230         len = avio_rl32(pb);
1231         av_dlog(s, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
1232                 i, tag, flags, pos, len);
1233
1234         index = ((tag & 0xff) - '0') * 10;
1235         index += ((tag >> 8) & 0xff) - '0';
1236         if (index >= s->nb_streams)
1237             continue;
1238         st = s->streams[index];
1239         ast = st->priv_data;
1240
1241         if(first_packet && first_packet_pos && len) {
1242             data_offset = first_packet_pos - pos;
1243             first_packet = 0;
1244         }
1245         pos += data_offset;
1246
1247         av_dlog(s, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
1248
1249         if(url_feof(pb))
1250             return -1;
1251
1252         if(last_pos == pos)
1253             avi->non_interleaved= 1;
1254         else if(len || !ast->sample_size)
1255             av_add_index_entry(st, pos, ast->cum_len, len, 0, (flags&AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
1256         ast->cum_len += get_duration(ast, len);
1257         last_pos= pos;
1258     }
1259     return 0;
1260 }
1261
1262 static int guess_ni_flag(AVFormatContext *s){
1263     int i;
1264     int64_t last_start=0;
1265     int64_t first_end= INT64_MAX;
1266     int64_t oldpos= avio_tell(s->pb);
1267
1268     for(i=0; i<s->nb_streams; i++){
1269         AVStream *st = s->streams[i];
1270         int n= st->nb_index_entries;
1271         unsigned int size;
1272
1273         if(n <= 0)
1274             continue;
1275
1276         if(n >= 2){
1277             int64_t pos= st->index_entries[0].pos;
1278             avio_seek(s->pb, pos + 4, SEEK_SET);
1279             size= avio_rl32(s->pb);
1280             if(pos + size > st->index_entries[1].pos)
1281                 last_start= INT64_MAX;
1282         }
1283
1284         if(st->index_entries[0].pos > last_start)
1285             last_start= st->index_entries[0].pos;
1286         if(st->index_entries[n-1].pos < first_end)
1287             first_end= st->index_entries[n-1].pos;
1288     }
1289     avio_seek(s->pb, oldpos, SEEK_SET);
1290     return last_start > first_end;
1291 }
1292
1293 static int avi_load_index(AVFormatContext *s)
1294 {
1295     AVIContext *avi = s->priv_data;
1296     AVIOContext *pb = s->pb;
1297     uint32_t tag, size;
1298     int64_t pos= avio_tell(pb);
1299     int ret = -1;
1300
1301     if (avio_seek(pb, avi->movi_end, SEEK_SET) < 0)
1302         goto the_end; // maybe truncated file
1303     av_dlog(s, "movi_end=0x%"PRIx64"\n", avi->movi_end);
1304     for(;;) {
1305         if (url_feof(pb))
1306             break;
1307         tag = avio_rl32(pb);
1308         size = avio_rl32(pb);
1309         av_dlog(s, "tag=%c%c%c%c size=0x%x\n",
1310                  tag        & 0xff,
1311                 (tag >>  8) & 0xff,
1312                 (tag >> 16) & 0xff,
1313                 (tag >> 24) & 0xff,
1314                 size);
1315
1316         if (tag == MKTAG('i', 'd', 'x', '1') &&
1317             avi_read_idx1(s, size) >= 0) {
1318             ret = 0;
1319             break;
1320         }
1321
1322         size += (size & 1);
1323         if (avio_skip(pb, size) < 0)
1324             break; // something is wrong here
1325     }
1326  the_end:
1327     avio_seek(pb, pos, SEEK_SET);
1328     return ret;
1329 }
1330
1331 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
1332 {
1333     AVIStream *ast2 = st2->priv_data;
1334     int64_t ts2 = av_rescale_q(timestamp, st->time_base, st2->time_base);
1335     av_free_packet(&ast2->sub_pkt);
1336     if (avformat_seek_file(ast2->sub_ctx, 0, INT64_MIN, ts2, ts2, 0) >= 0 ||
1337         avformat_seek_file(ast2->sub_ctx, 0, ts2, ts2, INT64_MAX, 0) >= 0)
1338         av_read_packet(ast2->sub_ctx, &ast2->sub_pkt);
1339 }
1340
1341 static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
1342 {
1343     AVIContext *avi = s->priv_data;
1344     AVStream *st;
1345     int i, index;
1346     int64_t pos, pos_min;
1347     AVIStream *ast;
1348
1349     if (!avi->index_loaded) {
1350         /* we only load the index on demand */
1351         avi_load_index(s);
1352         avi->index_loaded = 1;
1353     }
1354     assert(stream_index>= 0);
1355
1356     st = s->streams[stream_index];
1357     ast= st->priv_data;
1358     index= av_index_search_timestamp(st, timestamp * FFMAX(ast->sample_size, 1), flags);
1359     if(index<0)
1360         return -1;
1361
1362     /* find the position */
1363     pos = st->index_entries[index].pos;
1364     timestamp = st->index_entries[index].timestamp / FFMAX(ast->sample_size, 1);
1365
1366 //    av_log(s, AV_LOG_DEBUG, "XX %"PRId64" %d %"PRId64"\n", timestamp, index, st->index_entries[index].timestamp);
1367
1368     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1369         /* One and only one real stream for DV in AVI, and it has video  */
1370         /* offsets. Calling with other stream indexes should have failed */
1371         /* the av_index_search_timestamp call above.                     */
1372         assert(stream_index == 0);
1373
1374         if(avio_seek(s->pb, pos, SEEK_SET) < 0)
1375             return -1;
1376
1377         /* Feed the DV video stream version of the timestamp to the */
1378         /* DV demux so it can synthesize correct timestamps.        */
1379         dv_offset_reset(avi->dv_demux, timestamp);
1380
1381         avi->stream_index= -1;
1382         return 0;
1383     }
1384
1385     pos_min= pos;
1386     for(i = 0; i < s->nb_streams; i++) {
1387         AVStream *st2 = s->streams[i];
1388         AVIStream *ast2 = st2->priv_data;
1389
1390         ast2->packet_size=
1391         ast2->remaining= 0;
1392
1393         if (ast2->sub_ctx) {
1394             seek_subtitle(st, st2, timestamp);
1395             continue;
1396         }
1397
1398         if (st2->nb_index_entries <= 0)
1399             continue;
1400
1401 //        assert(st2->codec->block_align);
1402         assert((int64_t)st2->time_base.num*ast2->rate == (int64_t)st2->time_base.den*ast2->scale);
1403         index = av_index_search_timestamp(
1404                 st2,
1405                 av_rescale_q(timestamp, st->time_base, st2->time_base) * FFMAX(ast2->sample_size, 1),
1406                 flags | AVSEEK_FLAG_BACKWARD | (st2->codec->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1407         if(index<0)
1408             index=0;
1409         ast2->seek_pos= st2->index_entries[index].pos;
1410         pos_min= FFMIN(pos_min,ast2->seek_pos);
1411     }
1412     for(i = 0; i < s->nb_streams; i++) {
1413         AVStream *st2 = s->streams[i];
1414         AVIStream *ast2 = st2->priv_data;
1415
1416         if (ast2->sub_ctx || st2->nb_index_entries <= 0)
1417             continue;
1418
1419         index = av_index_search_timestamp(
1420                 st2,
1421                 av_rescale_q(timestamp, st->time_base, st2->time_base) * FFMAX(ast2->sample_size, 1),
1422                 flags | AVSEEK_FLAG_BACKWARD | (st2->codec->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1423         if(index<0)
1424             index=0;
1425         while(!avi->non_interleaved && index>0 && st2->index_entries[index-1].pos >= pos_min)
1426             index--;
1427         ast2->frame_offset = st2->index_entries[index].timestamp;
1428     }
1429
1430     /* do the seek */
1431     if (avio_seek(s->pb, pos_min, SEEK_SET) < 0)
1432         return -1;
1433     avi->stream_index= -1;
1434     avi->dts_max= INT_MIN;
1435     return 0;
1436 }
1437
1438 static int avi_read_close(AVFormatContext *s)
1439 {
1440     int i;
1441     AVIContext *avi = s->priv_data;
1442
1443     for(i=0;i<s->nb_streams;i++) {
1444         AVStream *st = s->streams[i];
1445         AVIStream *ast = st->priv_data;
1446         if (ast) {
1447             if (ast->sub_ctx) {
1448                 av_freep(&ast->sub_ctx->pb);
1449                 av_close_input_file(ast->sub_ctx);
1450             }
1451             av_free(ast->sub_buffer);
1452             av_free_packet(&ast->sub_pkt);
1453         }
1454     }
1455
1456     av_free(avi->dv_demux);
1457
1458     return 0;
1459 }
1460
1461 static int avi_probe(AVProbeData *p)
1462 {
1463     int i;
1464
1465     /* check file header */
1466     for(i=0; avi_headers[i][0]; i++)
1467         if(!memcmp(p->buf  , avi_headers[i]  , 4) &&
1468            !memcmp(p->buf+8, avi_headers[i]+4, 4))
1469             return AVPROBE_SCORE_MAX;
1470
1471     return 0;
1472 }
1473
1474 AVInputFormat ff_avi_demuxer = {
1475     .name           = "avi",
1476     .long_name      = NULL_IF_CONFIG_SMALL("AVI format"),
1477     .priv_data_size = sizeof(AVIContext),
1478     .read_probe     = avi_probe,
1479     .read_header    = avi_read_header,
1480     .read_packet    = avi_read_packet,
1481     .read_close     = avi_read_close,
1482     .read_seek      = avi_read_seek,
1483     .priv_class = &demuxer_class,
1484 };