summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-04-01 16:14:19 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-04-01 16:14:19 +0000
commit2de4f9eb476013f4e3f4d6a23c5ea2a8c059712a (patch)
tree9668738e39349f0afabf19e97367ff87b7468ae4 /libavcodec
parent6e546aaa248e4ff0b173d61c5c4c40ef63b0535f (diff)
indention
Originally committed as revision 8590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/utils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 4539cb945e..2129c9d154 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: