# HG changeset patch # User reimar # Date 1312911409 0 # Node ID 76b818cbb35914fc2a02f63057f6bab1c9d295cb # Parent 846cc6abc5babaabc495bcf489169700730ecfc4 Mark two warnings that usually only indicate a performance issue as such. diff -r 846cc6abc5ba -r 76b818cbb359 stream/cache2.c --- a/stream/cache2.c Tue Aug 09 17:20:44 2011 +0000 +++ b/stream/cache2.c Tue Aug 09 17:36:49 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, consider increasing -cache and/or -cache-min!\n"); + mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not filling, consider increasing -cache and/or -cache-min. [performance issue]\n"); } else { last_max = s->max_filepos; sleep_count = 0; @@ -612,7 +612,7 @@ cache_wakeup(stream); while (s->control != -1) { if (sleep_count++ == 1000) - mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not responding!\n"); + mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not responding! [performance issue]\n"); if (stream_check_interrupt(CONTROL_SLEEP_TIME)) { s->eof = 1; return STREAM_UNSUPPORTED;