From 7769875db3e35e91bf7e8a3084e8882e9a7bf599 Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Mon, 7 Jul 2008 08:29:08 +0000 Subject: [PATCH] redundant assignment found by Clang Originally committed as revision 14096 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/nellymoser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/nellymoser.c b/libavcodec/nellymoser.c index 6e16f6f20c..75ae5d787c 100644 --- a/libavcodec/nellymoser.c +++ b/libavcodec/nellymoser.c @@ -147,7 +147,6 @@ void ff_nelly_get_sample_bits(const float *buf, int *bits) bitsum = sum_bits(sbuf, shift_saved, small_off); if (bitsum != NELLY_DETAIL_BITS) { - shift = 0; off = bitsum - NELLY_DETAIL_BITS; for(shift=0; FFABS(off) <= 16383; shift++)