]> git.baikalelectronics.ru Git - kernel.git/commit
ALSA: pcm: update tstamp only if audio_tstamp changed
authorHenrik Eriksson <henrik.eriksson@axis.com>
Tue, 21 Nov 2017 08:29:28 +0000 (09:29 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 21 Nov 2017 12:59:19 +0000 (13:59 +0100)
commit1d582d0ba0d49afcec235c4c90231876d17dc89f
tree5054bbd1bd93606ab188d464c69ed4a93cfa0f20
parent3d207ca5fb212d5ef3bd4eef937f958ba3435f8e
ALSA: pcm: update tstamp only if audio_tstamp changed

commit 8da04db3a77c ("ALSA: core: add .get_time_info") had a side effect
of changing the behaviour of the PCM runtime tstamp.  Prior to this
change tstamp was not updated by snd_pcm_update_hw_ptr0() unless the
hw_ptr had moved, after this change tstamp was always updated.

For an application using alsa-lib, doing snd_pcm_readi() followed by
snd_pcm_status() to estimate the age of the read samples by subtracting
status->avail * [sample rate] from status->tstamp this change degraded
the accuracy of the estimate on devices where the pcm hw does not
provide a granular hw_ptr, e.g., devices using
soc-generic-dmaengine-pcm.c and a dma-engine with residue_granularity
DMA_RESIDUE_GRANULARITY_DESCRIPTOR.  The accuracy of the estimate
depended on the latency between the PCM hw completing a period and the
driver called snd_pcm_period_elapsed() to notify ALSA core, typically
determined by interrupt handling latency.  After the change the accuracy
of the estimate depended on the latency between the PCM hw completing a
period and the application calling snd_pcm_status(), determined by the
scheduling of the application process.  The maximum error of the
estimate is one period length in both cases, but the error average and
variance is smaller when it depends on interrupt latency.

Instead of always updating tstamp, update it only if audio_tstamp
changed.

Fixes: 8da04db3a77c ("ALSA: core: add .get_time_info")
Suggested-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Henrik Eriksson <henrik.eriksson@axis.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/pcm_lib.c