mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
mov: Allow last chunk to have an arbitrary number of samples.
Fixes ticket #673.
(cherry picked from commit 8dcd2a41ec
)
Signed-off-by: Alex Converse <alex.converse@gmail.com>
This commit is contained in:
parent
b5161908e0
commit
a294a7a1b3
@ -1821,7 +1821,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
|
||||
unsigned count, chunk_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");
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user