Changeset ea6c838 in mainline for uspace/srv/audio/hound/audio_client.h
- Timestamp:
- 2012-07-17T08:26:49Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6bba8f
- Parents:
- 950110ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_client.h
r950110ee rea6c838 39 39 #include <adt/list.h> 40 40 #include <async.h> 41 #include <pcm/format.h> 41 42 42 #include "audio_format.h"43 43 #include "audio_source.h" 44 44 #include "audio_sink.h" … … 49 49 audio_source_t source; 50 50 audio_sink_t sink; 51 audio_format_t format;51 pcm_format_t format; 52 52 async_sess_t *sess; 53 53 async_exch_t *exch; … … 62 62 63 63 audio_client_t *audio_client_get_playback( 64 const char *name, const audio_format_t *f, async_sess_t *sess);64 const char *name, const pcm_format_t *f, async_sess_t *sess); 65 65 audio_client_t *audio_client_get_recording( 66 const char *name, const audio_format_t *f, async_sess_t *sess);66 const char *name, const pcm_format_t *f, async_sess_t *sess); 67 67 void audio_client_destroy(audio_client_t *client); 68 68
Note:
See TracChangeset
for help on using the changeset viewer.