Mercurial > libavformat.hg
changeset 4356:459c0242194e libavformat
cosmetics: indentation
author | aurel |
---|---|
date | Mon, 02 Feb 2009 22:14:28 +0000 |
parents | d8a6a01679be |
children | 10e0d8797a43 |
files | mp3.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/mp3.c Mon Feb 02 22:13:03 2009 +0000 +++ b/mp3.c Mon Feb 02 22:14:28 2009 +0000 @@ -555,14 +555,14 @@ count++; } if ((tag = av_metadata_get(s->metadata, "genre", NULL, 0))) { - for(i = 0; i <= ID3v1_GENRE_MAX; i++) { - if (!strcasecmp(tag->value, id3v1_genre_str[i])) { - buf[127] = i; - count++; - break; + for(i = 0; i <= ID3v1_GENRE_MAX; i++) { + if (!strcasecmp(tag->value, id3v1_genre_str[i])) { + buf[127] = i; + count++; + break; + } } } - } return count; }