diff options
author | malc <av1474@comtv.ru> | 2009-09-18 10:59:38 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-18 14:04:36 +0400 |
commit | ddabec73e6aaae97eaa8b42d6c22f51ffcffe96a (patch) | |
tree | ece37c4a5141ea9c8f36d3c5003175c5742fd7df /audio/audio_int.h | |
parent | 4f4cc0efde875ec9fce206c365597878fc4921e7 (diff) |
audio: introduce audio_pcm_hw_clip_out helper function
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio/audio_int.h')
-rw-r--r-- | audio/audio_int.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/audio_int.h b/audio/audio_int.h index ce791ee46c..7ea872926e 100644 --- a/audio/audio_int.h +++ b/audio/audio_int.h @@ -221,6 +221,9 @@ int audio_pcm_sw_read (SWVoiceIn *sw, void *buf, int len); int audio_pcm_hw_get_live_out (HWVoiceOut *hw); int audio_pcm_hw_get_live_out2 (HWVoiceOut *hw, int *nb_live); +int audio_pcm_hw_clip_out (HWVoiceOut *hw, void *pcm_buf, + int live, int pending); + int audio_bug (const char *funcname, int cond); void *audio_calloc (const char *funcname, int nmemb, size_t size); |