diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-02 22:14:28 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-02 22:14:28 +0000 |
commit | ee56cab3f344bb1370cae59fdff27904f74e6a4e (patch) | |
tree | 848bdc8b1708e59214eab3dc4ac299a25f826e9b | |
parent | b182eeb08bd9f6625daf6122ba8d759305e840f2 (diff) | |
download | ffmpeg-ee56cab3f344bb1370cae59fdff27904f74e6a4e.tar.gz |
cosmetics: indentation
Originally committed as revision 16955 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mp3.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c index 857661ba60..ba3baf1423 100644 --- a/libavformat/mp3.c +++ b/libavformat/mp3.c @@ -555,14 +555,14 @@ static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf) 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; } |