summaryrefslogtreecommitdiffstats
path: root/stream/stream_bluray.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_bluray.c')
-rw-r--r--stream/stream_bluray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/stream_bluray.c b/stream/stream_bluray.c
index 1f5ea1711b..f26420b56d 100644
--- a/stream/stream_bluray.c
+++ b/stream/stream_bluray.c
@@ -418,7 +418,7 @@ static int bluray_stream_open_internal(stream_t *s)
return STREAM_UNSUPPORTED;
}
- MP_VERBOSE(s, "List of available titles:\n");
+ MP_INFO(s, "List of available titles:\n");
/* parse titles information */
uint64_t max_duration = 0;
@@ -428,7 +428,7 @@ static int bluray_stream_open_internal(stream_t *s)
continue;
char *time = mp_format_time(ti->duration / 90000, false);
- MP_VERBOSE(s, "idx: %3d duration: %s (playlist: %05d.mpls)\n",
+ MP_INFO(s, "idx: %3d duration: %s (playlist: %05d.mpls)\n",
i, time, ti->playlist);
talloc_free(time);