Commit 8ad67255 authored by kostya's avatar kostya

Drop redundant assignment and variable

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9502 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f040b707
...@@ -89,9 +89,7 @@ static int get_prefix(GetBitContext *gb, int stop, int len) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment