diff options
author | James Almer <jamrial@gmail.com> | 2013-07-18 05:08:07 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-18 12:03:21 +0200 |
commit | 630fc7dcfc31ad630405dbe44ade53ec83be0ae3 (patch) | |
tree | f8e93d528d373aac7f79d527afc22bbdf7f0dae4 | |
parent | 562fb9c54099ba854dbf19ab38db8542d8bae71f (diff) | |
download | ffmpeg-630fc7dcfc31ad630405dbe44ade53ec83be0ae3.tar.gz |
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 <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/vorbiscomment.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 } }; |