Changeset 92b638c in mainline for uspace/srv
- Timestamp:
- 2012-08-30T11:41:48Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5eed99d
- Parents:
- ed3816d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_device.c
red3816d r92b638c 112 112 const unsigned frames = dev->buffer.size / 113 113 (BUFFER_PARTS * pcm_format_frame_size(&dev->sink.format)); 114 ret = audio_pcm_start_playback (dev->sess, frames,114 ret = audio_pcm_start_playback_fragment(dev->sess, frames, 115 115 dev->sink.format.channels, dev->sink.format.sampling_rate, 116 116 dev->sink.format.sample_format); … … 155 155 const unsigned frames = dev->buffer.size / 156 156 (BUFFER_PARTS * pcm_format_frame_size(&dev->sink.format)); 157 ret = audio_pcm_start_capture (dev->sess, frames,157 ret = audio_pcm_start_capture_fragment(dev->sess, frames, 158 158 dev->sink.format.channels, dev->sink.format.sampling_rate, 159 159 dev->sink.format.sample_format);
Note:
See TracChangeset
for help on using the changeset viewer.