mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg.c: Don't use NULL for integer metadata flags.
Originally committed as revision 22205 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e2720b6b1e
commit
660822f0ae
2
ffmpeg.c
2
ffmpeg.c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue