diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-01 21:03:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-01 21:21:10 +0100 |
commit | dbfb2c1abfe8f70ed958d84039f20cf3409c05ec (patch) | |
tree | 2555991d5fa9e157ca748cca4f923c91f8a6627d | |
parent | 9dba3f8f09834b68f4671de37ee67a95c09c4378 (diff) | |
download | ffmpeg-dbfb2c1abfe8f70ed958d84039f20cf3409c05ec.tar.gz |
avformat/mp3dec: Remove unused variable
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mp3dec.c | 2 |
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; |