0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

cache: print cache size only in verbose mode

Seems pretty useless in general, so this reduces output noise.
This commit is contained in:
wm4 2014-06-12 00:38:23 +02:00
parent 8ad8dedca8
commit 598245a80f

View File

@ -681,8 +681,8 @@ int stream_cache_init(stream_t *cache, stream_t *stream,
return -1;
}
MP_INFO(cache, "Cache size set to %" PRId64 " KiB\n",
s->buffer_size / 1024);
MP_VERBOSE(cache, "Cache size set to %" PRId64 " KiB\n",
s->buffer_size / 1024);
pthread_mutex_init(&s->mutex, NULL);
pthread_cond_init(&s->wakeup, NULL);