diff options
author | Marton Balint <cus@passwd.hu> | 2016-02-28 03:11:34 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-03-03 01:37:18 +0100 |
commit | 28fbdece79d2f8d0df6669bbf577214de153a0bc (patch) | |
tree | 08ae7e11b2631a102fb1d31e327c2644e79e0a4b /libavformat/nutenc.c | |
parent | e7dd97b5d8cd6ea150446591f37a5946e8ab7cfb (diff) | |
download | ffmpeg-28fbdece79d2f8d0df6669bbf577214de153a0bc.tar.gz |
avformat: use ff_standardize_creation_time for formats writing all format string metadata
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index d8af5ea001..3a415a4584 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -496,6 +496,7 @@ static int write_globalinfo(NUTContext *nut, AVIOContext *bc) if (ret < 0) return ret; + ff_standardize_creation_time(s); while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) count += add_info(dyn_bc, t->key, t->value); |