# HG changeset patch # User Tony Vroon # Date 1240088058 -3600 # Node ID eb7348ab56d26117581432cd10debc8912ef02f6 # Parent 919ec26c66c3a631a3e4380e33a19b7a5d367e21 Remove boolean has_xing, we only assigned it but never read it. Code analysis, unique ID CB4bbZ. diff -r 919ec26c66c3 -r eb7348ab56d2 src/madplug/decoder.c --- a/src/madplug/decoder.c Sat Apr 18 21:38:16 2009 +0100 +++ b/src/madplug/decoder.c Sat Apr 18 21:54:18 2009 +0100 @@ -85,7 +85,6 @@ int tagsize = 0; unsigned char buffer[BUFFER_SIZE]; struct mad_frame frame; /* to read xing data */ - gboolean has_xing = FALSE; guint bitrate_frames = 0; double xing_bitrate = 0.0; double accum_bitrate = 0.0; @@ -189,7 +188,6 @@ } if (xing_parse(&info->xing, stream.anc_ptr, stream.anc_bitlen) == 0) { AUDDBG("xing header found\n"); - has_xing = TRUE; info->vbr = TRUE; /* otherwise xing header would have been 'Info' */ AUDDBG("xing: bytes = %ld frames = %ld\n", info->xing.bytes, info->xing.frames);