# HG changeset patch # User bcoudurier # Date 1202769155 0 # Node ID 5064dffc46b7aa2811d7bfb2df0ee38a80cc3051 # Parent 10abe8748ec2f1d9e861f2133390b02cc9211928 split chunks in the case of big compressed audio frames, might be tweaked, fix qt_dv_pal_test.mov. diff -r 10abe8748ec2 -r 5064dffc46b7 mov.c --- a/mov.c Mon Feb 11 22:23:05 2008 +0000 +++ b/mov.c Mon Feb 11 22:32:35 2008 +0000 @@ -1375,6 +1375,7 @@ } } else { /* read whole chunk */ unsigned int chunk_samples, chunk_size, chunk_duration; + unsigned int frames = 1; for (i = 0; i < sc->chunk_count; i++) { current_offset = sc->chunk_offsets[i]; if (stsc_index + 1 < sc->sample_to_chunk_sz && @@ -1387,7 +1388,15 @@ chunk_size = chunk_samples * sc->sample_size; else if (sc->samples_per_frame > 0 && (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0)) + { + if (sc->samples_per_frame < 1024) chunk_size = chunk_samples * sc->bytes_per_frame / sc->samples_per_frame; + else { + chunk_size = sc->bytes_per_frame; + frames = chunk_samples / sc->samples_per_frame; + chunk_samples = sc->samples_per_frame; + } + } else { /* workaround to find nearest next chunk offset */ chunk_size = INT_MAX; for (j = 0; j < mov->fc->nb_streams; j++) { @@ -1416,6 +1425,7 @@ msc->next_chunk = 0; } } + for (j = 0; j < frames; j++) { av_add_index_entry(st, current_offset, current_dts, chunk_size, 0, AVINDEX_KEYFRAME); /* get chunk duration */ chunk_duration = 0; @@ -1432,10 +1442,12 @@ } } } + current_offset += sc->bytes_per_frame; dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", size %d, " "duration %d\n", st->index, i, current_offset, current_dts, chunk_size, chunk_duration); assert(chunk_duration % sc->time_rate == 0); current_dts += chunk_duration / sc->time_rate; + } } } out: