From 4dfaa373846e79f1bc34b50426c1584b948c0eb6 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 1 Sep 2018 13:04:45 +0200 Subject: demux, stream: readd cache-speed in some other form it's more like an input speed rather than a cache speed, but who cares. --- stream/stream.c | 1 + 1 file changed, 1 insertion(+) (limited to 'stream/stream.c') diff --git a/stream/stream.c b/stream/stream.c index 7d093e1913..e0dfbd33fd 100644 --- a/stream/stream.c +++ b/stream/stream.c @@ -342,6 +342,7 @@ static int stream_read_unbuffered(stream_t *s, void *buf, int len) // When reading succeeded we are obviously not at eof. s->eof = 0; s->pos += res; + s->total_unbuffered_read_bytes += res; return res; } -- cgit v1.2.3