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