]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
imagecache: increase the save access threshold again
authorJaroslav Kysela <perex@perex.cz>
Wed, 12 Dec 2018 18:20:33 +0000 (19:20 +0100)
committerJaroslav Kysela <perex@perex.cz>
Wed, 12 Dec 2018 18:20:33 +0000 (19:20 +0100)
src/imagecache.c

index 4a818d3471a311afb03cd1b6c2d5bda6e2d998d7..e22ccab1ca02235bd9d92ab1d5f7c051acb1dc1e 100644 (file)
@@ -68,7 +68,7 @@ static void imagecache_destroy(imagecache_image_t *img, int delconf);
 
 static inline time_t clkwrap(time_t clk)
 {
-  return clk / 4096; /* more than one hour */
+  return clk / 8192; /* more than two hours */
 }
 
 CLASS_DOC(imagecache)