summaryrefslogtreecommitdiff
path: root/libavformat/oggparsevorbis.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-10-10 22:58:16 +0000
committerMåns Rullgård <mans@mansr.com>2007-10-10 22:58:16 +0000
commit62f2c069b8da6d71896e8ef96b333a3a3d446167 (patch)
tree93dfb53f2dffcd9c87168256b8a5dc6b10a75315 /libavformat/oggparsevorbis.c
parent2fe279f9f9116bf9afd9f11142e17b140654c433 (diff)
remove duplicate Vorbis comment tag handling
Originally committed as revision 10704 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r--libavformat/oggparsevorbis.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c
index a723bb2eca..be8dd3fca6 100644
--- a/libavformat/oggparsevorbis.c
+++ b/libavformat/oggparsevorbis.c
@@ -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));
}
}