[Sumover-dev] [svn commit] r3809 - vic/trunk/codec

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Wed Sep 6 17:04:16 BST 2006


Author: ucacsva
Date: Wed Sep  6 17:03:40 2006
New Revision: 3809

Modified:
   vic/trunk/codec/encoder-h261as.cpp

Log:
Use u_int32_t instead of uint32_t, which Windows doesn't like (it's probably a good idea to clean up all these typedefs in the future, too).

Modified: vic/trunk/codec/encoder-h261as.cpp
==============================================================================
--- vic/trunk/codec/encoder-h261as.cpp	(original)
+++ vic/trunk/codec/encoder-h261as.cpp	Wed Sep  6 17:03:40 2006
@@ -612,7 +612,7 @@
 					  loff_table[blkno], 
 					  coff_table[blkno], 
 					  CR_STATE(crvec[blkno]));
-				uint32_t cbits = ((bc - bs) << 3) + nbb;
+				u_int32_t cbits = ((bc - bs) << 3) + nbb;
 				if (cbits > ec) {
 					pktbuf *npb;
 					npb = pool_->alloc(vf->ts_, 



More information about the Sumover-dev mailing list