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