From: Jaroslav Kysela Date: Tue, 9 May 2000 15:44:18 +0000 (+0000) Subject: Moved update call to corrent position.. X-Git-Tag: v1.0.3~1272 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=443b2573148dd51f67eeaddc921652c96c073faa;p=alsa-lib.git Moved update call to corrent position.. --- diff --git a/include/pcm.h b/include/pcm.h index a3febb93..53d84ee6 100644 --- a/include/pcm.h +++ b/include/pcm.h @@ -99,6 +99,7 @@ int snd_pcm_channel_setup(snd_pcm_t *handle, snd_pcm_channel_setup_t *setup); int snd_pcm_voice_setup(snd_pcm_t *handle, int channel, snd_pcm_voice_setup_t *setup); int snd_pcm_all_voices_setup(snd_pcm_t *handle, int channel, snd_pcm_voice_setup_t *setup); int snd_pcm_channel_status(snd_pcm_t *handle, snd_pcm_channel_status_t *status); +int snd_pcm_channel_update(snd_pcm_t *handle, int channel); int snd_pcm_playback_prepare(snd_pcm_t *handle); int snd_pcm_capture_prepare(snd_pcm_t *handle); int snd_pcm_channel_prepare(snd_pcm_t *handle, int channel); @@ -113,7 +114,6 @@ int snd_pcm_capture_flush(snd_pcm_t *handle); int snd_pcm_channel_flush(snd_pcm_t *handle, int channel); int snd_pcm_playback_pause(snd_pcm_t *handle, int enable); int snd_pcm_channel_pause(snd_pcm_t *handle, int channel, int enable); -int snd_pcm_channel_update(snd_pcm_t *handle, int channel); ssize_t snd_pcm_transfer_size(snd_pcm_t *handle, int channel); ssize_t snd_pcm_write(snd_pcm_t *handle, const void *buffer, size_t size); ssize_t snd_pcm_read(snd_pcm_t *handle, void *buffer, size_t size);