Changeset ea6c838 in mainline for uspace/srv/audio/hound/audio_device.c
- Timestamp:
- 2012-07-17T08:26:49Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6bba8f
- Parents:
- 950110ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/audio_device.c
r950110ee rea6c838 109 109 110 110 const unsigned frames = dev->buffer.size / 111 (BUFFER_PARTS * audio_format_frame_size(&dev->sink.format));111 (BUFFER_PARTS * pcm_format_frame_size(&dev->sink.format)); 112 112 ret = audio_pcm_start_playback(dev->sess, frames, 113 113 dev->sink.format.channels, dev->sink.format.sampling_rate, … … 152 152 } 153 153 const unsigned frames = dev->buffer.size / 154 (BUFFER_PARTS * audio_format_frame_size(&dev->sink.format));154 (BUFFER_PARTS * pcm_format_frame_size(&dev->sink.format)); 155 155 ret = audio_pcm_start_record(dev->sess, frames, 156 156 dev->sink.format.channels, dev->sink.format.sampling_rate,
Note:
See TracChangeset
for help on using the changeset viewer.