Commit 2de4f9eb authored by Michael Niedermayer's avatar Michael Niedermayer

indention

Originally committed as revision 8590 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6e546aaa
......@@ -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:
......
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