From a6ec1e49f6171bc37a4fb001225f5885e20a1f4e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 20 Sep 2012 23:43:20 +0200 Subject: [PATCH] matroskadec: matroska_parse_rm_audio: remove unused parameter Signed-off-by: Michael Niedermayer --- libavformat/matroskadec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index f4d7071352..ef2f1748af 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -1994,7 +1994,7 @@ static int matroska_parse_rm_audio(MatroskaDemuxContext *matroska, MatroskaTrack *track, AVStream *st, uint8_t *data, int size, - uint64_t timecode, uint64_t duration, + uint64_t timecode, int64_t pos) { int a = st->codec->block_align; @@ -2233,7 +2233,7 @@ static int matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, st->codec->block_align && track->audio.sub_packet_size) { res = matroska_parse_rm_audio(matroska, track, st, data, size, - timecode, lace_duration, pos); + timecode, pos); if (res) goto end;