Module: ffmpeg
Branch: master
Commit: 5cbd3b5d915a76888b83af5c1fd3df31bd20a5be

Author: Anton Khirnov <[email protected]>
Date:   Wed Feb  9 21:56:00 2011 +0100

asfdec: don't export empty metadata

Signed-off-by: Ronald S. Bultje <[email protected]>

---

 libavformat/asfdec.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index 8e712a6..2d43ac2 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -178,7 +178,8 @@ static void get_tag(AVFormatContext *s, const char *key, 
int type, int len)
         av_log(s, AV_LOG_DEBUG, "Unsupported value type %d in tag %s.\n", 
type, key);
         goto finish;
     }
-    av_metadata_set2(&s->metadata, key, value, 0);
+    if (*value)
+        av_metadata_set2(&s->metadata, key, value, 0);
 finish:
     av_freep(&value);
     url_fseek(s->pb, off + len, SEEK_SET);

_______________________________________________
ffmpeg-commits mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-commits

Reply via email to