[Sumover-dev] [svn commit] r4888 - vic/branches/mpeg4/video

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu Sep 16 03:41:07 BST 2010


Author: douglask
Date: Thu Sep 16 03:41:07 2010
New Revision: 4888

Modified:
   vic/branches/mpeg4/video/grabber.cpp

Log:
Current mpeg4 code crashes with 1080 vertical resolutions because it isn't a multiple of 16, H264 was okay with 1080, so undoing previous change for 1080.


Modified: vic/branches/mpeg4/video/grabber.cpp
==============================================================================
--- vic/branches/mpeg4/video/grabber.cpp	(original)
+++ vic/branches/mpeg4/video/grabber.cpp	Thu Sep 16 03:41:07 2010
@@ -426,9 +426,7 @@
 	inw_ = w;
 	inh_ = h;
 	w &=~ 0xf;
-	if (h != 1080) {
-		h &=~ 0xf;
-	}
+	h &=~ 0xf;
 	outw_ = w;
 	outh_ = h;
 



More information about the Sumover-dev mailing list