Use internal snd_pcm_forward() version...

This commit is contained in:
Jaroslav Kysela 2003-03-07 18:46:25 +00:00
parent 7f888e23f5
commit 7ecb338398
6 changed files with 7 additions and 7 deletions

View file

@ -324,7 +324,7 @@ snd_pcm_sframes_t snd_pcm_plugin_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frame
else
sframes = frames;
snd_atomic_write_begin(&plugin->watom);
sframes = snd_pcm_forward(plugin->slave, (snd_pcm_uframes_t) sframes);
sframes = INTERNAL(snd_pcm_forward)(plugin->slave, (snd_pcm_uframes_t) sframes);
if ((snd_pcm_sframes_t) sframes < 0) {
snd_atomic_write_end(&plugin->watom);
return sframes;