demux: shorten some redundant output

This message would always show "correct_dts=0 correct_pos=0".
This commit is contained in:
wm4 2019-06-02 16:43:41 +02:00
parent 277ab02f38
commit a0d59a9a15
1 changed files with 1 additions and 3 deletions

View File

@ -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;
}