Browse Source

fix indentation

Originally committed as revision 20300 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Baptiste Coudurier 15 years ago
parent
commit
c3a58c4efc
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      libavformat/metadata.c

+ 7
- 7
libavformat/metadata.c View File

@@ -107,16 +107,16 @@ static void metadata_conv(AVMetadata **pm, const AVMetadataConv *d_conv,
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);
}


Loading…
Cancel
Save