From dbfb2c1abfe8f70ed958d84039f20cf3409c05ec Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 1 Jan 2016 21:03:33 +0100 Subject: [PATCH] avformat/mp3dec: Remove unused variable Signed-off-by: Michael Niedermayer --- libavformat/mp3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 0a984d7f31..c76b21ebd6 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -64,7 +64,7 @@ static int check(AVIOContext *pb, int64_t pos, uint32_t *header); static int mp3_read_probe(AVProbeData *p) { int max_frames, first_frames = 0; - int fsize, frames, ret; + int frames, ret; uint32_t header; const uint8_t *buf, *buf0, *buf2, *end;