# HG changeset patch # User reimar # Date 1295986362 0 # Node ID ce80aa247b4bf6f2a59a553ba1448b4cc5e623f5 # Parent 470867f7e1df509c2345f2d805217142b01a4e0f Change "cache not filling" warning to include a hint to increase the cache size. diff -r 470867f7e1df -r ce80aa247b4b stream/cache2.c --- a/stream/cache2.c Mon Jan 24 20:09:28 2011 +0000 +++ b/stream/cache2.c Tue Jan 25 20:12:42 2011 +0000 @@ -121,7 +121,7 @@ if(s->eof) break; if (s->max_filepos == last_max) { if (sleep_count++ == 10) - mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not filling!\n"); + mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not filling, consider increasing -cache and/or -cache-min!\n"); } else { last_max = s->max_filepos; sleep_count = 0;