0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vo: change spammy log to trace

This commit is contained in:
Kacper Michajłow 2023-10-08 18:32:21 +02:00 committed by Dudemanguy
parent 8c7c878255
commit ed8b3cef5f

View File

@ -452,10 +452,10 @@ static void check_estimated_display_fps(struct vo *vo)
}
if (use_estimated == (fabs(in->vsync_interval - in->nominal_vsync_interval) < 1e9)) {
if (use_estimated) {
MP_VERBOSE(vo, "adjusting display FPS to a value closer to %.3f Hz\n",
MP_TRACE(vo, "adjusting display FPS to a value closer to %.3f Hz\n",
1e9 / in->estimated_vsync_interval);
} else {
MP_VERBOSE(vo, "switching back to assuming display fps = %.3f Hz\n",
MP_TRACE(vo, "switching back to assuming display fps = %.3f Hz\n",
1e9 / in->nominal_vsync_interval);
}
}