changeset 3965:adbe373e6e79 libavformat

Cosmetics: indentation
author conrad
date Wed, 01 Oct 2008 14:44:30 +0000
parents 66a7b9ab9e09
children 4a3372240319
files oggparsetheora.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/oggparsetheora.c	Wed Oct 01 14:43:08 2008 +0000
+++ b/oggparsetheora.c	Wed Oct 01 14:44:30 2008 +0000
@@ -76,11 +76,11 @@
             skip_bits(&gb, 100);
 
         if (version >= 0x030200) {
-        width  = get_bits_long(&gb, 24);
-        height = get_bits_long(&gb, 24);
-        if (   width  <= st->codec->width  && width  > st->codec->width-16
-            && height <= st->codec->height && height > st->codec->height-16)
-            avcodec_set_dimensions(st->codec, width, height);
+            width  = get_bits_long(&gb, 24);
+            height = get_bits_long(&gb, 24);
+            if (   width  <= st->codec->width  && width  > st->codec->width-16
+                && height <= st->codec->height && height > st->codec->height-16)
+                avcodec_set_dimensions(st->codec, width, height);
 
             skip_bits(&gb, 16);
         }