Drop redundant assignment and variable
Originally committed as revision 9502 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c0de00dac5
commit
3662aa766f
@ -89,9 +89,7 @@ static int get_prefix(GetBitContext *gb, int stop, int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline int decode210(GetBitContext *gb){
|
static inline int decode210(GetBitContext *gb){
|
||||||
int n;
|
if (get_bits1(gb))
|
||||||
n = get_bits1(gb);
|
|
||||||
if (n == 1)
|
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
return 2 - get_bits1(gb);
|
return 2 - get_bits1(gb);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user