changeset 9151:1c478e02676a libavcodec

Re-indent after last commit.
author alexc
date Fri, 06 Mar 2009 22:37:21 +0000
parents 4fe6dee5f1dd
children 788aa0c09382
files aac.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/aac.c	Fri Mar 06 22:36:24 2009 +0000
+++ b/aac.c	Fri Mar 06 22:37:21 2009 +0000
@@ -1598,13 +1598,13 @@
         ac->m4ac.sample_rate     = hdr_info.sample_rate;
         ac->m4ac.sampling_index  = hdr_info.sampling_index;
         ac->m4ac.object_type     = hdr_info.object_type;
-    if (hdr_info.num_aac_frames == 1) {
-        if (!hdr_info.crc_absent)
-            skip_bits(gb, 16);
-    } else {
-        ff_log_missing_feature(ac->avccontext, "More than one AAC RDB per ADTS frame is", 0);
-        return -1;
-    }
+        if (hdr_info.num_aac_frames == 1) {
+            if (!hdr_info.crc_absent)
+                skip_bits(gb, 16);
+        } else {
+            ff_log_missing_feature(ac->avccontext, "More than one AAC RDB per ADTS frame is", 0);
+            return -1;
+        }
     }
     return size;
 }