Changeset 50179b63 in mainline for uspace/srv/audio/hound/connection.h
- Timestamp:
- 2013-04-05T12:23:58Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c5b8548
- Parents:
- f1438e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/connection.h
rf1438e5 r50179b63 49 49 link_t sink_link; 50 50 link_t hound_link; 51 list_t fifo;51 audio_pipe_t fifo; 52 52 audio_sink_t *sink; 53 53 audio_source_t *source; … … 75 75 size_t size, pcm_format_t format); 76 76 77 int connection_push_data(connection_t *connection, audio_data_t *adata); 77 static inline int connection_push_data(connection_t *connection, 78 audio_data_t *adata) 79 { 80 assert(connection); 81 assert(adata); 82 return audio_pipe_push(&connection->fifo, adata); 83 } 78 84 79 85 static inline const char *connection_source_name(connection_t *connection)
Note:
See TracChangeset
for help on using the changeset viewer.