[FFmpeg-cvslog] r16955 - trunk/libavformat/mp3.c

aurel subversion
Mon Feb 2 23:14:28 CET 2009


Author: aurel
Date: Mon Feb  2 23:14:28 2009
New Revision: 16955

Log:
cosmetics: indentation

Modified:
   trunk/libavformat/mp3.c

Modified: trunk/libavformat/mp3.c
==============================================================================
--- trunk/libavformat/mp3.c	Mon Feb  2 23:13:03 2009	(r16954)
+++ trunk/libavformat/mp3.c	Mon Feb  2 23:14:28 2009	(r16955)
@@ -555,14 +555,14 @@ static int id3v1_create_tag(AVFormatCont
         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;
 }
 




More information about the ffmpeg-cvslog mailing list