summaryrefslogtreecommitdiff
path: root/libavformat/libopenmpt.c
diff options
context:
space:
mode:
authorJörn Heusipp <osmanx@problemloesungsmaschine.de>2016-07-17 15:37:14 +0200
committerJosh de Kock <josh@itanimul.li>2016-07-21 02:47:35 +0100
commit64131b87d64ddc5583522e7a181e35c66d12025a (patch)
treeafa6a509e947f5e58aa7db222347caecb339960c /libavformat/libopenmpt.c
parent840df1f1931499ba7a8b388115cff37f0b82ee48 (diff)
downloadffmpeg-64131b87d64ddc5583522e7a181e35c66d12025a.tar.gz
libopenmpt: Add "date" to metadata.
Signed-off-by: Jörn Heusipp <osmanx@problemloesungsmaschine.de> Signed-off-by: Josh de Kock <josh@itanimul.li>
Diffstat (limited to 'libavformat/libopenmpt.c')
-rw-r--r--libavformat/libopenmpt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/libopenmpt.c b/libavformat/libopenmpt.c
index bad34b958a..e7091ef9fc 100644
--- a/libavformat/libopenmpt.c
+++ b/libavformat/libopenmpt.c
@@ -95,6 +95,7 @@ static int read_header_openmpt(AVFormatContext *s)
add_meta(s, "title", openmpt_module_get_metadata(openmpt->module, "title"));
add_meta(s, "encoder", openmpt_module_get_metadata(openmpt->module, "tracker"));
add_meta(s, "comment", openmpt_module_get_metadata(openmpt->module, "message"));
+ add_meta(s, "date", openmpt_module_get_metadata(openmpt->module, "date"));
if (openmpt->subsong >= openmpt_module_get_num_subsongs(openmpt->module)) {
openmpt_module_destroy(openmpt->module);