summaryrefslogtreecommitdiff
path: root/libavformat/mp3dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-01 21:03:33 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-01 21:21:10 +0100
commitdbfb2c1abfe8f70ed958d84039f20cf3409c05ec (patch)
tree2555991d5fa9e157ca748cca4f923c91f8a6627d /libavformat/mp3dec.c
parent9dba3f8f09834b68f4671de37ee67a95c09c4378 (diff)
avformat/mp3dec: Remove unused variable
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r--libavformat/mp3dec.c2
1 files changed, 1 insertions, 1 deletions
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;