Increase size of TMP_BUFFER_SIZE

With UHD movies, the max frame size can get much bigger.
Increasing the buffer size should avoid errors such as issue #563.
This commit is contained in:
jcdr428 2022-05-03 20:54:40 +00:00
parent ddd5d978b6
commit e85de681d1

View File

@ -7,7 +7,7 @@
#include "limits.h"
#include "vod_common.h"
const static int TMP_BUFFER_SIZE = 1024 * 1024 * 8;
const static int TMP_BUFFER_SIZE = 1024 * 1024 * 10;
class MPEGStreamReader : public AbstractStreamReader
{