Mercurial > libavformat.hg
changeset 5308:c6028d6c93b0 libavformat
fix indentation
author | bcoudurier |
---|---|
date | Sun, 18 Oct 2009 23:27:23 +0000 |
parents | 99be640a6672 |
children | a011470132ca |
files | metadata.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/metadata.c Sun Oct 18 22:43:19 2009 +0000 +++ b/metadata.c Sun Oct 18 23:27:23 2009 +0000 @@ -107,16 +107,16 @@ 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); }