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

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Wed Oct 6 02:15:35 BST 2010


Author: douglask
Date: Wed Oct  6 02:15:35 2010
New Revision: 4891

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

Log:
MAX_CODED_SIZE was too small for high bandwidth MPEG4 1920x1072 frames which causes receiving VICs to die due to an assert statement in ffmpeg_codec.cpp:
  assert(len < MAX_CODED_SIZE);


Modified: vic/branches/mpeg4/codec/ffmpeg_codec.h
==============================================================================
--- vic/branches/mpeg4/codec/ffmpeg_codec.h	(original)
+++ vic/branches/mpeg4/codec/ffmpeg_codec.h	Wed Oct  6 02:15:35 2010
@@ -42,7 +42,7 @@
 
 typedef unsigned char UCHAR;
 const int MAX_FRAME_SIZE = 1920*1080*3/2;
-const int MAX_CODED_SIZE = 200000;
+const int MAX_CODED_SIZE = 400000;
 
 
 class FFMpegCodec



More information about the Sumover-dev mailing list