# HG changeset patch # User bcoudurier # Date 1202769243 0 # Node ID f04e80f9fd59532282719f65f49663a48c102ffd # Parent cc71bdb747fed24d8c95c836518bc7e1dc462151 remove useless braces diff -r cc71bdb747fe -r f04e80f9fd59 mov.c --- a/mov.c Mon Feb 11 22:33:35 2008 +0000 +++ b/mov.c Mon Feb 11 22:34:03 2008 +0000 @@ -1435,9 +1435,8 @@ } else { chunk_duration += sc->stts_data[stts_index].duration * chunk_samples; chunk_samples -= sc->stts_data[stts_index].count; - if (stts_index + 1 < sc->stts_count) { + if (stts_index + 1 < sc->stts_count) stts_index++; - } } } current_offset += sc->bytes_per_frame;