From 0e618de58581f66d5b43d0fde4fb46363bff0e38 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Mon, 23 Jan 2017 15:51:21 +0000 Subject: [PATCH] Raise recording playback get-block limit to 1MB --- recplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recplayer.c b/recplayer.c index 8827ba5..e2e3da7 100644 --- a/recplayer.c +++ b/recplayer.c @@ -132,7 +132,7 @@ ULONG RecPlayer::getLengthFrames() unsigned long RecPlayer::getBlock(unsigned char* buffer, ULLONG position, unsigned long amount) { - if ((amount > totalLength) || (amount > 500000)) + if ((amount > totalLength) || (amount > 1000000)) { log->log("RecPlayer", Log::DEBUG, "Amount %lu requested and rejected", amount); return 0; -- 2.39.2