diff mov.c @ 3032:f04e80f9fd59 libavformat

remove useless braces
author bcoudurier
date Mon, 11 Feb 2008 22:34:03 +0000
parents cc71bdb747fe
children 619970c01fc0
line wrap: on
line diff
--- 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;