[FFmpeg-cvslog] r20300 - trunk/libavformat/metadata.c

bcoudurier subversion
Mon Oct 19 01:27:24 CEST 2009


Author: bcoudurier
Date: Mon Oct 19 01:27:23 2009
New Revision: 20300

Log:
fix indentation

Modified:
   trunk/libavformat/metadata.c

Modified: trunk/libavformat/metadata.c
==============================================================================
--- trunk/libavformat/metadata.c	Mon Oct 19 01:06:52 2009	(r20299)
+++ trunk/libavformat/metadata.c	Mon Oct 19 01:27:23 2009	(r20300)
@@ -107,16 +107,16 @@ static void metadata_conv(AVMetadata **p
         if (s_conv != d_conv) {
             if (s_conv)
                 for (sc=s_conv; sc->native; sc++)
-                if (!strcasecmp(key, sc->native)) {
-                    key = sc->generic;
-                    break;
-                }
+                    if (!strcasecmp(key, sc->native)) {
+                        key = sc->generic;
+                        break;
+                    }
             if (d_conv)
                 for (dc=d_conv; dc->native; dc++)
                     if (!strcasecmp(key, dc->generic)) {
-                    key = dc->native;
-                    break;
-                }
+                        key = dc->native;
+                        break;
+                    }
         }
         av_metadata_set(&dst, key, mtag->value);
     }



More information about the ffmpeg-cvslog mailing list