diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2008-07-07 08:29:08 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2008-07-07 08:29:08 +0000 |
commit | 7769875db3e35e91bf7e8a3084e8882e9a7bf599 (patch) | |
tree | cb193b3ac715938963bd4cc66915881809c07587 /libavcodec/nellymoser.c | |
parent | 92b2bc59c922ec499a91990b76b7af343b0e8ba1 (diff) | |
download | ffmpeg-7769875db3e35e91bf7e8a3084e8882e9a7bf599.tar.gz |
redundant assignment found by Clang
Originally committed as revision 14096 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nellymoser.c')
-rw-r--r-- | libavcodec/nellymoser.c | 1 |
1 files changed, 0 insertions, 1 deletions
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++) |