From: Chris Tallon Date: Sun, 14 Aug 2005 14:25:58 +0000 (+0000) Subject: Allow up to 500k getBlocks X-Git-Tag: r0-0-17~10 X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=ae42f072af13754bf526beb908af7efc9a4ab0da;p=vompserver.git Allow up to 500k getBlocks --- diff --git a/recplayer.c b/recplayer.c index a13a64e..0968d44 100644 --- a/recplayer.c +++ b/recplayer.c @@ -97,7 +97,7 @@ ULLONG RecPlayer::getTotalLength() unsigned long RecPlayer::getBlock(unsigned char* buffer, ULLONG position, unsigned long amount) { - if ((amount > totalLength) || (amount > 100000)) + if ((amount > totalLength) || (amount > 500000)) { log->log("RecPlayer", Log::DEBUG, "Amount %lu requested and rejected", amount); return 0;