changeset 11904:09a48810ded6 libavcodec

aacdec: cosmetics: whitespace
author alexc
date Mon, 21 Jun 2010 04:10:18 +0000
parents f3e007b379e5
children 062aab998a98
files aacdec.c
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/aacdec.c	Mon Jun 21 04:07:19 2010 +0000
+++ b/aacdec.c	Mon Jun 21 04:10:18 2010 +0000
@@ -2007,10 +2007,11 @@
         elem_id = get_bits(&gb, 4);
 
         if (elem_type < TYPE_DSE) {
-        if (!(che=get_che(ac, elem_type, elem_id))) {
-            av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id);
-            return -1;
-        }
+            if (!(che=get_che(ac, elem_type, elem_id))) {
+                av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n",
+                       elem_type, elem_id);
+                return -1;
+            }
             samples = 1024;
         }