Commit d086a1e3 authored by michael's avatar michael

Remove unused variable in init_mv_penalty_and_fcode() found by CSA.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18557 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e925fe10
...@@ -1820,10 +1820,9 @@ static void init_mv_penalty_and_fcode(MpegEncContext *s) ...@@ -1820,10 +1820,9 @@ static void init_mv_penalty_and_fcode(MpegEncContext *s)
if(mv==0) len= mvtab[0][1]; if(mv==0) len= mvtab[0][1];
else{ else{
int val, bit_size, range, code; int val, bit_size, code;
bit_size = f_code - 1; bit_size = f_code - 1;
range = 1 << bit_size;
val=mv; val=mv;
if (val < 0) 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