[Sumover-dev] [svn commit] r4443 - vic/branches/mpeg4/codec

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu May 14 23:33:24 BST 2009


Author: douglask
Date: Thu May 14 23:33:20 2009
New Revision: 4443

Modified:
   vic/branches/mpeg4/codec/ffmpeg_codec.h

Log:
Replace 2000000 magic number used for MAX_FRAME_SIZE with 1920*1080 (= 2073600)


Modified: vic/branches/mpeg4/codec/ffmpeg_codec.h
==============================================================================
--- vic/branches/mpeg4/codec/ffmpeg_codec.h	(original)
+++ vic/branches/mpeg4/codec/ffmpeg_codec.h	Thu May 14 23:33:20 2009
@@ -41,7 +41,7 @@
 */
 
 typedef unsigned char UCHAR;
-const int MAX_FRAME_SIZE = 2000000;
+const int MAX_FRAME_SIZE = 1920*1080;
 const int MAX_CODED_SIZE = 200000;
 
 



More information about the Sumover-dev mailing list