Commit 367929be authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mov: Fix integer overflow in mov_get_stsc_samples()

Fixes: runtime error: signed integer overflow: 5 * -2147483647 cannot be represented in type 'int'
Fixes: Chromium bug 817338
Reviewed-by: 's avatarMatt Wolenetz <wolenetz@google.com>
Reported-by: 's avatarMatt Wolenetz <wolenetz@google.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c87bf5b6
...@@ -2645,7 +2645,7 @@ static inline int mov_stsc_index_valid(unsigned int index, unsigned int count) ...@@ -2645,7 +2645,7 @@ static inline int mov_stsc_index_valid(unsigned int index, unsigned int count)
} }
/* Compute the samples value for the stsc entry at the given index. */ /* Compute the samples value for the stsc entry at the given index. */
static inline int mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index) static inline int64_t mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index)
{ {
int chunk_count; int chunk_count;
...@@ -2654,7 +2654,7 @@ static inline int mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index) ...@@ -2654,7 +2654,7 @@ static inline int mov_get_stsc_samples(MOVStreamContext *sc, unsigned int index)
else else
chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1); chunk_count = sc->chunk_count - (sc->stsc_data[index].first - 1);
return sc->stsc_data[index].count * chunk_count; return sc->stsc_data[index].count * (int64_t)chunk_count;
} }
static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom) static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
...@@ -7189,12 +7189,13 @@ static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, ...@@ -7189,12 +7189,13 @@ static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp,
/* adjust stsd index */ /* adjust stsd index */
time_sample = 0; time_sample = 0;
for (i = 0; i < sc->stsc_count; i++) { for (i = 0; i < sc->stsc_count; i++) {
int next = time_sample + mov_get_stsc_samples(sc, i); int64_t next = time_sample + mov_get_stsc_samples(sc, i);
if (next > sc->current_sample) { if (next > sc->current_sample) {
sc->stsc_index = i; sc->stsc_index = i;
sc->stsc_sample = sc->current_sample - time_sample; sc->stsc_sample = sc->current_sample - time_sample;
break; break;
} }
av_assert0(next == (int)next);
time_sample = next; time_sample = next;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment