OSDN Git Service

cosmetics: pretty-printing after last commit
authorJustin Ruggles <justin.ruggles@gmail.com>
Thu, 16 Dec 2010 03:44:35 +0000 (03:44 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 16 Dec 2010 03:44:35 +0000 (03:44 +0000)
Originally committed as revision 26031 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3enc.c

index 3240aee..6c5fe19 100644 (file)
@@ -1760,14 +1760,12 @@ static av_cold int ac3_encode_init(AVCodecContext *avctx)
 
     s->mdct.avctx = avctx;
     ret = mdct_init(&s->mdct, 9);
-    if (ret) {
+    if (ret)
         goto init_fail;
-    }
 
     ret = allocate_buffers(avctx);
-    if (ret) {
+    if (ret)
         goto init_fail;
-    }
 
     avctx->coded_frame= avcodec_alloc_frame();