diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-09-30 23:33:05 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-09-30 23:33:43 +0200 |
commit | 812010c17e237e8cb87950c2380c6cbf049317b9 (patch) | |
tree | 8f71ce87a135f5d4039b79663b03e32795d9f476 /libavcodec/g723_1.c | |
parent | 3b0e242825104941a190bf9fc995a329b52bd109 (diff) | |
download | ffmpeg-812010c17e237e8cb87950c2380c6cbf049317b9.tar.gz |
Remove unused variable.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r-- | libavcodec/g723_1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c index b1679983e3..5eed0b7c73 100644 --- a/libavcodec/g723_1.c +++ b/libavcodec/g723_1.c @@ -209,7 +209,6 @@ static int normalize_bits(int num, int width) { int i = 0; int bits = (width) ? 31 : 15; - int limit = 1 << (bits - 1); if (num) { if (num == -1) |