This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
b33d75fd80
commit
01d83278e9
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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];
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)
Write
Preview
Loading…
Cancel
Save