From 67b1156fe8d80c1858a222e85c5be75e0f040ea1 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 28 Jul 2012 12:20:08 +0200 Subject: mp3dec: remove a pointless local variable. --- libavformat/mp3dec.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libavformat/mp3dec.c') diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 4344e8efcf..11e684d7f3 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -185,11 +185,9 @@ static int mp3_read_header(AVFormatContext *s) static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt) { - int ret, size; + int ret; - size= MP3_PACKET_SIZE; - - ret= av_get_packet(s->pb, pkt, size); + ret = av_get_packet(s->pb, pkt, MP3_PACKET_SIZE); pkt->stream_index = 0; if (ret <= 0) { -- cgit v1.2.3