Commit 54ddabf6 authored by aurel's avatar aurel

cosmetics: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16955 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fafa24ba
...@@ -555,14 +555,14 @@ static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf) ...@@ -555,14 +555,14 @@ static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
count++; count++;
} }
if ((tag = av_metadata_get(s->metadata, "genre", NULL, 0))) { if ((tag = av_metadata_get(s->metadata, "genre", NULL, 0))) {
for(i = 0; i <= ID3v1_GENRE_MAX; i++) { for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
if (!strcasecmp(tag->value, id3v1_genre_str[i])) { if (!strcasecmp(tag->value, id3v1_genre_str[i])) {
buf[127] = i; buf[127] = i;
count++; count++;
break; break;
}
} }
} }
}
return count; return count;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment