Commit 7786c384 authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: pretty-printing after last commit

Originally committed as revision 26031 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 89bedc4d
...@@ -1760,14 +1760,12 @@ static av_cold int ac3_encode_init(AVCodecContext *avctx) ...@@ -1760,14 +1760,12 @@ static av_cold int ac3_encode_init(AVCodecContext *avctx)
s->mdct.avctx = avctx; s->mdct.avctx = avctx;
ret = mdct_init(&s->mdct, 9); ret = mdct_init(&s->mdct, 9);
if (ret) { if (ret)
goto init_fail; goto init_fail;
}
ret = allocate_buffers(avctx); ret = allocate_buffers(avctx);
if (ret) { if (ret)
goto init_fail; goto init_fail;
}
avctx->coded_frame= avcodec_alloc_frame(); avctx->coded_frame= avcodec_alloc_frame();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment