From: Michael Niedermayer Date: Sun, 1 Apr 2007 16:14:19 +0000 (+0000) Subject: indention X-Git-Tag: v0.5~9455 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2de4f9eb476013f4e3f4d6a23c5ea2a8c059712a;p=platform%2Fupstream%2Flibav.git indention Originally committed as revision 8590 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 4539cb9..2129c9d 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -830,12 +830,12 @@ int avcodec_open(AVCodecContext *avctx, AVCodec *codec) avctx->codec_id = codec->id; avctx->frame_number = 0; if(avctx->codec->init){ - ret = avctx->codec->init(avctx); - if (ret < 0) { - av_freep(&avctx->priv_data); - avctx->codec= NULL; - goto end; - } + ret = avctx->codec->init(avctx); + if (ret < 0) { + av_freep(&avctx->priv_data); + avctx->codec= NULL; + goto end; + } } ret=0; end: