Commit 01d83278 authored by Michael Niedermayer's avatar Michael Niedermayer

Remove unused variable in init_mv_penalty_and_fcode() found by CSA.

Originally committed as revision 18557 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b33d75fd
......@@ -1820,10 +1820,9 @@ static void init_mv_penalty_and_fcode(MpegEncContext *s)
if(mv==0) len= mvtab[0][1];
else{
int val, bit_size, range, code;
int val, bit_size, code;
bit_size = f_code - 1;
range = 1 << bit_size;
val=mv;
if (val < 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment