From: Justin Ruggles Date: Thu, 16 Dec 2010 03:44:35 +0000 (+0000) Subject: cosmetics: pretty-printing after last commit X-Git-Tag: v0.7b2~1636 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7786c384f627b2a9de7ddd8aff3d14fca6d6f0c6;p=coroid%2Flibav_saccubus.git cosmetics: pretty-printing after last commit Originally committed as revision 26031 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 3240aee53..6c5fe1931 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();