Changeset 4b33db8e in mainline


Ignore:
Timestamp:
2013-04-04T16:36:11Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d988ef2
Parents:
9e40d443
Message:

hound: implement drain iface

File:
1 edited

Legend:

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

    r9e40d443 r4b33db8e  
    135135}
    136136
     137static int iface_drain_stream(void *stream)
     138{
     139        hound_ctx_stream_drain(stream);
     140        return EOK;
     141}
     142
    137143static int iface_stream_data_read(void *stream, void *buffer, size_t size)
    138144{
     
    154160        .add_stream = iface_add_stream,
    155161        .rem_stream = iface_rem_stream,
     162        .drain_stream = iface_drain_stream,
    156163        .stream_data_write = iface_stream_data_write,
    157164        .stream_data_read = iface_stream_data_read,
Note: See TracChangeset for help on using the changeset viewer.