comparison vc1.c @ 5228:3d124a8b7a76 libavcodec

Drop redundant assignment and variable
author kostya
date Fri, 06 Jul 2007 14:11:29 +0000
parents 2b72f9bc4f06
children 4623928e3b9e
comparison
equal deleted inserted replaced
5227:431eef69a62f 5228:3d124a8b7a76
87 return limit; 87 return limit;
88 #endif 88 #endif
89 } 89 }
90 90
91 static inline int decode210(GetBitContext *gb){ 91 static inline int decode210(GetBitContext *gb){
92 int n; 92 if (get_bits1(gb))
93 n = get_bits1(gb);
94 if (n == 1)
95 return 0; 93 return 0;
96 else 94 else
97 return 2 - get_bits1(gb); 95 return 2 - get_bits1(gb);
98 } 96 }
99 97