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
Drop redundant assignment and variable
Originally committed as revision 9502 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Kostya Shishkov
18 years ago
parent
c0de00dac5
commit
3662aa766f
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
libavcodec/vc1.c
+ 1
- 3
libavcodec/vc1.c
View File
@@ -89,9 +89,7 @@ static int get_prefix(GetBitContext *gb, int stop, int len)
}
static inline int decode210(GetBitContext *gb){
int n;
n = get_bits1(gb);
if (n == 1)
if (get_bits1(gb))
return 0;
else
return 2 - get_bits1(gb);
Write
Preview
Loading…
Cancel
Save