Mercurial > libavformat.hg
changeset 4455:01e54ebe6ef7 libavformat
use new metadata API in ogg/vorbis demuxer
author | aurel |
---|---|
date | Wed, 11 Feb 2009 23:34:57 +0000 |
parents | 7d1460900c59 |
children | 833d30447d64 |
files | oggparsevorbis.c |
diffstat | 1 files changed, 1 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/oggparsevorbis.c Wed Feb 11 21:11:19 2009 +0000 +++ b/oggparsevorbis.c Wed Feb 11 23:34:57 2009 +0000 @@ -81,21 +81,7 @@ memcpy(ct, v, vl); ct[vl] = 0; - // took from Vorbis_I_spec - if (!strcmp(tt, "AUTHOR") || !strcmp(tt, "ARTIST")) - av_strlcpy(as->author, ct, sizeof(as->author)); - else if (!strcmp(tt, "TITLE")) - av_strlcpy(as->title, ct, sizeof(as->title)); - else if (!strcmp(tt, "COPYRIGHT")) - av_strlcpy(as->copyright, ct, sizeof(as->copyright)); - else if (!strcmp(tt, "DESCRIPTION")) - av_strlcpy(as->comment, ct, sizeof(as->comment)); - else if (!strcmp(tt, "GENRE")) - av_strlcpy(as->genre, ct, sizeof(as->genre)); - else if (!strcmp(tt, "TRACKNUMBER")) - as->track = atoi(ct); - else if (!strcmp(tt, "ALBUM")) - av_strlcpy(as->album, ct, sizeof(as->album)); + av_metadata_set(&as->metadata, tt, ct); } }