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

kostya subversion at mplayerhq.hu
Sat Jul 14 18:54:30 CEST 2007


Author: kostya
Date: Sat Jul 14 18:54:30 2007
New Revision: 408

Log:
Use other temp variable as x will be dropped soon

Modified:
   rv40/rv40.c

Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c	(original)
+++ rv40/rv40.c	Sat Jul 14 18:54:30 2007
@@ -577,9 +577,9 @@ static int rv40_decode_macroblock(RV40De
         chroma_vlc = 0;
         luma_vlc   = 1;
     }else{
-        x = get_bits(gb, 2);
+        q = get_bits(gb, 2);
         for(i = 0; i < 16; i++)
-            intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = x;
+            intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = q;
         chroma_vlc = 0;
         luma_vlc   = 2;
     }



More information about the FFmpeg-soc mailing list