summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorOliver Freyermuth <o.freyermuth@googlemail.com>2023-08-30 20:55:26 +0200
committersfan5 <sfan5@live.de>2023-09-03 13:08:58 +0200
commit2c8db5af8b0d2ea57620f31b3e3b63ace7417426 (patch)
tree484fd3bd95137598036263923005c21987d57171 /stream
parentab2c26ddd2fcec18300949f2536b04945b1c8a01 (diff)
downloadmpv-2c8db5af8b0d2ea57620f31b3e3b63ace7417426.tar.bz2
mpv-2c8db5af8b0d2ea57620f31b3e3b63ace7417426.tar.xz
stream/dvbin: drop too verbose messages
Echoing channel config format detection for each channel is a bit too noisy.
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_dvb.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/stream/stream_dvb.c b/stream/stream_dvb.c
index 2d5d140506..3684987fca 100644
--- a/stream/stream_dvb.c
+++ b/stream/stream_dvb.c
@@ -352,14 +352,12 @@ static dvb_channels_list_t *dvb_get_channels(struct mp_log *log,
&num_chars);
bool is_vdr_conf = (num_chars == strlen(&line[k]));
- mp_verbose(log, "This does look like a VDR style channel config file.\n");
// Special case: DVB-T style ZAP config also has 13 columns.
// Most columns should have non-numeric content, but some channel list generators insert 0
// if a value is not used. However, INVERSION_* should always set after frequency.
if (is_vdr_conf && !strncmp(vdr_par_str, "INVERSION_", 10)) {
is_vdr_conf = false;
- mp_verbose(log, "Found INVERSION field after frequency, assuming ZAP style channel config file.\n");
}
if (is_vdr_conf) {