mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 18:02:11 +00:00
fix indentation
Originally committed as revision 20300 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
f6a1fa850a
commit
c3a58c4efc
@ -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…
Reference in New Issue
Block a user