aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2010-12-16 03:44:35 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2010-12-16 03:44:35 +0000
commit7786c384f627b2a9de7ddd8aff3d14fca6d6f0c6 (patch)
tree66e1499d782f2e8cea730bcf61af13f2d5557ff8
parent89bedc4d2e18d2b200aa80b59badbf8d158cdb4a (diff)
downloadffmpeg-7786c384f627b2a9de7ddd8aff3d14fca6d6f0c6.tar.gz
cosmetics: pretty-printing after last commit
Originally committed as revision 26031 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ac3enc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 3240aee53a..6c5fe19314 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -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();