diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-09-02 11:53:09 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-09-02 11:53:09 +0000 |
commit | 2b50c4f6ccfbc3635d3fc3b96ed461e379125975 (patch) | |
tree | 92576402ec3bf2c5ffe31eaed015a19e1098695d | |
parent | 4ed899f2c5848b75b61d13ad42942ecc2a4386f9 (diff) | |
download | ffmpeg-2b50c4f6ccfbc3635d3fc3b96ed461e379125975.tar.gz |
Cosmetics: Reindent after r25023.
Originally committed as revision 25024 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avidec.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index f5b5c21a35..84ccaec5e3 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -1295,12 +1295,12 @@ static int avi_read_close(AVFormatContext *s) AVIStream *ast = st->priv_data; av_free(st->codec->palctrl); if (ast) { - if (ast->sub_ctx) { - av_freep(&ast->sub_ctx->pb); - av_close_input_stream(ast->sub_ctx); - } - av_free(ast->sub_buffer); - av_free_packet(&ast->sub_pkt); + if (ast->sub_ctx) { + av_freep(&ast->sub_ctx->pb); + av_close_input_stream(ast->sub_ctx); + } + av_free(ast->sub_buffer); + av_free_packet(&ast->sub_pkt); } } |