Browse Source

cosmetics: indentation

Originally committed as revision 16955 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
ee56cab3f3
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavformat/mp3.c

+ 6
- 6
libavformat/mp3.c 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++) {
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; return count;
} }




Loading…
Cancel
Save