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