summaryrefslogtreecommitdiffstats
path: root/demux/demux.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-02 16:43:41 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commita0d59a9a15efb60fc6015e8b49a0e2a5990fd060 (patch)
tree0ac004c3394ddaa850a8eeddb284e3fe8e66f064 /demux/demux.c
parent277ab02f3820b41286f3fa9c637f6322b564ea77 (diff)
downloadmpv-a0d59a9a15efb60fc6015e8b49a0e2a5990fd060.tar.bz2
mpv-a0d59a9a15efb60fc6015e8b49a0e2a5990fd060.tar.xz
demux: shorten some redundant output
This message would always show "correct_dts=0 correct_pos=0".
Diffstat (limited to 'demux/demux.c')
-rw-r--r--demux/demux.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/demux/demux.c b/demux/demux.c
index f732cf9e6c..bfe1989b7e 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -3021,9 +3021,7 @@ static void switch_current_range(struct demux_internal *in,
struct demux_stream *ds = in->streams[n]->ds;
// This is needed to resume or join the range at all.
if (ds->selected && !(ds->global_correct_dts || ds->global_correct_pos)) {
- MP_VERBOSE(in, "discarding old range, due to stream %d: "
- "correct_dts=%d correct_pos=%d\n", n,
- ds->global_correct_dts, ds->global_correct_pos);
+ MP_VERBOSE(in, "discarding unseekable range due to stream %d\n", n);
clear_cached_range(in, old);
break;
}