matroskaenc: simplify mkv_check_tag()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 066111bf19)
This commit is contained in:
Michael Niedermayer
2013-07-17 13:30:36 +02:00
committed by James Almer
parent 1b16302e54
commit 979f97a861

View File

@@ -800,13 +800,12 @@ static int mkv_write_tag(AVFormatContext *s, AVDictionary *m, unsigned int eleme
static int mkv_check_tag(AVDictionary *m)
{
AVDictionaryEntry *t = NULL;
int ret = 0;
while ((t = av_dict_get(m, "", t, AV_DICT_IGNORE_SUFFIX)))
if (av_strcasecmp(t->key, "title") && av_strcasecmp(t->key, "stereo_mode"))
ret++;
return 1;
return ret;
return 0;
}
static int mkv_write_tags(AVFormatContext *s)