1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

cosmetics: indentation

Originally committed as revision 16955 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2009-02-02 22:14:28 +00:00
parent b182eeb08b
commit ee56cab3f3

View File

@ -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;
} }