mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
Remove unused variable in init_mv_penalty_and_fcode() found by CSA.
Originally committed as revision 18557 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b33d75fd80
commit
01d83278e9
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user