X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Foggparseogm.c;h=913282ab36e3e44fd0f5007a39a94a8b36dc56e4;hb=8895bf7b78650c0c21c88cec0484e138ec511a4b;hp=74d9e1054d2815faf7d6b7d930ac96fdead64953;hpb=23f741f79327e31be7b2a75ebb2e02111e06e52f;p=ffmpeg diff --git a/libavformat/oggparseogm.c b/libavformat/oggparseogm.c index 74d9e1054d2..913282ab36e 100644 --- a/libavformat/oggparseogm.c +++ b/libavformat/oggparseogm.c @@ -97,7 +97,7 @@ ogm_header(AVFormatContext *s, int idx) } else if (bytestream2_peek_byte(&p) == 3) { bytestream2_skip(&p, 7); if (bytestream2_get_bytes_left(&p) > 1) - ff_vorbis_comment(s, &st->metadata, p.buffer, bytestream2_get_bytes_left(&p) - 1, 1); + ff_vorbis_stream_comment(s, st, p.buffer, bytestream2_get_bytes_left(&p) - 1); } return 1;