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

kostya subversion at mplayerhq.hu
Fri Aug 17 09:33:49 CEST 2007


Author: kostya
Date: Fri Aug 17 09:33:49 2007
New Revision: 902

Log:
10l Fix reading of some standard heights

Modified:
   rv40/rv40.c

Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c	(original)
+++ rv40/rv40.c	Fri Aug 17 09:33:49 2007
@@ -508,7 +508,7 @@ static inline int get_dimension(GetBitCo
     t = get_bits(gb, 3);
     val = dim1[t];
     if(!val && dim2)
-        val = dim2[(t | get_bits1(gb)) & 3];
+        val = dim2[(t*2 | get_bits1(gb)) & 3];
     if(!val){
         do{
             t = get_bits(gb, 8);



More information about the FFmpeg-soc mailing list