# HG changeset patch # User kostya # Date 1183731089 0 # Node ID 3d124a8b7a76aa386e529f1f9432ec4ddbe93807 # Parent 431eef69a62f8019d6f2ad55593c94a255548a41 Drop redundant assignment and variable diff -r 431eef69a62f -r 3d124a8b7a76 vc1.c --- a/vc1.c Fri Jul 06 11:47:02 2007 +0000 +++ b/vc1.c Fri Jul 06 14:11:29 2007 +0000 @@ -89,9 +89,7 @@ } 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);