diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-10-18 20:25:48 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-10-18 20:25:48 +0000 |
commit | 7857d3ccf6f170fec47ff288010d2f5522294da6 (patch) | |
tree | 71ee68732db757c634873fdce0da713f78288e9a /libavformat/utils.c | |
parent | 45a49840f329c45ea3eb8ad29f5d8e52c6cc4dde (diff) | |
download | ffmpeg-7857d3ccf6f170fec47ff288010d2f5522294da6.tar.gz |
fix indentation and add braces
Originally committed as revision 20289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index e38a01c17a..9beec720b8 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2949,9 +2949,10 @@ void dump_format(AVFormatContext *ic, for(k=0; k<ic->programs[j]->nb_stream_indexes; k++) dump_stream_format(ic, ic->programs[j]->stream_index[k], index, is_output); } - } else - for(i=0;i<ic->nb_streams;i++) - dump_stream_format(ic, i, index, is_output); + } else { + for(i=0;i<ic->nb_streams;i++) + dump_stream_format(ic, i, index, is_output); + } if (ic->metadata) { AVMetadataTag *tag=NULL; av_log(NULL, AV_LOG_INFO, " Metadata\n"); |