Changeset 902dd4b in mainline for uspace/srv/audio/hound/audio_data.h
- Timestamp:
- 2018-04-15T19:21:10Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30e9f42, cbc534c
- Parents:
- 2ee0e4a1
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-15 19:20:12)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-04-15 19:21:10)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_data.h
r2ee0e4a1 r902dd4b 46 46 typedef struct { 47 47 /** Audio data */ 48 constvoid *data;48 void *data; 49 49 /** Size of the buffer pointer to by data */ 50 50 size_t size; … … 67 67 } audio_pipe_t; 68 68 69 audio_data_t *audio_data_create( constvoid *data, size_t size,69 audio_data_t *audio_data_create(void *data, size_t size, 70 70 pcm_format_t format); 71 71 void audio_data_addref(audio_data_t *adata); … … 114 114 */ 115 115 static inline errno_t audio_pipe_push_data(audio_pipe_t *pipe, 116 constvoid *data, size_t size, pcm_format_t f)116 void *data, size_t size, pcm_format_t f) 117 117 { 118 118 audio_data_t *adata = audio_data_create(data, size, f);
Note:
See TracChangeset
for help on using the changeset viewer.