Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-28 15:01:41 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-28 15:02:19 +0400
commit579e2b2874aeaa9cfdeed1fd1408767e33a63029 (patch)
tree021938ef7311d1439e74b710d721a8668c41d712 /libavformat/oggparsevp8.c
parent1c0ce2d4e0e70fcc42aa73fb5284f621025bb6c4 (diff)
parent23f741f79327e31be7b2a75ebb2e02111e06e52f (diff)
Merge commit '23f741f79327e31be7b2a75ebb2e02111e06e52f'
* commit '23f741f79327e31be7b2a75ebb2e02111e06e52f': matroskadec: parse the channel layout mask for FLAC Conflicts: libavformat/oggparsevorbis.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggparsevp8.c')
-rw-r--r--libavformat/oggparsevp8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevp8.c b/libavformat/oggparsevp8.c
index 89295c86a6..b3dd7ab840 100644
--- a/libavformat/oggparsevp8.c
+++ b/libavformat/oggparsevp8.c
@@ -64,7 +64,7 @@ static int vp8_header(AVFormatContext *s, int idx)
case 0x02:
if (p[6] != 0x20)
return AVERROR_INVALIDDATA;
- ff_vorbis_comment(s, &st->metadata, p + 7, os->psize - 7);
+ ff_vorbis_comment(s, &st->metadata, p + 7, os->psize - 7, 1);
break;
default:
av_log(s, AV_LOG_ERROR, "Unknown VP8 header type 0x%02X\n", p[5]);