diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-27 18:16:11 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-05 13:08:19 -0500 |
commit | 94cf64b81fa129a92c92450521eced6bf6d9801e (patch) | |
tree | f96a48f77f695ef08415c34f2f2c56e4d156502f | |
parent | 8c1d6ac66a4f31008224595aa26781e1746f543b (diff) | |
download | ffmpeg-94cf64b81fa129a92c92450521eced6bf6d9801e.tar.gz |
cosmetics: reindent
-rw-r--r-- | libavformat/utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 5b8a1123af..f5cb5d4a77 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2325,11 +2325,11 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) /* flush the decoders */ if (st->info->found_decoder == 1) { - do { - err = try_decode_frame(st, &empty_pkt, - (options && i < orig_nb_streams) ? - &options[i] : NULL); - } while (err > 0 && !has_codec_parameters(st)); + do { + err = try_decode_frame(st, &empty_pkt, + (options && i < orig_nb_streams) ? + &options[i] : NULL); + } while (err > 0 && !has_codec_parameters(st)); } if (err < 0) { |