From 102adb2cb186339634590b7ae3e6b1393c72f4c5 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 10 Jul 2015 23:01:50 +0200 Subject: [PATCH] Beef up the warning limit for large blocks a bit; MKV chunks can get pretty big. --- httpinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpinput.cpp b/httpinput.cpp index 74466c7..043c07c 100644 --- a/httpinput.cpp +++ b/httpinput.cpp @@ -549,7 +549,7 @@ void HTTPInput::process_data(char *ptr, size_t bytes) has_metacube_header = false; continue; } - if (size > 262144) { + if (size > 1048576) { log(WARNING, "[%s] Metacube block of %d bytes (flags=%x); corrupted header?", url.c_str(), size, flags); } -- 2.39.2