提交 660822f0 编写于 作者: A Alex Converse

ffmpeg.c: Don't use NULL for integer metadata flags.

Originally committed as revision 22205 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 e2720b6b
......@@ -1850,7 +1850,7 @@ static int av_encode(AVFormatContext **output_files,
while ((t = av_metadata_get(ist->st->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
if (lang && !strcmp(t->key, "language"))
continue;
av_metadata_set2(&ost->st->metadata, t->key, t->value, NULL);
av_metadata_set2(&ost->st->metadata, t->key, t->value, 0);
}
ost->st->disposition = ist->st->disposition;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册