From: Chris Tallon Date: Mon, 23 Jan 2017 15:51:21 +0000 (+0000) Subject: Raise recording playback get-block limit to 1MB X-Git-Tag: 0-5-0~6^2 X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2Fscraper_support;p=vompserver.git Raise recording playback get-block limit to 1MB --- 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;