OSDN Git Service

pcm: plugin status - revert the recent changes
authorJaroslav Kysela <perex@perex.cz>
Sun, 3 Jan 2021 15:16:10 +0000 (16:16 +0100)
committerJaroslav Kysela <perex@perex.cz>
Sun, 3 Jan 2021 15:16:44 +0000 (16:16 +0100)
It's no reason to sync the avail/delay fields using the mirrored
buffer pointers. The slave information must be valid.

The original report probably tries to fix something for
the specific plugin. Revert all changes.

Fixes: afe6ff3b33e ("pcm: plugin status - fix the return value (regression)")
Fixes: 4f90392f07e ("pcm: fix the snd_pcm_plugin_status() avail and delay fields")
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
src/pcm/pcm_plugin.c

index 76a524f..ea60eb9 100644 (file)
@@ -551,8 +551,6 @@ static int snd_pcm_plugin_status(snd_pcm_t *pcm, snd_pcm_status_t * status)
                return err;
        status->appl_ptr = *pcm->appl.ptr;
        status->hw_ptr = *pcm->hw.ptr;
-       status->avail = snd_pcm_mmap_avail(pcm);
-       status->delay = snd_pcm_mmap_delay(pcm);
        return 0;
 }