Browse Source

Revert "mov: do not misreport empty stts"

Fixes ticket #578.

This reverts commit 30c3d976f1.
tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
9e8dff90ef
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/mov.c

+ 2
- 2
libavformat/mov.c View File

@@ -1563,8 +1563,8 @@ static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
av_dlog(c->fc, "track[%i].stts.entries = %i\n",
c->fc->nb_streams-1, entries);

if (!entries || entries >= UINT_MAX / sizeof(*sc->stts_data))
return AVERROR(EINVAL);
if (entries >= UINT_MAX / sizeof(*sc->stts_data))
return -1;

sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
if (!sc->stts_data)


Loading…
Cancel
Save