[FFmpeg-soc] [soc]: r324 - rv40/rv40.c

kostya subversion at mplayerhq.hu
Fri Jul 6 16:15:20 CEST 2007


Author: kostya
Date: Fri Jul  6 16:15:19 2007
New Revision: 324

Log:
Drop redundant assignment and variable

Modified:
   rv40/rv40.c

Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c	(original)
+++ rv40/rv40.c	Fri Jul  6 16:15:19 2007
@@ -376,9 +376,7 @@ static inline void rv40_decode_block(DCT
  */
 
 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);



More information about the FFmpeg-soc mailing list