diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-03-04 11:27:39 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-03-04 11:27:39 +0000 |
commit | 660822f0aebf37a8b3a9a89e0fb27096f17a5a42 (patch) | |
tree | 6a08ebf3947f25637fefc32d5a688a54cc50a348 /ffmpeg.c | |
parent | e2720b6b1e868f469d5a6b3b29f7fa26c75d34be (diff) | |
download | ffmpeg-660822f0aebf37a8b3a9a89e0fb27096f17a5a42.tar.gz |
ffmpeg.c: Don't use NULL for integer metadata flags.
Originally committed as revision 22205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |