Commit 8dcd2a41 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Allow last mov chunk to have an arbitrary number of samples.

Fixes ticket #673.
parent 88bbabcc
...@@ -1741,7 +1741,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st) ...@@ -1741,7 +1741,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
unsigned count, chunk_count; unsigned count, chunk_count;
chunk_samples = sc->stsc_data[i].count; chunk_samples = sc->stsc_data[i].count;
if (sc->samples_per_frame && chunk_samples % sc->samples_per_frame) { if (i != sc->stsc_count - 1 &&
sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n"); av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
return; return;
} }
......
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