From 630fc7dcfc31ad630405dbe44ade53ec83be0ae3 Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 18 Jul 2013 05:08:07 -0300 Subject: [PATCH] vorbiscomment: Add DESCRIPTION to ff_vorbiscomment_metadata_conv It's the official (or recommended) name for comment/description entries. See https://www.xiph.org/vorbis/doc/v-comment.html Signed-off-by: James Almer Signed-off-by: Michael Niedermayer --- libavformat/vorbiscomment.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/vorbiscomment.c b/libavformat/vorbiscomment.c index 9b38e6a791..f17a0c1d13 100644 --- a/libavformat/vorbiscomment.c +++ b/libavformat/vorbiscomment.c @@ -34,6 +34,7 @@ const AVMetadataConv ff_vorbiscomment_metadata_conv[] = { { "ALBUMARTIST", "album_artist"}, { "TRACKNUMBER", "track" }, { "DISCNUMBER", "disc" }, + { "DESCRIPTION", "comment" }, { 0 } };