Changes in uspace/app/wavplay/dplay.c [b7fd2a0:d5c1051] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/wavplay/dplay.c
rb7fd2a0 rd5c1051 148 148 const size_t fragment_size = pb->buffer.size / DEFAULT_FRAGMENTS; 149 149 printf("Registering event callback\n"); 150 errno_t ret = audio_pcm_register_event_callback(pb->device,150 int ret = audio_pcm_register_event_callback(pb->device, 151 151 device_event_callback, pb); 152 152 if (ret != EOK) { … … 282 282 283 283 if (!started) { 284 errno_t ret = audio_pcm_start_playback(pb->device,284 int ret = audio_pcm_start_playback(pb->device, 285 285 pb->f.channels, pb->f.sampling_rate, 286 286 pb->f.sample_format); … … 309 309 async_usleep(real_delay); 310 310 /* update buffer position */ 311 const errno_t ret = audio_pcm_get_buffer_pos(pb->device, &pos);311 const int ret = audio_pcm_get_buffer_pos(pb->device, &pos); 312 312 if (ret != EOK) { 313 313 printf("Failed to update position indicator %s\n", … … 333 333 int dplay(const char *device, const char *file) 334 334 { 335 errno_t ret = EOK;335 int ret = EOK; 336 336 audio_pcm_sess_t *session = NULL; 337 337 if (str_cmp(device, "default") == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.