summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-01-04 19:48:55 +0100
committerwm4 <wm4@nowhere>2020-01-04 19:48:55 +0100
commit4231ce6f5f6976c65a22853b77103cf4243e5f5f (patch)
treebe5131453013ade5b54b1a1aeab1b00dc95b4bd6
parent5016a1e4a6118e1b91b1ee1ca5221ae09cf8753e (diff)
downloadmpv-4231ce6f5f6976c65a22853b77103cf4243e5f5f.tar.bz2
mpv-4231ce6f5f6976c65a22853b77103cf4243e5f5f.tar.xz
stream_libarchive: log each opened volume
To annoy the user.
-rw-r--r--stream/stream_libarchive.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/stream_libarchive.c b/stream/stream_libarchive.c
index 08675794ca..7c48f3a135 100644
--- a/stream/stream_libarchive.c
+++ b/stream/stream_libarchive.c
@@ -103,6 +103,7 @@ static int open_cb(struct archive *arch, void *priv)
// Avoid annoying warnings/latency for known dummy volumes.
if (vol->index >= vol->mpa->num_volumes)
return ARCHIVE_OK;
+ MP_INFO(vol->mpa, "Opening volume '%s'...\n", vol->url);
vol->src = stream_create(vol->url,
STREAM_READ |
vol->mpa->primary_src->stream_origin,