OSDN Git Service

aacdec: cosmetics: whitespace
authorAlex Converse <alex.converse@gmail.com>
Mon, 21 Jun 2010 04:10:18 +0000 (04:10 +0000)
committerAlex Converse <alex.converse@gmail.com>
Mon, 21 Jun 2010 04:10:18 +0000 (04:10 +0000)
Originally committed as revision 23675 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/aacdec.c

index b10749e..500c669 100644 (file)
@@ -2007,10 +2007,11 @@ static int aac_decode_frame(AVCodecContext *avctx, void *data,
         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;
         }