diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-14 00:04:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-14 00:05:49 +0200 |
commit | a8db787932ad71ac4f77b61357b695c3b35a283d (patch) | |
tree | e629c6cefe3230012fdbcf145f522b13b1fcc367 /libavformat/oggparseopus.c | |
parent | a90364d001eb8289e1c423bf9884bb0affc3f662 (diff) | |
parent | db68ef898a3802e51b6f41fd600d0d46d058e3f8 (diff) | |
download | ffmpeg-a8db787932ad71ac4f77b61357b695c3b35a283d.tar.gz |
Merge commit 'db68ef898a3802e51b6f41fd600d0d46d058e3f8'
* commit 'db68ef898a3802e51b6f41fd600d0d46d058e3f8':
ogg: update event_flags with STREAM_/METADATA_UPDATED whenever metadata changes.
Conflicts:
libavformat/oggparsevorbis.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggparseopus.c')
-rw-r--r-- | libavformat/oggparseopus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparseopus.c b/libavformat/oggparseopus.c index 7dfb13d5d2..c8b02fab4d 100644 --- a/libavformat/oggparseopus.c +++ b/libavformat/oggparseopus.c @@ -78,7 +78,7 @@ static int opus_header(AVFormatContext *avf, int idx) if (priv->need_comments) { if (os->psize < 8 || memcmp(packet, "OpusTags", 8)) return AVERROR_INVALIDDATA; - ff_vorbis_comment(avf, &st->metadata, packet + 8, os->psize - 8, 1); + ff_vorbis_stream_comment(avf, st, packet + 8, os->psize - 8); priv->need_comments--; return 1; } |