]> git.vomp.tv Git - vompserver.git/commitdiff
Raise recording playback get-block limit to 1MB scraper_support
authorChris Tallon <chris@vomp.tv>
Mon, 23 Jan 2017 15:51:21 +0000 (15:51 +0000)
committerChris Tallon <chris@vomp.tv>
Mon, 23 Jan 2017 15:51:21 +0000 (15:51 +0000)
recplayer.c

index 8827ba57c94804ca6ba92bf0c12d341ca9be5e4f..e2e3da7ee7ae4c34bb1d3cb83dfdeaf2c70b0ba2 100644 (file)
@@ -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;