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.h

    r950110ee rea6c838  
    3939#include <adt/list.h>
    4040#include <async.h>
     41#include <pcm/format.h>
    4142
    42 #include "audio_format.h"
    4343#include "audio_source.h"
    4444#include "audio_sink.h"
     
    4949        audio_source_t source;
    5050        audio_sink_t sink;
    51         audio_format_t format;
     51        pcm_format_t format;
    5252        async_sess_t *sess;
    5353        async_exch_t *exch;
     
    6262
    6363audio_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);
    6565audio_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);
    6767void audio_client_destroy(audio_client_t *client);
    6868
Note: See TracChangeset for help on using the changeset viewer.