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