1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-11 04:01:31 +00:00

player: don't print "Playing:" message if there's only 1 file

This is just redundant and slightly annoying, at least for normal
command line usage. If there are multiple entries, still print it
(because you want to know where you are). Also still print it if the
player was redirected (because you want to know where you got redirected
to).
This commit is contained in:
wm4 2019-05-16 17:20:24 +02:00
parent 8642ed1dda
commit b436d25b3f

View File

@ -1396,7 +1396,10 @@ static void play_current_file(struct MPContext *mpctx)
handle_force_window(mpctx, false);
MP_INFO(mpctx, "Playing: %s\n", mpctx->filename);
if (mpctx->playlist->first != mpctx->playing ||
mpctx->playlist->last != mpctx->playing ||
mpctx->playing->num_redirects)
MP_INFO(mpctx, "Playing: %s\n", mpctx->filename);
assert(mpctx->demuxer == NULL);