Browse Source

Remove unused variable in init_mv_penalty_and_fcode() found by CSA.

Originally committed as revision 18557 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
01d83278e9
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/h263.c

+ 1
- 2
libavcodec/h263.c View File

@@ -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)


Loading…
Cancel
Save