]> git.sesse.net Git - ffmpeg/commitdiff
doc/examples/metadata: fix the example can't dump FLV metadata
authorJun Zhao <barryjzhao@tencent.com>
Wed, 3 Apr 2019 01:13:52 +0000 (09:13 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Sun, 7 Apr 2019 02:18:42 +0000 (10:18 +0800)
fix the example can't dump FLV metadata.

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
doc/examples/metadata.c

index e330d077a9393c2ea3ac3854254b7521b5927f61..b6cfa6bd3637d5ad16ba3fbd77e1f5fddde93c3e 100644 (file)
@@ -47,6 +47,11 @@ int main (int argc, char **argv)
     if ((ret = avformat_open_input(&fmt_ctx, argv[1], NULL, NULL)))
         return ret;
 
+    if ((ret = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
+        av_log(NULL, AV_LOG_ERROR, "Cannot find stream information\n");
+        return ret;
+    }
+
     while ((tag = av_dict_get(fmt_ctx->metadata, "", tag, AV_DICT_IGNORE_SUFFIX)))
         printf("%s=%s\n", tag->key, tag->value);