[FFmpeg-cvslog] matroskaenc: simplify mkv_check_tag()

Michael Niedermayer git at videolan.org
Wed Jul 17 13:58:20 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Jul 17 13:30:36 2013 +0200| [066111bf19518a9f4d836991b34dbfc5ab72a41a] | committer: Michael Niedermayer

matroskaenc: simplify mkv_check_tag()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=066111bf19518a9f4d836991b34dbfc5ab72a41a
---

 libavformat/matroskaenc.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 2c414e8..9b825f7 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -872,13 +872,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)



More information about the ffmpeg-cvslog mailing list