Skip to content
Snippets Groups Projects

es_out: trace wake up delay for input pacing monitoring

Merged Alexandre Janniaux requested to merge alexandre-janniaux/vlc:input-wakeup-delay/1 into master

This patch adds a new metric to track and understand the behaviour of the input pacing done from the input buffering values. The behaviour is showing correct properties currently, but as will be shown later in this commit message, this metric helps debugging pacing issues leading to screen freeze.

In the work for making clock-start distributed across every clock tracker, and because of a change removing the call to the function input_clock_ChangeSystemOrigin, the input clock wake-up delay was not computed correctly. Specifically, a huge delay of multiple hundred of millisecond was appearing at the startup of the playback for file:// media, leading to a huge gap in playback.

The problem can be revealed when tracing the input_clock_GetWakeup values. Those values are used to pace the input, and they are dates matching with up until when the input is allowed to sleep, or 0 to disable sleeping altogether. The value returned is valid up until vlc_tick_now() is bigger or a new input_clock_Update() is made.

By substracting vlc_tick_now() to this date when the value is not 0, we can get the time the input is supposed to wait before doing anything else. The graph would typically look like this when the freeze was happening at the beginning of the playback

   Input clock
     wake up
       ^
330ms -|             +----+
       |             |    |
       |             |    |
    0 -| ------------+    +--------..
       +----------------------------->t

In the current state or after proper fixes for the input pacing were done, it would display the following graph:

    Input clock
      wake up
        ^
        |
        +----------------------------->t
     0 -| ------------++--------------
        |             ||
        |             || 
-550ms -|             ++

As such, a very high value looks suspiciously wrong, and improvement could be made later to start the wake-up delay at -pts_delay immediately instead of returning 0 as long as the reference point is not registered yet in the input clock buffering subsystem.

This metric also catches additional artifacts that are generated by the input decoder waits right at the end of buffering, which might be interesting to investigate later.

In grafana, here is how the graph currently looks like:

image

Here is how the graph looks like with the freeze right at the beginning (after a few hundred millisecond playback).

image

Here is how the graph looks like without the freeze, and without the decoder wait:

image

For this last case, I've been running with the following patch. The usage of this is currently quite specific to my use cases, but the consequences is still interesting to gather. Using this kind of patch has a lot of consequences on what to do for clock bootstrapping in audio master, so it cannot be part of the tree right now of course.

commit 39bd3ba06a6a4c26baaa46a7ec6253e468aba783
Author: Alexandre Janniaux <ajanni@videolabs.io>
Date:   Thu Oct 31 20:07:34 2024 +0900

    input: es_out: start video before other tracks if needed

diff --git a/src/input/es_out.c b/src/input/es_out.c
index 5430fc35bc..798355344b 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -1313,7 +1313,7 @@ static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced )
     const vlc_tick_t i_decoder_buffering_start = vlc_tick_now();
     foreach_es_then_es_slaves(p_es)
     {
-        if( !p_es->p_dec || p_es->fmt.i_cat == SPU_ES )
+        if( !p_es->p_dec || p_es->fmt.i_cat != VIDEO_ES )
             continue;
         vlc_input_decoder_Wait( p_es->p_dec );
         if( p_es->p_dec_record )
Edited by Alexandre Janniaux

Merge request reports

Merge request pipeline #580598 passed

Merge request pipeline passed for 5f6060a4

Test coverage 18.14% (0.16%) from 1 job
Approval is optional
Test summary results are loading

Merged by Alexandre JanniauxAlexandre Janniaux 1 week ago (Mar 26, 2025 11:35am UTC)

Merge details

  • Changes merged into master with 5f6060a4.
  • Deleted the source branch.
  • Auto-merge enabled

Pipeline #580602 passed

Pipeline passed for 5f6060a4 on master

Test coverage 17.98% (0.16%) from 1 job

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
Please register or sign in to reply
Loading