Skip to content

alsa: Reduce jitter in irq based software timestamping

Dimitrios Katsaros requested to merge Dmt/pipewire:master into master

We would timestamp within an unlikely block, which would introduce additional jitter to current_time, which would have an impact on the performance of the timer sensitive code.

Note: I know that the timestamp is only being used in irq mode, but having the timestamping within the if means that we are adding an additional if before getting the timestamp, which will introduce jitter.

Merge request reports