[FFmpeg-cvslog] matroskadec: matroska_parse_rm_audio: remove unused parameter
Michael Niedermayer
git at videolan.org
Fri Sep 21 00:25:24 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Sep 20 23:43:20 2012 +0200| [a6ec1e49f6171bc37a4fb001225f5885e20a1f4e] | committer: Michael Niedermayer
matroskadec: matroska_parse_rm_audio: remove unused parameter
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a6ec1e49f6171bc37a4fb001225f5885e20a1f4e
---
libavformat/matroskadec.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index f4d7071..ef2f174 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;
More information about the ffmpeg-cvslog
mailing list