summaryrefslogtreecommitdiff
path: root/libavformat/oggparsespeex.c
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:44 +0000
committerDavid Conrad <lessen42@gmail.com>2010-03-12 05:16:44 +0000
commitb53cde48bdc807fe5126eee7dc116812c6607974 (patch)
treeb336762104972379b9ac19793af70763c5f0bc47 /libavformat/oggparsespeex.c
parente4d2d8c5d720d84997a24178acd9553f23077c03 (diff)
oggdec: Metadata is per-stream; don't merge multiple streams' together
Originally committed as revision 22473 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggparsespeex.c')
-rw-r--r--libavformat/oggparsespeex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsespeex.c b/libavformat/oggparsespeex.c
index 05a998b228..9ad5397af4 100644
--- a/libavformat/oggparsespeex.c
+++ b/libavformat/oggparsespeex.c
@@ -75,7 +75,7 @@ static int speex_header(AVFormatContext *s, int idx) {
st->time_base.num = 1;
st->time_base.den = st->codec->sample_rate;
} else
- ff_vorbis_comment(s, p, os->psize);
+ ff_vorbis_comment(s, &st->metadata, p, os->psize);
spxp->seq++;
return 1;