FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
avidec.c
Go to the documentation of this file.
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 <inttypes.h>
23 
24 #include "libavutil/avassert.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/bswap.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/mathematics.h"
32 #include "avformat.h"
33 #include "avi.h"
34 #include "dv.h"
35 #include "internal.h"
36 #include "isom.h"
37 #include "riff.h"
38 #include "libavcodec/bytestream.h"
39 #include "libavcodec/exif.h"
40 #include "libavcodec/internal.h"
41 
42 typedef struct AVIStream {
43  int64_t frame_offset; /* current frame (video) or byte (audio) counter
44  * (used to compute the pts) */
45  int remaining;
47 
48  uint32_t handler;
49  uint32_t scale;
50  uint32_t rate;
51  int sample_size; /* size of one sample (or packet)
52  * (in the rate/scale sense) in bytes */
53 
54  int64_t cum_len; /* temporary storage (used during seek) */
55  int prefix; /* normally 'd'<<8 + 'c' or 'w'<<8 + 'b' */
57  uint32_t pal[256];
58  int has_pal;
59  int dshow_block_align; /* block align variable used to emulate bugs in
60  * the MS dshow demuxer */
61 
65 
66  int64_t seek_pos;
67 } AVIStream;
68 
69 typedef struct AVIContext {
70  const AVClass *class;
71  int64_t riff_end;
72  int64_t movi_end;
73  int64_t fsize;
74  int64_t io_fsize;
75  int64_t movi_list;
76  int64_t last_pkt_pos;
78  int is_odml;
83  int use_odml;
84 #define MAX_ODML_DEPTH 1000
85  int64_t dts_max;
86 } AVIContext;
87 
88 
89 static const AVOption options[] = {
90  { "use_odml", "use odml index", offsetof(AVIContext, use_odml), AV_OPT_TYPE_BOOL, {.i64 = 1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM},
91  { NULL },
92 };
93 
94 static const AVClass demuxer_class = {
95  .class_name = "avi",
96  .item_name = av_default_item_name,
97  .option = options,
98  .version = LIBAVUTIL_VERSION_INT,
99  .category = AV_CLASS_CATEGORY_DEMUXER,
100 };
101 
102 
103 static const char avi_headers[][8] = {
104  { 'R', 'I', 'F', 'F', 'A', 'V', 'I', ' ' },
105  { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 'X' },
106  { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 0x19 },
107  { 'O', 'N', '2', ' ', 'O', 'N', '2', 'f' },
108  { 'R', 'I', 'F', 'F', 'A', 'M', 'V', ' ' },
109  { 0 }
110 };
111 
113  { "strn", "title" },
114  { 0 },
115 };
116 
117 static int avi_load_index(AVFormatContext *s);
118 static int guess_ni_flag(AVFormatContext *s);
119 
120 #define print_tag(str, tag, size) \
121  av_log(NULL, AV_LOG_TRACE, "pos:%"PRIX64" %s: tag=%c%c%c%c size=0x%x\n", \
122  avio_tell(pb), str, tag & 0xff, \
123  (tag >> 8) & 0xff, \
124  (tag >> 16) & 0xff, \
125  (tag >> 24) & 0xff, \
126  size)
127 
128 static inline int get_duration(AVIStream *ast, int len)
129 {
130  if (ast->sample_size)
131  return len;
132  else if (ast->dshow_block_align)
133  return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
134  else
135  return 1;
136 }
137 
139 {
140  AVIContext *avi = s->priv_data;
141  char header[8] = {0};
142  int i;
143 
144  /* check RIFF header */
145  avio_read(pb, header, 4);
146  avi->riff_end = avio_rl32(pb); /* RIFF chunk size */
147  avi->riff_end += avio_tell(pb); /* RIFF chunk end */
148  avio_read(pb, header + 4, 4);
149 
150  for (i = 0; avi_headers[i][0]; i++)
151  if (!memcmp(header, avi_headers[i], 8))
152  break;
153  if (!avi_headers[i][0])
154  return AVERROR_INVALIDDATA;
155 
156  if (header[7] == 0x19)
157  av_log(s, AV_LOG_INFO,
158  "This file has been generated by a totally broken muxer.\n");
159 
160  return 0;
161 }
162 
163 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num)
164 {
165  AVIContext *avi = s->priv_data;
166  AVIOContext *pb = s->pb;
167  int longs_pre_entry = avio_rl16(pb);
168  int index_sub_type = avio_r8(pb);
169  int index_type = avio_r8(pb);
170  int entries_in_use = avio_rl32(pb);
171  int chunk_id = avio_rl32(pb);
172  int64_t base = avio_rl64(pb);
173  int stream_id = ((chunk_id & 0xFF) - '0') * 10 +
174  ((chunk_id >> 8 & 0xFF) - '0');
175  AVStream *st;
176  AVIStream *ast;
177  int i;
178  int64_t last_pos = -1;
179  int64_t filesize = avi->fsize;
180 
181  av_log(s, AV_LOG_TRACE,
182  "longs_pre_entry:%d index_type:%d entries_in_use:%d "
183  "chunk_id:%X base:%16"PRIX64" frame_num:%d\n",
184  longs_pre_entry,
185  index_type,
186  entries_in_use,
187  chunk_id,
188  base,
189  frame_num);
190 
191  if (stream_id >= s->nb_streams || stream_id < 0)
192  return AVERROR_INVALIDDATA;
193  st = s->streams[stream_id];
194  ast = st->priv_data;
195 
196  if (index_sub_type)
197  return AVERROR_INVALIDDATA;
198 
199  avio_rl32(pb);
200 
201  if (index_type && longs_pre_entry != 2)
202  return AVERROR_INVALIDDATA;
203  if (index_type > 1)
204  return AVERROR_INVALIDDATA;
205 
206  if (filesize > 0 && base >= filesize) {
207  av_log(s, AV_LOG_ERROR, "ODML index invalid\n");
208  if (base >> 32 == (base & 0xFFFFFFFF) &&
209  (base & 0xFFFFFFFF) < filesize &&
210  filesize <= 0xFFFFFFFF)
211  base &= 0xFFFFFFFF;
212  else
213  return AVERROR_INVALIDDATA;
214  }
215 
216  for (i = 0; i < entries_in_use; i++) {
217  if (index_type) {
218  int64_t pos = avio_rl32(pb) + base - 8;
219  int len = avio_rl32(pb);
220  int key = len >= 0;
221  len &= 0x7FFFFFFF;
222 
223  av_log(s, AV_LOG_TRACE, "pos:%"PRId64", len:%X\n", pos, len);
224 
225  if (avio_feof(pb))
226  return AVERROR_INVALIDDATA;
227 
228  if (last_pos == pos || pos == base - 8)
229  avi->non_interleaved = 1;
230  if (last_pos != pos && len)
231  av_add_index_entry(st, pos, ast->cum_len, len, 0,
232  key ? AVINDEX_KEYFRAME : 0);
233 
234  ast->cum_len += get_duration(ast, len);
235  last_pos = pos;
236  } else {
237  int64_t offset, pos;
238  int duration;
239  offset = avio_rl64(pb);
240  avio_rl32(pb); /* size */
241  duration = avio_rl32(pb);
242 
243  if (avio_feof(pb))
244  return AVERROR_INVALIDDATA;
245 
246  pos = avio_tell(pb);
247 
248  if (avi->odml_depth > MAX_ODML_DEPTH) {
249  av_log(s, AV_LOG_ERROR, "Too deeply nested ODML indexes\n");
250  return AVERROR_INVALIDDATA;
251  }
252 
253  if (avio_seek(pb, offset + 8, SEEK_SET) < 0)
254  return -1;
255  avi->odml_depth++;
256  read_braindead_odml_indx(s, frame_num);
257  avi->odml_depth--;
258  frame_num += duration;
259 
260  if (avio_seek(pb, pos, SEEK_SET) < 0) {
261  av_log(s, AV_LOG_ERROR, "Failed to restore position after reading index\n");
262  return -1;
263  }
264 
265  }
266  }
267  avi->index_loaded = 2;
268  return 0;
269 }
270 
272 {
273  int i;
274  int64_t j;
275 
276  for (i = 0; i < s->nb_streams; i++) {
277  AVStream *st = s->streams[i];
278  AVIStream *ast = st->priv_data;
279  int n = st->nb_index_entries;
280  int max = ast->sample_size;
281  int64_t pos, size, ts;
282 
283  if (n != 1 || ast->sample_size == 0)
284  continue;
285 
286  while (max < 1024)
287  max += max;
288 
289  pos = st->index_entries[0].pos;
290  size = st->index_entries[0].size;
291  ts = st->index_entries[0].timestamp;
292 
293  for (j = 0; j < size; j += max)
294  av_add_index_entry(st, pos + j, ts + j, FFMIN(max, size - j), 0,
296  }
297 }
298 
299 static int avi_read_tag(AVFormatContext *s, AVStream *st, uint32_t tag,
300  uint32_t size)
301 {
302  AVIOContext *pb = s->pb;
303  char key[5] = { 0 };
304  char *value;
305 
306  size += (size & 1);
307 
308  if (size == UINT_MAX)
309  return AVERROR(EINVAL);
310  value = av_malloc(size + 1);
311  if (!value)
312  return AVERROR(ENOMEM);
313  if (avio_read(pb, value, size) != size)
314  return AVERROR_INVALIDDATA;
315  value[size] = 0;
316 
317  AV_WL32(key, tag);
318 
319  return av_dict_set(st ? &st->metadata : &s->metadata, key, value,
321 }
322 
323 static const char months[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
324  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
325 
326 static void avi_metadata_creation_time(AVDictionary **metadata, char *date)
327 {
328  char month[4], time[9], buffer[64];
329  int i, day, year;
330  /* parse standard AVI date format (ie. "Mon Mar 10 15:04:43 2003") */
331  if (sscanf(date, "%*3s%*[ ]%3s%*[ ]%2d%*[ ]%8s%*[ ]%4d",
332  month, &day, time, &year) == 4) {
333  for (i = 0; i < 12; i++)
334  if (!av_strcasecmp(month, months[i])) {
335  snprintf(buffer, sizeof(buffer), "%.4d-%.2d-%.2d %s",
336  year, i + 1, day, time);
337  av_dict_set(metadata, "creation_time", buffer, 0);
338  }
339  } else if (date[4] == '/' && date[7] == '/') {
340  date[4] = date[7] = '-';
341  av_dict_set(metadata, "creation_time", date, 0);
342  }
343 }
344 
345 static void avi_read_nikon(AVFormatContext *s, uint64_t end)
346 {
347  while (avio_tell(s->pb) < end && !avio_feof(s->pb)) {
348  uint32_t tag = avio_rl32(s->pb);
349  uint32_t size = avio_rl32(s->pb);
350  switch (tag) {
351  case MKTAG('n', 'c', 't', 'g'): /* Nikon Tags */
352  {
353  uint64_t tag_end = avio_tell(s->pb) + size;
354  while (avio_tell(s->pb) < tag_end && !avio_feof(s->pb)) {
355  uint16_t tag = avio_rl16(s->pb);
356  uint16_t size = avio_rl16(s->pb);
357  const char *name = NULL;
358  char buffer[64] = { 0 };
359  size = FFMIN(size, tag_end - avio_tell(s->pb));
360  size -= avio_read(s->pb, buffer,
361  FFMIN(size, sizeof(buffer) - 1));
362  switch (tag) {
363  case 0x03:
364  name = "maker";
365  break;
366  case 0x04:
367  name = "model";
368  break;
369  case 0x13:
370  name = "creation_time";
371  if (buffer[4] == ':' && buffer[7] == ':')
372  buffer[4] = buffer[7] = '-';
373  break;
374  }
375  if (name)
376  av_dict_set(&s->metadata, name, buffer, 0);
377  avio_skip(s->pb, size);
378  }
379  break;
380  }
381  default:
382  avio_skip(s->pb, size);
383  break;
384  }
385  }
386 }
387 
389 {
390  GetByteContext gb;
391  uint8_t *data = st->codecpar->extradata;
392  int data_size = st->codecpar->extradata_size;
393  int tag, offset;
394 
395  if (!data || data_size < 8) {
396  return AVERROR_INVALIDDATA;
397  }
398 
399  bytestream2_init(&gb, data, data_size);
400 
401  tag = bytestream2_get_le32(&gb);
402 
403  switch (tag) {
404  case MKTAG('A', 'V', 'I', 'F'):
405  // skip 4 byte padding
406  bytestream2_skip(&gb, 4);
407  offset = bytestream2_tell(&gb);
408  bytestream2_init(&gb, data + offset, data_size - offset);
409 
410  // decode EXIF tags from IFD, AVI is always little-endian
411  return avpriv_exif_decode_ifd(s, &gb, 1, 0, &st->metadata);
412  break;
413  case MKTAG('C', 'A', 'S', 'I'):
414  avpriv_request_sample(s, "RIFF stream data tag type CASI (%u)", tag);
415  break;
416  case MKTAG('Z', 'o', 'r', 'a'):
417  avpriv_request_sample(s, "RIFF stream data tag type Zora (%u)", tag);
418  break;
419  default:
420  break;
421  }
422 
423  return 0;
424 }
425 
427 {
428  AVIContext *avi = s->priv_data;
429  int i, j;
430  int64_t lensum = 0;
431  int64_t maxpos = 0;
432 
433  for (i = 0; i<s->nb_streams; i++) {
434  int64_t len = 0;
435  AVStream *st = s->streams[i];
436 
437  if (!st->nb_index_entries)
438  continue;
439 
440  for (j = 0; j < st->nb_index_entries; j++)
441  len += st->index_entries[j].size;
442  maxpos = FFMAX(maxpos, st->index_entries[j-1].pos);
443  lensum += len;
444  }
445  if (maxpos < avi->io_fsize*9/10) // index does not cover the whole file
446  return 0;
447  if (lensum*9/10 > maxpos || lensum < maxpos*9/10) // frame sum and filesize mismatch
448  return 0;
449 
450  for (i = 0; i<s->nb_streams; i++) {
451  int64_t len = 0;
452  AVStream *st = s->streams[i];
453  int64_t duration;
454  int64_t bitrate;
455 
456  for (j = 0; j < st->nb_index_entries; j++)
457  len += st->index_entries[j].size;
458 
459  if (st->nb_index_entries < 2 || st->codecpar->bit_rate > 0)
460  continue;
461  duration = st->index_entries[j-1].timestamp - st->index_entries[0].timestamp;
462  bitrate = av_rescale(8*len, st->time_base.den, duration * st->time_base.num);
463  if (bitrate <= INT_MAX && bitrate > 0) {
464  st->codecpar->bit_rate = bitrate;
465  }
466  }
467  return 1;
468 }
469 
471 {
472  AVIContext *avi = s->priv_data;
473  AVIOContext *pb = s->pb;
474  unsigned int tag, tag1, handler;
475  int codec_type, stream_index, frame_period;
476  unsigned int size;
477  int i;
478  AVStream *st;
479  AVIStream *ast = NULL;
480  int avih_width = 0, avih_height = 0;
481  int amv_file_format = 0;
482  uint64_t list_end = 0;
483  int64_t pos;
484  int ret;
485  AVDictionaryEntry *dict_entry;
486 
487  avi->stream_index = -1;
488 
489  ret = get_riff(s, pb);
490  if (ret < 0)
491  return ret;
492 
493  av_log(avi, AV_LOG_DEBUG, "use odml:%d\n", avi->use_odml);
494 
495  avi->io_fsize = avi->fsize = avio_size(pb);
496  if (avi->fsize <= 0 || avi->fsize < avi->riff_end)
497  avi->fsize = avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
498 
499  /* first list tag */
500  stream_index = -1;
501  codec_type = -1;
502  frame_period = 0;
503  for (;;) {
504  if (avio_feof(pb))
505  goto fail;
506  tag = avio_rl32(pb);
507  size = avio_rl32(pb);
508 
509  print_tag("tag", tag, size);
510 
511  switch (tag) {
512  case MKTAG('L', 'I', 'S', 'T'):
513  list_end = avio_tell(pb) + size;
514  /* Ignored, except at start of video packets. */
515  tag1 = avio_rl32(pb);
516 
517  print_tag("list", tag1, 0);
518 
519  if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
520  avi->movi_list = avio_tell(pb) - 4;
521  if (size)
522  avi->movi_end = avi->movi_list + size + (size & 1);
523  else
524  avi->movi_end = avi->fsize;
525  av_log(NULL, AV_LOG_TRACE, "movi end=%"PRIx64"\n", avi->movi_end);
526  goto end_of_header;
527  } else if (tag1 == MKTAG('I', 'N', 'F', 'O'))
528  ff_read_riff_info(s, size - 4);
529  else if (tag1 == MKTAG('n', 'c', 'd', 't'))
530  avi_read_nikon(s, list_end);
531 
532  break;
533  case MKTAG('I', 'D', 'I', 'T'):
534  {
535  unsigned char date[64] = { 0 };
536  size += (size & 1);
537  size -= avio_read(pb, date, FFMIN(size, sizeof(date) - 1));
538  avio_skip(pb, size);
540  break;
541  }
542  case MKTAG('d', 'm', 'l', 'h'):
543  avi->is_odml = 1;
544  avio_skip(pb, size + (size & 1));
545  break;
546  case MKTAG('a', 'm', 'v', 'h'):
547  amv_file_format = 1;
548  case MKTAG('a', 'v', 'i', 'h'):
549  /* AVI header */
550  /* using frame_period is bad idea */
551  frame_period = avio_rl32(pb);
552  avio_rl32(pb); /* max. bytes per second */
553  avio_rl32(pb);
555 
556  avio_skip(pb, 2 * 4);
557  avio_rl32(pb);
558  avio_rl32(pb);
559  avih_width = avio_rl32(pb);
560  avih_height = avio_rl32(pb);
561 
562  avio_skip(pb, size - 10 * 4);
563  break;
564  case MKTAG('s', 't', 'r', 'h'):
565  /* stream header */
566 
567  tag1 = avio_rl32(pb);
568  handler = avio_rl32(pb); /* codec tag */
569 
570  if (tag1 == MKTAG('p', 'a', 'd', 's')) {
571  avio_skip(pb, size - 8);
572  break;
573  } else {
574  stream_index++;
575  st = avformat_new_stream(s, NULL);
576  if (!st)
577  goto fail;
578 
579  st->id = stream_index;
580  ast = av_mallocz(sizeof(AVIStream));
581  if (!ast)
582  goto fail;
583  st->priv_data = ast;
584  }
585  if (amv_file_format)
586  tag1 = stream_index ? MKTAG('a', 'u', 'd', 's')
587  : MKTAG('v', 'i', 'd', 's');
588 
589  print_tag("strh", tag1, -1);
590 
591  if (tag1 == MKTAG('i', 'a', 'v', 's') ||
592  tag1 == MKTAG('i', 'v', 'a', 's')) {
593  int64_t dv_dur;
594 
595  /* After some consideration -- I don't think we
596  * have to support anything but DV in type1 AVIs. */
597  if (s->nb_streams != 1)
598  goto fail;
599 
600  if (handler != MKTAG('d', 'v', 's', 'd') &&
601  handler != MKTAG('d', 'v', 'h', 'd') &&
602  handler != MKTAG('d', 'v', 's', 'l'))
603  goto fail;
604 
605  ast = s->streams[0]->priv_data;
607  av_freep(&s->streams[0]->codecpar);
608 #if FF_API_LAVF_AVCTX
610  av_freep(&s->streams[0]->codec);
612 #endif
613  if (s->streams[0]->info)
615  av_freep(&s->streams[0]->info);
616  if (s->streams[0]->internal)
617  av_freep(&s->streams[0]->internal->avctx);
618  av_freep(&s->streams[0]->internal);
619  av_freep(&s->streams[0]);
620  s->nb_streams = 0;
621  if (CONFIG_DV_DEMUXER) {
622  avi->dv_demux = avpriv_dv_init_demux(s);
623  if (!avi->dv_demux)
624  goto fail;
625  } else
626  goto fail;
627  s->streams[0]->priv_data = ast;
628  avio_skip(pb, 3 * 4);
629  ast->scale = avio_rl32(pb);
630  ast->rate = avio_rl32(pb);
631  avio_skip(pb, 4); /* start time */
632 
633  dv_dur = avio_rl32(pb);
634  if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
635  dv_dur *= AV_TIME_BASE;
636  s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
637  }
638  /* else, leave duration alone; timing estimation in utils.c
639  * will make a guess based on bitrate. */
640 
641  stream_index = s->nb_streams - 1;
642  avio_skip(pb, size - 9 * 4);
643  break;
644  }
645 
646  av_assert0(stream_index < s->nb_streams);
647  ast->handler = handler;
648 
649  avio_rl32(pb); /* flags */
650  avio_rl16(pb); /* priority */
651  avio_rl16(pb); /* language */
652  avio_rl32(pb); /* initial frame */
653  ast->scale = avio_rl32(pb);
654  ast->rate = avio_rl32(pb);
655  if (!(ast->scale && ast->rate)) {
657  "scale/rate is %"PRIu32"/%"PRIu32" which is invalid. "
658  "(This file has been generated by broken software.)\n",
659  ast->scale,
660  ast->rate);
661  if (frame_period) {
662  ast->rate = 1000000;
663  ast->scale = frame_period;
664  } else {
665  ast->rate = 25;
666  ast->scale = 1;
667  }
668  }
669  avpriv_set_pts_info(st, 64, ast->scale, ast->rate);
670 
671  ast->cum_len = avio_rl32(pb); /* start */
672  st->nb_frames = avio_rl32(pb);
673 
674  st->start_time = 0;
675  avio_rl32(pb); /* buffer size */
676  avio_rl32(pb); /* quality */
677  if (ast->cum_len*ast->scale/ast->rate > 3600) {
678  av_log(s, AV_LOG_ERROR, "crazy start time, iam scared, giving up\n");
679  ast->cum_len = 0;
680  }
681  ast->sample_size = avio_rl32(pb);
682  ast->cum_len *= FFMAX(1, ast->sample_size);
683  av_log(s, AV_LOG_TRACE, "%"PRIu32" %"PRIu32" %d\n",
684  ast->rate, ast->scale, ast->sample_size);
685 
686  switch (tag1) {
687  case MKTAG('v', 'i', 'd', 's'):
688  codec_type = AVMEDIA_TYPE_VIDEO;
689 
690  ast->sample_size = 0;
691  st->avg_frame_rate = av_inv_q(st->time_base);
692  break;
693  case MKTAG('a', 'u', 'd', 's'):
694  codec_type = AVMEDIA_TYPE_AUDIO;
695  break;
696  case MKTAG('t', 'x', 't', 's'):
697  codec_type = AVMEDIA_TYPE_SUBTITLE;
698  break;
699  case MKTAG('d', 'a', 't', 's'):
700  codec_type = AVMEDIA_TYPE_DATA;
701  break;
702  default:
703  av_log(s, AV_LOG_INFO, "unknown stream type %X\n", tag1);
704  }
705 
706  if (ast->sample_size < 0) {
707  if (s->error_recognition & AV_EF_EXPLODE) {
708  av_log(s, AV_LOG_ERROR,
709  "Invalid sample_size %d at stream %d\n",
710  ast->sample_size,
711  stream_index);
712  goto fail;
713  }
715  "Invalid sample_size %d at stream %d "
716  "setting it to 0\n",
717  ast->sample_size,
718  stream_index);
719  ast->sample_size = 0;
720  }
721 
722  if (ast->sample_size == 0) {
723  st->duration = st->nb_frames;
724  if (st->duration > 0 && avi->io_fsize > 0 && avi->riff_end > avi->io_fsize) {
725  av_log(s, AV_LOG_DEBUG, "File is truncated adjusting duration\n");
726  st->duration = av_rescale(st->duration, avi->io_fsize, avi->riff_end);
727  }
728  }
729  ast->frame_offset = ast->cum_len;
730  avio_skip(pb, size - 12 * 4);
731  break;
732  case MKTAG('s', 't', 'r', 'f'):
733  /* stream header */
734  if (!size)
735  break;
736  if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
737  avio_skip(pb, size);
738  } else {
739  uint64_t cur_pos = avio_tell(pb);
740  unsigned esize;
741  if (cur_pos < list_end)
742  size = FFMIN(size, list_end - cur_pos);
743  st = s->streams[stream_index];
745  avio_skip(pb, size);
746  break;
747  }
748  switch (codec_type) {
749  case AVMEDIA_TYPE_VIDEO:
750  if (amv_file_format) {
751  st->codecpar->width = avih_width;
752  st->codecpar->height = avih_height;
755  avio_skip(pb, size);
756  break;
757  }
758  tag1 = ff_get_bmp_header(pb, st, &esize);
759 
760  if (tag1 == MKTAG('D', 'X', 'S', 'B') ||
761  tag1 == MKTAG('D', 'X', 'S', 'A')) {
763  st->codecpar->codec_tag = tag1;
765  break;
766  }
767 
768  if (size > 10 * 4 && size < (1 << 30) && size < avi->fsize) {
769  if (esize == size-1 && (esize&1)) {
770  st->codecpar->extradata_size = esize - 10 * 4;
771  } else
772  st->codecpar->extradata_size = size - 10 * 4;
773  if (ff_get_extradata(s, st->codecpar, pb, st->codecpar->extradata_size) < 0)
774  return AVERROR(ENOMEM);
775  }
776 
777  // FIXME: check if the encoder really did this correctly
778  if (st->codecpar->extradata_size & 1)
779  avio_r8(pb);
780 
781  /* Extract palette from extradata if bpp <= 8.
782  * This code assumes that extradata contains only palette.
783  * This is true for all paletted codecs implemented in
784  * FFmpeg. */
785  if (st->codecpar->extradata_size &&
786  (st->codecpar->bits_per_coded_sample <= 8)) {
787  int pal_size = (1 << st->codecpar->bits_per_coded_sample) << 2;
788  const uint8_t *pal_src;
789 
790  pal_size = FFMIN(pal_size, st->codecpar->extradata_size);
791  pal_src = st->codecpar->extradata +
792  st->codecpar->extradata_size - pal_size;
793  /* Exclude the "BottomUp" field from the palette */
794  if (pal_src - st->codecpar->extradata >= 9 &&
795  !memcmp(st->codecpar->extradata + st->codecpar->extradata_size - 9, "BottomUp", 9))
796  pal_src -= 9;
797  for (i = 0; i < pal_size / 4; i++)
798  ast->pal[i] = 0xFFU<<24 | AV_RL32(pal_src+4*i);
799  ast->has_pal = 1;
800  }
801 
802  print_tag("video", tag1, 0);
803 
805  st->codecpar->codec_tag = tag1;
807  tag1);
808  /* If codec is not found yet, try with the mov tags. */
809  if (!st->codecpar->codec_id) {
810  char tag_buf[32];
811  av_get_codec_tag_string(tag_buf, sizeof(tag_buf), tag1);
812  st->codecpar->codec_id =
814  if (st->codecpar->codec_id)
816  "mov tag found in avi (fourcc %s)\n",
817  tag_buf);
818  }
819  /* This is needed to get the pict type which is necessary
820  * for generating correct pts. */
822 
823  if (st->codecpar->codec_id == AV_CODEC_ID_MPEG4 &&
824  ast->handler == MKTAG('X', 'V', 'I', 'D'))
825  st->codecpar->codec_tag = MKTAG('X', 'V', 'I', 'D');
826 
827  if (st->codecpar->codec_tag == MKTAG('V', 'S', 'S', 'H'))
829  if (st->codecpar->codec_id == AV_CODEC_ID_RV40)
831 
832  if (st->codecpar->codec_tag == 0 && st->codecpar->height > 0 &&
833  st->codecpar->extradata_size < 1U << 30) {
834  st->codecpar->extradata_size += 9;
835  if ((ret = av_reallocp(&st->codecpar->extradata,
836  st->codecpar->extradata_size +
838  st->codecpar->extradata_size = 0;
839  return ret;
840  } else
841  memcpy(st->codecpar->extradata + st->codecpar->extradata_size - 9,
842  "BottomUp", 9);
843  }
844  st->codecpar->height = FFABS(st->codecpar->height);
845 
846 // avio_skip(pb, size - 5 * 4);
847  break;
848  case AVMEDIA_TYPE_AUDIO:
849  ret = ff_get_wav_header(s, pb, st->codecpar, size, 0);
850  if (ret < 0)
851  return ret;
853  if (ast->sample_size && st->codecpar->block_align &&
854  ast->sample_size != st->codecpar->block_align) {
855  av_log(s,
857  "sample size (%d) != block align (%d)\n",
858  ast->sample_size,
859  st->codecpar->block_align);
860  ast->sample_size = st->codecpar->block_align;
861  }
862  /* 2-aligned
863  * (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
864  if (size & 1)
865  avio_skip(pb, 1);
866  /* Force parsing as several audio frames can be in
867  * one packet and timestamps refer to packet start. */
869  /* ADTS header is in extradata, AAC without header must be
870  * stored as exact frames. Parser not needed and it will
871  * fail. */
872  if (st->codecpar->codec_id == AV_CODEC_ID_AAC &&
875  // The flac parser does not work with AVSTREAM_PARSE_TIMESTAMPS
876  if (st->codecpar->codec_id == AV_CODEC_ID_FLAC)
878  /* AVI files with Xan DPCM audio (wrongly) declare PCM
879  * audio in the header but have Axan as stream_code_tag. */
880  if (ast->handler == AV_RL32("Axan")) {
882  st->codecpar->codec_tag = 0;
883  ast->dshow_block_align = 0;
884  }
885  if (amv_file_format) {
887  ast->dshow_block_align = 0;
888  }
889  if ((st->codecpar->codec_id == AV_CODEC_ID_AAC ||
891  st->codecpar->codec_id == AV_CODEC_ID_MP2 ) && ast->dshow_block_align <= 4 && ast->dshow_block_align) {
892  av_log(s, AV_LOG_DEBUG, "overriding invalid dshow_block_align of %d\n", ast->dshow_block_align);
893  ast->dshow_block_align = 0;
894  }
895  if (st->codecpar->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 1024 && ast->sample_size == 1024 ||
896  st->codecpar->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 4096 && ast->sample_size == 4096 ||
897  st->codecpar->codec_id == AV_CODEC_ID_MP3 && ast->dshow_block_align == 1152 && ast->sample_size == 1152) {
898  av_log(s, AV_LOG_DEBUG, "overriding sample_size\n");
899  ast->sample_size = 0;
900  }
901  break;
904  st->request_probe= 1;
905  avio_skip(pb, size);
906  break;
907  default:
910  st->codecpar->codec_tag = 0;
911  avio_skip(pb, size);
912  break;
913  }
914  }
915  break;
916  case MKTAG('s', 't', 'r', 'd'):
917  if (stream_index >= (unsigned)s->nb_streams
918  || s->streams[stream_index]->codecpar->extradata_size
919  || s->streams[stream_index]->codecpar->codec_tag == MKTAG('H','2','6','4')) {
920  avio_skip(pb, size);
921  } else {
922  uint64_t cur_pos = avio_tell(pb);
923  if (cur_pos < list_end)
924  size = FFMIN(size, list_end - cur_pos);
925  st = s->streams[stream_index];
926 
927  if (size<(1<<30)) {
928  if (ff_get_extradata(s, st->codecpar, pb, size) < 0)
929  return AVERROR(ENOMEM);
930  }
931 
932  if (st->codecpar->extradata_size & 1) //FIXME check if the encoder really did this correctly
933  avio_r8(pb);
934 
935  ret = avi_extract_stream_metadata(s, st);
936  if (ret < 0) {
937  av_log(s, AV_LOG_WARNING, "could not decoding EXIF data in stream header.\n");
938  }
939  }
940  break;
941  case MKTAG('i', 'n', 'd', 'x'):
942  pos = avio_tell(pb);
943  if (pb->seekable && !(s->flags & AVFMT_FLAG_IGNIDX) &&
944  avi->use_odml &&
945  read_braindead_odml_indx(s, 0) < 0 &&
947  goto fail;
948  avio_seek(pb, pos + size, SEEK_SET);
949  break;
950  case MKTAG('v', 'p', 'r', 'p'):
951  if (stream_index < (unsigned)s->nb_streams && size > 9 * 4) {
952  AVRational active, active_aspect;
953 
954  st = s->streams[stream_index];
955  avio_rl32(pb);
956  avio_rl32(pb);
957  avio_rl32(pb);
958  avio_rl32(pb);
959  avio_rl32(pb);
960 
961  active_aspect.den = avio_rl16(pb);
962  active_aspect.num = avio_rl16(pb);
963  active.num = avio_rl32(pb);
964  active.den = avio_rl32(pb);
965  avio_rl32(pb); // nbFieldsPerFrame
966 
967  if (active_aspect.num && active_aspect.den &&
968  active.num && active.den) {
969  st->sample_aspect_ratio = av_div_q(active_aspect, active);
970  av_log(s, AV_LOG_TRACE, "vprp %d/%d %d/%d\n",
971  active_aspect.num, active_aspect.den,
972  active.num, active.den);
973  }
974  size -= 9 * 4;
975  }
976  avio_skip(pb, size);
977  break;
978  case MKTAG('s', 't', 'r', 'n'):
979  if (s->nb_streams) {
980  ret = avi_read_tag(s, s->streams[s->nb_streams - 1], tag, size);
981  if (ret < 0)
982  return ret;
983  break;
984  }
985  default:
986  if (size > 1000000) {
987  char tag_buf[32];
988  av_get_codec_tag_string(tag_buf, sizeof(tag_buf), tag);
989  av_log(s, AV_LOG_ERROR,
990  "Something went wrong during header parsing, "
991  "tag %s has size %u, "
992  "I will ignore it and try to continue anyway.\n",
993  tag_buf, size);
995  goto fail;
996  avi->movi_list = avio_tell(pb) - 4;
997  avi->movi_end = avi->fsize;
998  goto end_of_header;
999  }
1000  /* Do not fail for very large idx1 tags */
1001  case MKTAG('i', 'd', 'x', '1'):
1002  /* skip tag */
1003  size += (size & 1);
1004  avio_skip(pb, size);
1005  break;
1006  }
1007  }
1008 
1009 end_of_header:
1010  /* check stream number */
1011  if (stream_index != s->nb_streams - 1) {
1012 
1013 fail:
1014  return AVERROR_INVALIDDATA;
1015  }
1016 
1017  if (!avi->index_loaded && pb->seekable)
1018  avi_load_index(s);
1019  calculate_bitrate(s);
1020  avi->index_loaded |= 1;
1021 
1022  if ((ret = guess_ni_flag(s)) < 0)
1023  return ret;
1024 
1025  avi->non_interleaved |= ret | (s->flags & AVFMT_FLAG_SORT_DTS);
1026 
1027  dict_entry = av_dict_get(s->metadata, "ISFT", NULL, 0);
1028  if (dict_entry && !strcmp(dict_entry->value, "PotEncoder"))
1029  for (i = 0; i < s->nb_streams; i++) {
1030  AVStream *st = s->streams[i];
1034  }
1035 
1036  for (i = 0; i < s->nb_streams; i++) {
1037  AVStream *st = s->streams[i];
1038  if (st->nb_index_entries)
1039  break;
1040  }
1041  // DV-in-AVI cannot be non-interleaved, if set this must be
1042  // a mis-detection.
1043  if (avi->dv_demux)
1044  avi->non_interleaved = 0;
1045  if (i == s->nb_streams && avi->non_interleaved) {
1047  "Non-interleaved AVI without index, switching to interleaved\n");
1048  avi->non_interleaved = 0;
1049  }
1050 
1051  if (avi->non_interleaved) {
1052  av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
1053  clean_index(s);
1054  }
1055 
1056  ff_metadata_conv_ctx(s, NULL, avi_metadata_conv);
1058 
1059  return 0;
1060 }
1061 
1063 {
1064  if (pkt->size >= 7 &&
1065  pkt->size < INT_MAX - AVPROBE_PADDING_SIZE &&
1066  !strcmp(pkt->data, "GAB2") && AV_RL16(pkt->data + 5) == 2) {
1067  uint8_t desc[256];
1068  int score = AVPROBE_SCORE_EXTENSION, ret;
1069  AVIStream *ast = st->priv_data;
1070  AVInputFormat *sub_demuxer;
1071  AVRational time_base;
1072  int size;
1073  AVIOContext *pb = avio_alloc_context(pkt->data + 7,
1074  pkt->size - 7,
1075  0, NULL, NULL, NULL, NULL);
1076  AVProbeData pd;
1077  unsigned int desc_len = avio_rl32(pb);
1078 
1079  if (desc_len > pb->buf_end - pb->buf_ptr)
1080  goto error;
1081 
1082  ret = avio_get_str16le(pb, desc_len, desc, sizeof(desc));
1083  avio_skip(pb, desc_len - ret);
1084  if (*desc)
1085  av_dict_set(&st->metadata, "title", desc, 0);
1086 
1087  avio_rl16(pb); /* flags? */
1088  avio_rl32(pb); /* data size */
1089 
1090  size = pb->buf_end - pb->buf_ptr;
1091  pd = (AVProbeData) { .buf = av_mallocz(size + AVPROBE_PADDING_SIZE),
1092  .buf_size = size };
1093  if (!pd.buf)
1094  goto error;
1095  memcpy(pd.buf, pb->buf_ptr, size);
1096  sub_demuxer = av_probe_input_format2(&pd, 1, &score);
1097  av_freep(&pd.buf);
1098  if (!sub_demuxer)
1099  goto error;
1100 
1101  if (!(ast->sub_ctx = avformat_alloc_context()))
1102  goto error;
1103 
1104  ast->sub_ctx->pb = pb;
1105 
1106  if (ff_copy_whiteblacklists(ast->sub_ctx, s) < 0)
1107  goto error;
1108 
1109  if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
1110  if (ast->sub_ctx->nb_streams != 1)
1111  goto error;
1112  ff_read_packet(ast->sub_ctx, &ast->sub_pkt);
1114  time_base = ast->sub_ctx->streams[0]->time_base;
1115  avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
1116  }
1117  ast->sub_buffer = pkt->data;
1118  memset(pkt, 0, sizeof(*pkt));
1119  return 1;
1120 
1121 error:
1122  av_freep(&ast->sub_ctx);
1123  av_freep(&pb);
1124  }
1125  return 0;
1126 }
1127 
1129  AVPacket *pkt)
1130 {
1131  AVIStream *ast, *next_ast = next_st->priv_data;
1132  int64_t ts, next_ts, ts_min = INT64_MAX;
1133  AVStream *st, *sub_st = NULL;
1134  int i;
1135 
1136  next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
1137  AV_TIME_BASE_Q);
1138 
1139  for (i = 0; i < s->nb_streams; i++) {
1140  st = s->streams[i];
1141  ast = st->priv_data;
1142  if (st->discard < AVDISCARD_ALL && ast && ast->sub_pkt.data) {
1143  ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
1144  if (ts <= next_ts && ts < ts_min) {
1145  ts_min = ts;
1146  sub_st = st;
1147  }
1148  }
1149  }
1150 
1151  if (sub_st) {
1152  ast = sub_st->priv_data;
1153  *pkt = ast->sub_pkt;
1154  pkt->stream_index = sub_st->index;
1155 
1156  if (ff_read_packet(ast->sub_ctx, &ast->sub_pkt) < 0)
1157  ast->sub_pkt.data = NULL;
1158  }
1159  return sub_st;
1160 }
1161 
1162 static int get_stream_idx(const unsigned *d)
1163 {
1164  if (d[0] >= '0' && d[0] <= '9' &&
1165  d[1] >= '0' && d[1] <= '9') {
1166  return (d[0] - '0') * 10 + (d[1] - '0');
1167  } else {
1168  return 100; // invalid stream ID
1169  }
1170 }
1171 
1172 /**
1173  *
1174  * @param exit_early set to 1 to just gather packet position without making the changes needed to actually read & return the packet
1175  */
1176 static int avi_sync(AVFormatContext *s, int exit_early)
1177 {
1178  AVIContext *avi = s->priv_data;
1179  AVIOContext *pb = s->pb;
1180  int n;
1181  unsigned int d[8];
1182  unsigned int size;
1183  int64_t i, sync;
1184 
1185 start_sync:
1186  memset(d, -1, sizeof(d));
1187  for (i = sync = avio_tell(pb); !avio_feof(pb); i++) {
1188  int j;
1189 
1190  for (j = 0; j < 7; j++)
1191  d[j] = d[j + 1];
1192  d[7] = avio_r8(pb);
1193 
1194  size = d[4] + (d[5] << 8) + (d[6] << 16) + (d[7] << 24);
1195 
1196  n = get_stream_idx(d + 2);
1197  ff_tlog(s, "%X %X %X %X %X %X %X %X %"PRId64" %u %d\n",
1198  d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
1199  if (i*(avi->io_fsize>0) + (uint64_t)size > avi->fsize || d[0] > 127)
1200  continue;
1201 
1202  // parse ix##
1203  if ((d[0] == 'i' && d[1] == 'x' && n < s->nb_streams) ||
1204  // parse JUNK
1205  (d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K') ||
1206  (d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1')) {
1207  avio_skip(pb, size);
1208  goto start_sync;
1209  }
1210 
1211  // parse stray LIST
1212  if (d[0] == 'L' && d[1] == 'I' && d[2] == 'S' && d[3] == 'T') {
1213  avio_skip(pb, 4);
1214  goto start_sync;
1215  }
1216 
1217  n = get_stream_idx(d);
1218 
1219  if (!((i - avi->last_pkt_pos) & 1) &&
1220  get_stream_idx(d + 1) < s->nb_streams)
1221  continue;
1222 
1223  // detect ##ix chunk and skip
1224  if (d[2] == 'i' && d[3] == 'x' && n < s->nb_streams) {
1225  avio_skip(pb, size);
1226  goto start_sync;
1227  }
1228 
1229  if (avi->dv_demux && n != 0)
1230  continue;
1231 
1232  // parse ##dc/##wb
1233  if (n < s->nb_streams) {
1234  AVStream *st;
1235  AVIStream *ast;
1236  st = s->streams[n];
1237  ast = st->priv_data;
1238 
1239  if (!ast) {
1240  av_log(s, AV_LOG_WARNING, "Skipping foreign stream %d packet\n", n);
1241  continue;
1242  }
1243 
1244  if (s->nb_streams >= 2) {
1245  AVStream *st1 = s->streams[1];
1246  AVIStream *ast1 = st1->priv_data;
1247  // workaround for broken small-file-bug402.avi
1248  if ( d[2] == 'w' && d[3] == 'b'
1249  && n == 0
1250  && st ->codecpar->codec_type == AVMEDIA_TYPE_VIDEO
1252  && ast->prefix == 'd'*256+'c'
1253  && (d[2]*256+d[3] == ast1->prefix || !ast1->prefix_count)
1254  ) {
1255  n = 1;
1256  st = st1;
1257  ast = ast1;
1259  "Invalid stream + prefix combination, assuming audio.\n");
1260  }
1261  }
1262 
1263  if (!avi->dv_demux &&
1264  ((st->discard >= AVDISCARD_DEFAULT && size == 0) /* ||
1265  // FIXME: needs a little reordering
1266  (st->discard >= AVDISCARD_NONKEY &&
1267  !(pkt->flags & AV_PKT_FLAG_KEY)) */
1268  || st->discard >= AVDISCARD_ALL)) {
1269  if (!exit_early) {
1270  ast->frame_offset += get_duration(ast, size);
1271  avio_skip(pb, size);
1272  goto start_sync;
1273  }
1274  }
1275 
1276  if (d[2] == 'p' && d[3] == 'c' && size <= 4 * 256 + 4) {
1277  int k = avio_r8(pb);
1278  int last = (k + avio_r8(pb) - 1) & 0xFF;
1279 
1280  avio_rl16(pb); // flags
1281 
1282  // b + (g << 8) + (r << 16);
1283  for (; k <= last; k++)
1284  ast->pal[k] = 0xFFU<<24 | avio_rb32(pb)>>8;
1285 
1286  ast->has_pal = 1;
1287  goto start_sync;
1288  } else if (((ast->prefix_count < 5 || sync + 9 > i) &&
1289  d[2] < 128 && d[3] < 128) ||
1290  d[2] * 256 + d[3] == ast->prefix /* ||
1291  (d[2] == 'd' && d[3] == 'c') ||
1292  (d[2] == 'w' && d[3] == 'b') */) {
1293  if (exit_early)
1294  return 0;
1295  if (d[2] * 256 + d[3] == ast->prefix)
1296  ast->prefix_count++;
1297  else {
1298  ast->prefix = d[2] * 256 + d[3];
1299  ast->prefix_count = 0;
1300  }
1301 
1302  avi->stream_index = n;
1303  ast->packet_size = size + 8;
1304  ast->remaining = size;
1305 
1306  if (size) {
1307  uint64_t pos = avio_tell(pb) - 8;
1308  if (!st->index_entries || !st->nb_index_entries ||
1309  st->index_entries[st->nb_index_entries - 1].pos < pos) {
1310  av_add_index_entry(st, pos, ast->frame_offset, size,
1311  0, AVINDEX_KEYFRAME);
1312  }
1313  }
1314  return 0;
1315  }
1316  }
1317  }
1318 
1319  if (pb->error)
1320  return pb->error;
1321  return AVERROR_EOF;
1322 }
1323 
1325 {
1326  AVIContext *avi = s->priv_data;
1327  int best_stream_index = 0;
1328  AVStream *best_st = NULL;
1329  AVIStream *best_ast;
1330  int64_t best_ts = INT64_MAX;
1331  int i;
1332 
1333  for (i = 0; i < s->nb_streams; i++) {
1334  AVStream *st = s->streams[i];
1335  AVIStream *ast = st->priv_data;
1336  int64_t ts = ast->frame_offset;
1337  int64_t last_ts;
1338 
1339  if (!st->nb_index_entries)
1340  continue;
1341 
1342  last_ts = st->index_entries[st->nb_index_entries - 1].timestamp;
1343  if (!ast->remaining && ts > last_ts)
1344  continue;
1345 
1346  ts = av_rescale_q(ts, st->time_base,
1347  (AVRational) { FFMAX(1, ast->sample_size),
1348  AV_TIME_BASE });
1349 
1350  av_log(s, AV_LOG_TRACE, "%"PRId64" %d/%d %"PRId64"\n", ts,
1351  st->time_base.num, st->time_base.den, ast->frame_offset);
1352  if (ts < best_ts) {
1353  best_ts = ts;
1354  best_st = st;
1355  best_stream_index = i;
1356  }
1357  }
1358  if (!best_st)
1359  return AVERROR_EOF;
1360 
1361  best_ast = best_st->priv_data;
1362  best_ts = best_ast->frame_offset;
1363  if (best_ast->remaining) {
1364  i = av_index_search_timestamp(best_st,
1365  best_ts,
1366  AVSEEK_FLAG_ANY |
1368  } else {
1369  i = av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
1370  if (i >= 0)
1371  best_ast->frame_offset = best_st->index_entries[i].timestamp;
1372  }
1373 
1374  if (i >= 0) {
1375  int64_t pos = best_st->index_entries[i].pos;
1376  pos += best_ast->packet_size - best_ast->remaining;
1377  if (avio_seek(s->pb, pos + 8, SEEK_SET) < 0)
1378  return AVERROR_EOF;
1379 
1380  av_assert0(best_ast->remaining <= best_ast->packet_size);
1381 
1382  avi->stream_index = best_stream_index;
1383  if (!best_ast->remaining)
1384  best_ast->packet_size =
1385  best_ast->remaining = best_st->index_entries[i].size;
1386  }
1387  else
1388  return AVERROR_EOF;
1389 
1390  return 0;
1391 }
1392 
1394 {
1395  AVIContext *avi = s->priv_data;
1396  AVIOContext *pb = s->pb;
1397  int err;
1398 
1399  if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1400  int size = avpriv_dv_get_packet(avi->dv_demux, pkt);
1401  if (size >= 0)
1402  return size;
1403  else
1404  goto resync;
1405  }
1406 
1407  if (avi->non_interleaved) {
1408  err = ni_prepare_read(s);
1409  if (err < 0)
1410  return err;
1411  }
1412 
1413 resync:
1414  if (avi->stream_index >= 0) {
1415  AVStream *st = s->streams[avi->stream_index];
1416  AVIStream *ast = st->priv_data;
1417  int size, err;
1418 
1419  if (get_subtitle_pkt(s, st, pkt))
1420  return 0;
1421 
1422  // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
1423  if (ast->sample_size <= 1)
1424  size = INT_MAX;
1425  else if (ast->sample_size < 32)
1426  // arbitrary multiplier to avoid tiny packets for raw PCM data
1427  size = 1024 * ast->sample_size;
1428  else
1429  size = ast->sample_size;
1430 
1431  if (size > ast->remaining)
1432  size = ast->remaining;
1433  avi->last_pkt_pos = avio_tell(pb);
1434  err = av_get_packet(pb, pkt, size);
1435  if (err < 0)
1436  return err;
1437  size = err;
1438 
1439  if (ast->has_pal && pkt->size < (unsigned)INT_MAX / 2) {
1440  uint8_t *pal;
1441  pal = av_packet_new_side_data(pkt,
1443  AVPALETTE_SIZE);
1444  if (!pal) {
1445  av_log(s, AV_LOG_ERROR,
1446  "Failed to allocate data for palette\n");
1447  } else {
1448  memcpy(pal, ast->pal, AVPALETTE_SIZE);
1449  ast->has_pal = 0;
1450  }
1451  }
1452 
1453  if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1454  AVBufferRef *avbuf = pkt->buf;
1455  size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
1456  pkt->data, pkt->size, pkt->pos);
1457  pkt->buf = avbuf;
1458  pkt->flags |= AV_PKT_FLAG_KEY;
1459  if (size < 0)
1460  av_packet_unref(pkt);
1461  } else if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1462  !st->codecpar->codec_tag && read_gab2_sub(s, st, pkt)) {
1463  ast->frame_offset++;
1464  avi->stream_index = -1;
1465  ast->remaining = 0;
1466  goto resync;
1467  } else {
1468  /* XXX: How to handle B-frames in AVI? */
1469  pkt->dts = ast->frame_offset;
1470 // pkt->dts += ast->start;
1471  if (ast->sample_size)
1472  pkt->dts /= ast->sample_size;
1473  av_log(s, AV_LOG_TRACE,
1474  "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d "
1475  "base:%d st:%d size:%d\n",
1476  pkt->dts,
1477  ast->frame_offset,
1478  ast->scale,
1479  ast->rate,
1480  ast->sample_size,
1481  AV_TIME_BASE,
1482  avi->stream_index,
1483  size);
1484  pkt->stream_index = avi->stream_index;
1485 
1486  if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->index_entries) {
1487  AVIndexEntry *e;
1488  int index;
1489 
1491  e = &st->index_entries[index];
1492 
1493  if (index >= 0 && e->timestamp == ast->frame_offset) {
1494  if (index == st->nb_index_entries-1) {
1495  int key=1;
1496  uint32_t state=-1;
1497  if (st->codecpar->codec_id == AV_CODEC_ID_MPEG4) {
1498  const uint8_t *ptr = pkt->data, *end = ptr + FFMIN(size, 256);
1499  while (ptr < end) {
1500  ptr = avpriv_find_start_code(ptr, end, &state);
1501  if (state == 0x1B6 && ptr < end) {
1502  key = !(*ptr & 0xC0);
1503  break;
1504  }
1505  }
1506  }
1507  if (!key)
1508  e->flags &= ~AVINDEX_KEYFRAME;
1509  }
1510  if (e->flags & AVINDEX_KEYFRAME)
1511  pkt->flags |= AV_PKT_FLAG_KEY;
1512  }
1513  } else {
1514  pkt->flags |= AV_PKT_FLAG_KEY;
1515  }
1516  ast->frame_offset += get_duration(ast, pkt->size);
1517  }
1518  ast->remaining -= err;
1519  if (!ast->remaining) {
1520  avi->stream_index = -1;
1521  ast->packet_size = 0;
1522  }
1523 
1524  if (!avi->non_interleaved && pkt->pos >= 0 && ast->seek_pos > pkt->pos) {
1525  av_packet_unref(pkt);
1526  goto resync;
1527  }
1528  ast->seek_pos= 0;
1529 
1530  if (!avi->non_interleaved && st->nb_index_entries>1 && avi->index_loaded>1) {
1531  int64_t dts= av_rescale_q(pkt->dts, st->time_base, AV_TIME_BASE_Q);
1532 
1533  if (avi->dts_max - dts > 2*AV_TIME_BASE) {
1534  avi->non_interleaved= 1;
1535  av_log(s, AV_LOG_INFO, "Switching to NI mode, due to poor interleaving\n");
1536  }else if (avi->dts_max < dts)
1537  avi->dts_max = dts;
1538  }
1539 
1540  return 0;
1541  }
1542 
1543  if ((err = avi_sync(s, 0)) < 0)
1544  return err;
1545  goto resync;
1546 }
1547 
1548 /* XXX: We make the implicit supposition that the positions are sorted
1549  * for each stream. */
1551 {
1552  AVIContext *avi = s->priv_data;
1553  AVIOContext *pb = s->pb;
1554  int nb_index_entries, i;
1555  AVStream *st;
1556  AVIStream *ast;
1557  int64_t pos;
1558  unsigned int index, tag, flags, len, first_packet = 1;
1559  int64_t last_pos = -1;
1560  unsigned last_idx = -1;
1561  int64_t idx1_pos, first_packet_pos = 0, data_offset = 0;
1562  int anykey = 0;
1563 
1564  nb_index_entries = size / 16;
1565  if (nb_index_entries <= 0)
1566  return AVERROR_INVALIDDATA;
1567 
1568  idx1_pos = avio_tell(pb);
1569  avio_seek(pb, avi->movi_list + 4, SEEK_SET);
1570  if (avi_sync(s, 1) == 0)
1571  first_packet_pos = avio_tell(pb) - 8;
1572  avi->stream_index = -1;
1573  avio_seek(pb, idx1_pos, SEEK_SET);
1574 
1575  if (s->nb_streams == 1 && s->streams[0]->codecpar->codec_tag == AV_RL32("MMES")) {
1576  first_packet_pos = 0;
1577  data_offset = avi->movi_list;
1578  }
1579 
1580  /* Read the entries and sort them in each stream component. */
1581  for (i = 0; i < nb_index_entries; i++) {
1582  if (avio_feof(pb))
1583  return -1;
1584 
1585  tag = avio_rl32(pb);
1586  flags = avio_rl32(pb);
1587  pos = avio_rl32(pb);
1588  len = avio_rl32(pb);
1589  av_log(s, AV_LOG_TRACE, "%d: tag=0x%x flags=0x%x pos=0x%"PRIx64" len=%d/",
1590  i, tag, flags, pos, len);
1591 
1592  index = ((tag & 0xff) - '0') * 10;
1593  index += (tag >> 8 & 0xff) - '0';
1594  if (index >= s->nb_streams)
1595  continue;
1596  st = s->streams[index];
1597  ast = st->priv_data;
1598 
1599  /* Skip 'xxpc' palette change entries in the index until a logic
1600  * to process these is properly implemented. */
1601  if ((tag >> 16 & 0xff) == 'p' && (tag >> 24 & 0xff) == 'c')
1602  continue;
1603 
1604  if (first_packet && first_packet_pos) {
1605  if (avi->movi_list + 4 != pos || pos + 500 > first_packet_pos)
1606  data_offset = first_packet_pos - pos;
1607  first_packet = 0;
1608  }
1609  pos += data_offset;
1610 
1611  av_log(s, AV_LOG_TRACE, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
1612 
1613  // even if we have only a single stream, we should
1614  // switch to non-interleaved to get correct timestamps
1615  if (last_pos == pos)
1616  avi->non_interleaved = 1;
1617  if (last_idx != pos && len) {
1618  av_add_index_entry(st, pos, ast->cum_len, len, 0,
1619  (flags & AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
1620  last_idx= pos;
1621  }
1622  ast->cum_len += get_duration(ast, len);
1623  last_pos = pos;
1624  anykey |= flags&AVIIF_INDEX;
1625  }
1626  if (!anykey) {
1627  for (index = 0; index < s->nb_streams; index++) {
1628  st = s->streams[index];
1629  if (st->nb_index_entries)
1631  }
1632  }
1633  return 0;
1634 }
1635 
1636 /* Scan the index and consider any file with streams more than
1637  * 2 seconds or 64MB apart non-interleaved. */
1639 {
1640  int64_t min_pos, pos;
1641  int i;
1642  int *idx = av_mallocz_array(s->nb_streams, sizeof(*idx));
1643  if (!idx)
1644  return AVERROR(ENOMEM);
1645  for (min_pos = pos = 0; min_pos != INT64_MAX; pos = min_pos + 1LU) {
1646  int64_t max_dts = INT64_MIN / 2;
1647  int64_t min_dts = INT64_MAX / 2;
1648  int64_t max_buffer = 0;
1649 
1650  min_pos = INT64_MAX;
1651 
1652  for (i = 0; i < s->nb_streams; i++) {
1653  AVStream *st = s->streams[i];
1654  AVIStream *ast = st->priv_data;
1655  int n = st->nb_index_entries;
1656  while (idx[i] < n && st->index_entries[idx[i]].pos < pos)
1657  idx[i]++;
1658  if (idx[i] < n) {
1659  int64_t dts;
1660  dts = av_rescale_q(st->index_entries[idx[i]].timestamp /
1661  FFMAX(ast->sample_size, 1),
1662  st->time_base, AV_TIME_BASE_Q);
1663  min_dts = FFMIN(min_dts, dts);
1664  min_pos = FFMIN(min_pos, st->index_entries[idx[i]].pos);
1665  }
1666  }
1667  for (i = 0; i < s->nb_streams; i++) {
1668  AVStream *st = s->streams[i];
1669  AVIStream *ast = st->priv_data;
1670 
1671  if (idx[i] && min_dts != INT64_MAX / 2) {
1672  int64_t dts;
1673  dts = av_rescale_q(st->index_entries[idx[i] - 1].timestamp /
1674  FFMAX(ast->sample_size, 1),
1675  st->time_base, AV_TIME_BASE_Q);
1676  max_dts = FFMAX(max_dts, dts);
1677  max_buffer = FFMAX(max_buffer,
1678  av_rescale(dts - min_dts,
1679  st->codecpar->bit_rate,
1680  AV_TIME_BASE));
1681  }
1682  }
1683  if (max_dts - min_dts > 2 * AV_TIME_BASE ||
1684  max_buffer > 1024 * 1024 * 8 * 8) {
1685  av_free(idx);
1686  return 1;
1687  }
1688  }
1689  av_free(idx);
1690  return 0;
1691 }
1692 
1694 {
1695  int i;
1696  int64_t last_start = 0;
1697  int64_t first_end = INT64_MAX;
1698  int64_t oldpos = avio_tell(s->pb);
1699 
1700  for (i = 0; i < s->nb_streams; i++) {
1701  AVStream *st = s->streams[i];
1702  int n = st->nb_index_entries;
1703  unsigned int size;
1704 
1705  if (n <= 0)
1706  continue;
1707 
1708  if (n >= 2) {
1709  int64_t pos = st->index_entries[0].pos;
1710  unsigned tag[2];
1711  avio_seek(s->pb, pos, SEEK_SET);
1712  tag[0] = avio_r8(s->pb);
1713  tag[1] = avio_r8(s->pb);
1714  avio_rl16(s->pb);
1715  size = avio_rl32(s->pb);
1716  if (get_stream_idx(tag) == i && pos + size > st->index_entries[1].pos)
1717  last_start = INT64_MAX;
1718  if (get_stream_idx(tag) == i && size == st->index_entries[0].size + 8)
1719  last_start = INT64_MAX;
1720  }
1721 
1722  if (st->index_entries[0].pos > last_start)
1723  last_start = st->index_entries[0].pos;
1724  if (st->index_entries[n - 1].pos < first_end)
1725  first_end = st->index_entries[n - 1].pos;
1726  }
1727  avio_seek(s->pb, oldpos, SEEK_SET);
1728 
1729  if (last_start > first_end)
1730  return 1;
1731 
1732  return check_stream_max_drift(s);
1733 }
1734 
1736 {
1737  AVIContext *avi = s->priv_data;
1738  AVIOContext *pb = s->pb;
1739  uint32_t tag, size;
1740  int64_t pos = avio_tell(pb);
1741  int64_t next;
1742  int ret = -1;
1743 
1744  if (avio_seek(pb, avi->movi_end, SEEK_SET) < 0)
1745  goto the_end; // maybe truncated file
1746  av_log(s, AV_LOG_TRACE, "movi_end=0x%"PRIx64"\n", avi->movi_end);
1747  for (;;) {
1748  tag = avio_rl32(pb);
1749  size = avio_rl32(pb);
1750  if (avio_feof(pb))
1751  break;
1752  next = avio_tell(pb) + size + (size & 1);
1753 
1754  av_log(s, AV_LOG_TRACE, "tag=%c%c%c%c size=0x%x\n",
1755  tag & 0xff,
1756  (tag >> 8) & 0xff,
1757  (tag >> 16) & 0xff,
1758  (tag >> 24) & 0xff,
1759  size);
1760 
1761  if (tag == MKTAG('i', 'd', 'x', '1') &&
1762  avi_read_idx1(s, size) >= 0) {
1763  avi->index_loaded=2;
1764  ret = 0;
1765  }else if (tag == MKTAG('L', 'I', 'S', 'T')) {
1766  uint32_t tag1 = avio_rl32(pb);
1767 
1768  if (tag1 == MKTAG('I', 'N', 'F', 'O'))
1769  ff_read_riff_info(s, size - 4);
1770  }else if (!ret)
1771  break;
1772 
1773  if (avio_seek(pb, next, SEEK_SET) < 0)
1774  break; // something is wrong here
1775  }
1776 
1777 the_end:
1778  avio_seek(pb, pos, SEEK_SET);
1779  return ret;
1780 }
1781 
1782 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
1783 {
1784  AVIStream *ast2 = st2->priv_data;
1785  int64_t ts2 = av_rescale_q(timestamp, st->time_base, st2->time_base);
1786  av_packet_unref(&ast2->sub_pkt);
1787  if (avformat_seek_file(ast2->sub_ctx, 0, INT64_MIN, ts2, ts2, 0) >= 0 ||
1788  avformat_seek_file(ast2->sub_ctx, 0, ts2, ts2, INT64_MAX, 0) >= 0)
1789  ff_read_packet(ast2->sub_ctx, &ast2->sub_pkt);
1790 }
1791 
1792 static int avi_read_seek(AVFormatContext *s, int stream_index,
1793  int64_t timestamp, int flags)
1794 {
1795  AVIContext *avi = s->priv_data;
1796  AVStream *st;
1797  int i, index;
1798  int64_t pos, pos_min;
1799  AVIStream *ast;
1800 
1801  /* Does not matter which stream is requested dv in avi has the
1802  * stream information in the first video stream.
1803  */
1804  if (avi->dv_demux)
1805  stream_index = 0;
1806 
1807  if (!avi->index_loaded) {
1808  /* we only load the index on demand */
1809  avi_load_index(s);
1810  avi->index_loaded |= 1;
1811  }
1812  av_assert0(stream_index >= 0);
1813 
1814  st = s->streams[stream_index];
1815  ast = st->priv_data;
1816  index = av_index_search_timestamp(st,
1817  timestamp * FFMAX(ast->sample_size, 1),
1818  flags);
1819  if (index < 0) {
1820  if (st->nb_index_entries > 0)
1821  av_log(s, AV_LOG_DEBUG, "Failed to find timestamp %"PRId64 " in index %"PRId64 " .. %"PRId64 "\n",
1822  timestamp * FFMAX(ast->sample_size, 1),
1823  st->index_entries[0].timestamp,
1825  return AVERROR_INVALIDDATA;
1826  }
1827 
1828  /* find the position */
1829  pos = st->index_entries[index].pos;
1830  timestamp = st->index_entries[index].timestamp / FFMAX(ast->sample_size, 1);
1831 
1832  av_log(s, AV_LOG_TRACE, "XX %"PRId64" %d %"PRId64"\n",
1833  timestamp, index, st->index_entries[index].timestamp);
1834 
1835  if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1836  /* One and only one real stream for DV in AVI, and it has video */
1837  /* offsets. Calling with other stream indexes should have failed */
1838  /* the av_index_search_timestamp call above. */
1839 
1840  if (avio_seek(s->pb, pos, SEEK_SET) < 0)
1841  return -1;
1842 
1843  /* Feed the DV video stream version of the timestamp to the */
1844  /* DV demux so it can synthesize correct timestamps. */
1845  ff_dv_offset_reset(avi->dv_demux, timestamp);
1846 
1847  avi->stream_index = -1;
1848  return 0;
1849  }
1850 
1851  pos_min = pos;
1852  for (i = 0; i < s->nb_streams; i++) {
1853  AVStream *st2 = s->streams[i];
1854  AVIStream *ast2 = st2->priv_data;
1855 
1856  ast2->packet_size =
1857  ast2->remaining = 0;
1858 
1859  if (ast2->sub_ctx) {
1860  seek_subtitle(st, st2, timestamp);
1861  continue;
1862  }
1863 
1864  if (st2->nb_index_entries <= 0)
1865  continue;
1866 
1867 // av_assert1(st2->codecpar->block_align);
1868  index = av_index_search_timestamp(st2,
1869  av_rescale_q(timestamp,
1870  st->time_base,
1871  st2->time_base) *
1872  FFMAX(ast2->sample_size, 1),
1873  flags |
1876  if (index < 0)
1877  index = 0;
1878  ast2->seek_pos = st2->index_entries[index].pos;
1879  pos_min = FFMIN(pos_min,ast2->seek_pos);
1880  }
1881  for (i = 0; i < s->nb_streams; i++) {
1882  AVStream *st2 = s->streams[i];
1883  AVIStream *ast2 = st2->priv_data;
1884 
1885  if (ast2->sub_ctx || st2->nb_index_entries <= 0)
1886  continue;
1887 
1888  index = av_index_search_timestamp(
1889  st2,
1890  av_rescale_q(timestamp, st->time_base, st2->time_base) * FFMAX(ast2->sample_size, 1),
1892  if (index < 0)
1893  index = 0;
1894  while (!avi->non_interleaved && index>0 && st2->index_entries[index-1].pos >= pos_min)
1895  index--;
1896  ast2->frame_offset = st2->index_entries[index].timestamp;
1897  }
1898 
1899  /* do the seek */
1900  if (avio_seek(s->pb, pos_min, SEEK_SET) < 0) {
1901  av_log(s, AV_LOG_ERROR, "Seek failed\n");
1902  return -1;
1903  }
1904  avi->stream_index = -1;
1905  avi->dts_max = INT_MIN;
1906  return 0;
1907 }
1908 
1910 {
1911  int i;
1912  AVIContext *avi = s->priv_data;
1913 
1914  for (i = 0; i < s->nb_streams; i++) {
1915  AVStream *st = s->streams[i];
1916  AVIStream *ast = st->priv_data;
1917  if (ast) {
1918  if (ast->sub_ctx) {
1919  av_freep(&ast->sub_ctx->pb);
1921  }
1922  av_freep(&ast->sub_buffer);
1923  av_packet_unref(&ast->sub_pkt);
1924  }
1925  }
1926 
1927  av_freep(&avi->dv_demux);
1928 
1929  return 0;
1930 }
1931 
1932 static int avi_probe(AVProbeData *p)
1933 {
1934  int i;
1935 
1936  /* check file header */
1937  for (i = 0; avi_headers[i][0]; i++)
1938  if (AV_RL32(p->buf ) == AV_RL32(avi_headers[i] ) &&
1939  AV_RL32(p->buf + 8) == AV_RL32(avi_headers[i] + 4))
1940  return AVPROBE_SCORE_MAX;
1941 
1942  return 0;
1943 }
1944 
1946  .name = "avi",
1947  .long_name = NULL_IF_CONFIG_SMALL("AVI (Audio Video Interleaved)"),
1948  .priv_data_size = sizeof(AVIContext),
1949  .extensions = "avi",
1950  .read_probe = avi_probe,
1955  .priv_class = &demuxer_class,
1956 };
int ff_read_riff_info(AVFormatContext *s, int64_t size)
Definition: riffdec.c:226
static AVStream * get_subtitle_pkt(AVFormatContext *s, AVStream *next_st, AVPacket *pkt)
Definition: avidec.c:1128
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2386
#define ff_tlog(ctx,...)
Definition: internal.h:65
#define NULL
Definition: coverity.c:32
full parsing and interpolation of timestamps for frames not starting on a packet boundary ...
Definition: avformat.h:812
uint32_t handler
Definition: avidec.c:48
const char * s
Definition: avisynth_c.h:768
Bytestream IO Context.
Definition: avio.h:147
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
void ff_metadata_conv_ctx(AVFormatContext *ctx, const AVMetadataConv *d_conv, const AVMetadataConv *s_conv)
Definition: metadata.c:59
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:309
uint32_t pal[256]
Definition: avidec.c:57
AVRational av_div_q(AVRational b, AVRational c)
Divide one rational by another.
Definition: rational.c:88
AVOption.
Definition: opt.h:245
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition: utils.c:1945
enum AVCodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:3012
AVFormatContext * sub_ctx
Definition: avidec.c:62
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
unsigned char * buf_ptr
Current position in the buffer.
Definition: avio.h:210
unsigned char * buf_end
End of the data, may be less than buffer+buffer_size if the read function returned less data than req...
Definition: avio.h:211
#define MAX_ODML_DEPTH
Definition: avidec.c:84
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1621
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4560
int ff_copy_whiteblacklists(AVFormatContext *dst, const AVFormatContext *src)
Copies the whilelists from one context to the other.
Definition: utils.c:145
const char * desc
Definition: nvenc.c:101
int64_t pos
Definition: avformat.h:820
#define AVSEEK_FLAG_ANY
seek to any frame, even non-keyframes
Definition: avformat.h:2388
int64_t last_pkt_pos
Definition: avidec.c:76
uint32_t rate
Definition: avidec.c:50
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3980
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:956
int dshow_block_align
Definition: avidec.c:59
int num
Numerator.
Definition: rational.h:59
int index
stream index in AVFormatContext
Definition: avformat.h:890
int size
Definition: avcodec.h:1602
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:230
#define AVPROBE_PADDING_SIZE
extra allocated bytes at the end of the probe buffer
Definition: avformat.h:475
AVIndexEntry * index_entries
Only used if the format does not support seeking natively.
Definition: avformat.h:1087
int is_odml
Definition: avidec.c:78
enum AVMediaType codec_type
Definition: rtp.c:37
int64_t movi_end
Definition: avidec.c:72
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:133
uint32_t scale
Definition: avidec.c:49
static int get_duration(AVIStream *ast, int len)
Definition: avidec.c:128
void * priv_data
Definition: avformat.h:904
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:304
#define AVIIF_INDEX
Definition: avi.h:39
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:3166
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:252
discard all
Definition: avcodec.h:787
static AVPacket pkt
static int ni_prepare_read(AVFormatContext *s)
Definition: avidec.c:1324
EXIF metadata parser.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:87
int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a UTF-16 string from pb and convert it to UTF-8.
static int check_stream_max_drift(AVFormatContext *s)
Definition: avidec.c:1638
static const AVMetadataConv avi_metadata_conv[]
Definition: avidec.c:112
Format I/O context.
Definition: avformat.h:1338
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
#define AVFMT_FLAG_IGNIDX
Ignore index.
Definition: avformat.h:1451
Public dictionary API.
int stream_index
Definition: avidec.c:80
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t
static int nb_streams
Definition: ffprobe.c:254
#define av_malloc(s)
Opaque data information usually continuous.
Definition: avutil.h:197
int width
Video only.
Definition: avcodec.h:4046
AVOptions.
static int avi_read_close(AVFormatContext *s)
Definition: avidec.c:1909
int64_t riff_end
Definition: avidec.c:71
const AVCodecTag ff_codec_movvideo_tags[]
Definition: isom.c:72
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition: log.h:202
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:757
#define AVPALETTE_SIZE
Definition: pixfmt.h:32
int use_odml
Definition: avidec.c:83
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
enum AVStreamParseType need_parsing
Definition: avformat.h:1076
int id
Format-specific stream ID.
Definition: avformat.h:896
int64_t movi_list
Definition: avidec.c:75
static void handler(vbi_event *ev, void *user_data)
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4193
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1406
int64_t duration
Definition: movenc.c:63
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
Definition: options.c:132
static void clean_index(AVFormatContext *s)
Definition: avidec.c:271
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:40
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1449
DVDemuxContext * avpriv_dv_init_demux(AVFormatContext *s)
Definition: dv.c:324
uint8_t * data
Definition: avcodec.h:1601
static int read_gab2_sub(AVFormatContext *s, AVStream *st, AVPacket *pkt)
Definition: avidec.c:1062
uint32_t tag
Definition: movenc.c:1382
#define AVERROR_EOF
End of file.
Definition: error.h:55
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:289
ptrdiff_t size
Definition: opengl_enc.c:101
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:511
static const uint8_t header[24]
Definition: sdr2.c:67
#define av_log(a,...)
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:604
int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par, int size, int big_endian)
Definition: riffdec.c:88
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition: avcodec.h:4009
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1633
int packet_size
Definition: avidec.c:46
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
#define U(x)
Definition: vp56_arith.h:37
#define AVIF_MUSTUSEINDEX
Definition: avi.h:25
#define AVINDEX_KEYFRAME
Definition: avformat.h:827
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
Definition: aviobuf.c:126
int avcodec_parameters_copy(AVCodecParameters *dst, const AVCodecParameters *src)
Copy the contents of src to dst.
Definition: utils.c:4148
int ff_get_bmp_header(AVIOContext *pb, AVStream *st, unsigned *esize)
Read BITMAPINFOHEADER structure and set AVStream codec width, height and bits_per_encoded_sample fiel...
Definition: riffdec.c:208
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1554
int av_index_search_timestamp(AVStream *st, int64_t timestamp, int flags)
Get the index for a specific timestamp.
Definition: utils.c:2054
av_default_item_name
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:726
#define AVERROR(e)
Definition: error.h:43
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:164
int remaining
Definition: avidec.c:45
int64_t timestamp
Timestamp in AVStream.time_base units, preferably the time from which on correctly decoded frames are...
Definition: avformat.h:821
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int read_braindead_odml_indx(AVFormatContext *s, int frame_num)
Definition: avidec.c:163
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: avcodec.h:517
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3976
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1584
int avpriv_exif_decode_ifd(void *logctx, GetByteContext *gbytes, int le, int depth, AVDictionary **metadata)
Recursively decodes all IFD's and adds included TAGS into the metadata dictionary.
Definition: exif.c:122
static int avi_read_tag(AVFormatContext *s, AVStream *st, uint32_t tag, uint32_t size)
Definition: avidec.c:299
simple assert() macros that are a bit more flexible than ISO C assert().
static int get_stream_idx(const unsigned *d)
Definition: avidec.c:1162
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
AVRational avg_frame_rate
Average framerate.
Definition: avformat.h:967
#define FFMAX(a, b)
Definition: common.h:94
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:226
AVInputFormat * av_probe_input_format2(AVProbeData *pd, int is_opened, int *score_max)
Guess the file format.
Definition: format.c:249
#define fail()
Definition: checkasm.h:83
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1607
int extradata_size
Size of the extradata content in bytes.
Definition: avcodec.h:3998
Only parse headers, do not repack.
Definition: avformat.h:811
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:595
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:463
common internal API header
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1394
int prefix_count
Definition: avidec.c:56
int non_interleaved
Definition: avidec.c:79
int block_align
Audio only.
Definition: avcodec.h:4097
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:243
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
#define AV_TIME_BASE
Internal time base represented as integer.
Definition: avutil.h:248
#define FFMIN(a, b)
Definition: common.h:96
void ff_dv_offset_reset(DVDemuxContext *c, int64_t frame_offset)
Definition: dv.c:436
const AVCodecTag ff_codec_bmp_tags[]
Definition: riff.c:32
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:76
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
int64_t cum_len
Definition: avidec.c:54
static int avi_read_header(AVFormatContext *s)
Definition: avidec.c:470
GLsizei GLboolean const GLfloat * value
Definition: opengl_enc.c:109
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
static const char months[12][4]
Definition: avidec.c:323
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:72
static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
Definition: avidec.c:1782
static int avi_extract_stream_metadata(AVFormatContext *s, AVStream *st)
Definition: avidec.c:388
#define AVFMT_FLAG_SORT_DTS
try to interleave outputted packets by dts (using this flag can slow demuxing down) ...
Definition: avformat.h:1468
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: avcodec.h:2975
int n
Definition: avisynth_c.h:684
AVDictionary * metadata
Definition: avformat.h:958
Usually treated as AVMEDIA_TYPE_DATA.
Definition: avutil.h:194
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:196
int ff_read_packet(AVFormatContext *s, AVPacket *pkt)
Read a transport packet from a media file.
Definition: utils.c:770
static int calculate_bitrate(AVFormatContext *s)
Definition: avidec.c:426
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:514
Stream structure.
Definition: avformat.h:889
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static const char avi_headers[][8]
Definition: avidec.c:103
static av_always_inline int bytestream2_tell(GetByteContext *g)
Definition: bytestream.h:188
static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: avidec.c:1393
int prefix
Definition: avidec.c:55
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
Definition: mem.c:187
AVStreamInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1230
int avpriv_dv_produce_packet(DVDemuxContext *c, AVPacket *pkt, uint8_t *buf, int buf_size, int64_t pos)
Definition: dv.c:364
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:254
AVIOContext * pb
I/O context.
Definition: avformat.h:1380
static int resync(AVFormatContext *s)
Definition: flvdec.c:852
int index_loaded
Definition: avidec.c:77
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:567
static struct @246 state
double(* duration_error)[2][MAX_STD_TIMEBASES]
Definition: avformat.h:1027
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
int nb_index_entries
Definition: avformat.h:1089
static const AVOption options[]
Definition: avidec.c:89
Describe the class of an AVClass context structure.
Definition: log.h:67
static int avi_read_idx1(AVFormatContext *s, int size)
Definition: avidec.c:1550
int index
Definition: gxfenc.c:89
Rational number (pair of numerator and denominator).
Definition: rational.h:58
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:276
byte swapping routines
discard useless packets like 0 size packets in avi
Definition: avcodec.h:782
#define snprintf
Definition: snprintf.h:34
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:471
static int avi_probe(AVProbeData *p)
Definition: avidec.c:1932
int error
contains the error code or 0 if no error happened
Definition: avio.h:228
This structure contains the data a format has to probe a file.
Definition: avformat.h:461
int avformat_seek_file(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Seek to timestamp ts.
Definition: utils.c:2435
const AVMetadataConv ff_riff_info_conv[]
Definition: riff.c:520
int64_t seek_pos
Definition: avidec.c:66
static int flags
Definition: cpu.c:47
static int avi_load_index(AVFormatContext *s)
Definition: avidec.c:1735
AVInputFormat ff_avi_demuxer
Definition: avidec.c:1945
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:943
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:473
int64_t io_fsize
Definition: avidec.c:74
A reference to a data buffer.
Definition: buffer.h:81
static const AVClass demuxer_class
Definition: avidec.c:94
full parsing and repack
Definition: avformat.h:810
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:710
Main libavformat public API header.
static void avi_read_nikon(AVFormatContext *s, uint64_t end)
Definition: avidec.c:345
static void avi_metadata_creation_time(AVDictionary **metadata, char *date)
Definition: avidec.c:326
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:80
common internal api header.
AVPacket sub_pkt
Definition: avidec.c:63
if(ret< 0)
Definition: vf_mcdeint.c:282
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base...
Definition: avformat.h:936
int error_recognition
Error recognition; higher values will detect more errors but may misdetect some more or less valid pa...
Definition: avformat.h:1581
static int get_riff(AVFormatContext *s, AVIOContext *pb)
Definition: avidec.c:138
struct AVStream::@192 * info
int ff_get_extradata(AVFormatContext *s, AVCodecParameters *par, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
Definition: utils.c:3196
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:945
int den
Denominator.
Definition: rational.h:60
int avpriv_dv_get_packet(DVDemuxContext *c, AVPacket *pkt)
Definition: dv.c:347
int sample_size
Definition: avidec.c:51
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:4165
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:734
#define av_free(p)
char * value
Definition: dict.h:87
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:81
int len
int has_pal
Definition: avidec.c:58
static int guess_ni_flag(AVFormatContext *s)
Definition: avidec.c:1693
void * priv_data
Format private data.
Definition: avformat.h:1366
#define print_tag(str, tag, size)
Definition: avidec.c:120
int64_t frame_offset
Definition: avidec.c:43
int64_t dts_max
Definition: avidec.c:85
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:503
int64_t fsize
Definition: avidec.c:73
int bits_per_coded_sample
The number of bits per sample in the codedwords.
Definition: avcodec.h:4022
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition: avcodec.h:3994
AVCodecContext * avctx
The codec context used by avformat_find_stream_info, the parser, etc.
Definition: internal.h:168
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1600
static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: avidec.c:1792
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
Definition: avformat.h:1433
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:664
AVCodecParameters * codecpar
Definition: avformat.h:1241
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:328
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3984
static int64_t fsize(FILE *f)
Definition: audiomatch.c:28
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int size)
Allocate new information of a packet.
Definition: avpacket.c:317
int stream_index
Definition: avcodec.h:1603
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:926
#define MKTAG(a, b, c, d)
Definition: common.h:342
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:949
int odml_depth
Definition: avidec.c:82
int request_probe
stream probing state -1 -> probing finished 0 -> no probing requested rest -> perform probing with re...
Definition: avformat.h:1122
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:87
This structure stores compressed data.
Definition: avcodec.h:1578
uint64_t avio_rl64(AVIOContext *s)
Definition: aviobuf.c:734
static int avi_sync(AVFormatContext *s, int exit_early)
Definition: avidec.c:1176
GLuint buffer
Definition: opengl_enc.c:102
#define AV_WL32(p, v)
Definition: intreadwrite.h:426
const char * name
Definition: opengl_enc.c:103
uint8_t * sub_buffer
Definition: avidec.c:64
DVDemuxContext * dv_demux
Definition: avidec.c:81