Commit 994dab4f authored by mru's avatar mru

remove duplicate Vorbis comment tag handling


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10704 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ce4801f5
......@@ -102,10 +102,6 @@ vorbis_comment(AVFormatContext * as, uint8_t *buf, int size)
as->track = atoi(ct);
else if (!strcmp(tt, "ALBUM"))
av_strlcpy(as->album, ct, sizeof(as->album));
else if (!strcmp(tt, "GENRE"))
av_strlcpy(as->genre, ct, sizeof(as->genre));
else if (!strcmp(tt, "DESCRIPTION"))
av_strlcpy(as->comment, ct, sizeof(as->comment));
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment