Ignore:
Timestamp:
2012-07-17T08:26:49Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e6bba8f
Parents:
950110ee
Message:

Create libpcm.

Move pcm related functions and definitions there.
Make other stuff use this library.
Rename most of it on the way.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/audio/hound/audio_client.c

    r950110ee rea6c838  
    4343
    4444static void init_common(audio_client_t *client, const char *name,
    45     const audio_format_t *f, async_sess_t *sess)
     45    const pcm_format_t *f, async_sess_t *sess)
    4646{
    4747        link_initialize(&client->link);
     
    6060
    6161audio_client_t *audio_client_get_playback(
    62     const char *name, const audio_format_t *f, async_sess_t *sess)
     62    const char *name, const pcm_format_t *f, async_sess_t *sess)
    6363{
    6464        audio_client_t *client = malloc(sizeof(audio_client_t));
     
    7373
    7474audio_client_t *audio_client_get_recording(
    75     const char *name, const audio_format_t *f, async_sess_t *sess)
     75    const char *name, const pcm_format_t *f, async_sess_t *sess)
    7676{
    7777        audio_client_t *client = malloc(sizeof(audio_client_t));
Note: See TracChangeset for help on using the changeset viewer.