Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/wavplay/dplay.c

    rb6e481b r33b8d024  
    148148        const size_t fragment_size = pb->buffer.size / DEFAULT_FRAGMENTS;
    149149        printf("Registering event callback\n");
    150         int ret = audio_pcm_register_event_callback(pb->device,
     150        errno_t ret = audio_pcm_register_event_callback(pb->device,
    151151            device_event_callback, pb);
    152152        if (ret != EOK) {
     
    282282
    283283                if (!started) {
    284                         int ret = audio_pcm_start_playback(pb->device,
     284                        errno_t ret = audio_pcm_start_playback(pb->device,
    285285                            pb->f.channels, pb->f.sampling_rate,
    286286                            pb->f.sample_format);
     
    309309                        async_usleep(real_delay);
    310310                /* update buffer position */
    311                 const int ret = audio_pcm_get_buffer_pos(pb->device, &pos);
     311                const errno_t ret = audio_pcm_get_buffer_pos(pb->device, &pos);
    312312                if (ret != EOK) {
    313313                        printf("Failed to update position indicator %s\n",
     
    329329 * @param device The device.
    330330 * @param file The file.
    331  * @return Error code.
     331 * @return 0 on success, non-zero on failure.
    332332 */
    333333int dplay(const char *device, const char *file)
    334334{
    335         int ret = EOK;
     335        errno_t ret = EOK;
    336336        audio_pcm_sess_t *session = NULL;
    337337        if (str_cmp(device, "default") == 0) {
     
    345345        }
    346346        printf("Playing on device: %s.\n", device);
    347         if (audio_pcm_query_cap(session, AUDIO_CAP_PLAYBACK) <= 0) {
     347        sysarg_t val;
     348        ret = audio_pcm_query_cap(session, AUDIO_CAP_PLAYBACK, &val);
     349        if (ret != EOK || !val) {
    348350                printf("Device %s does not support playback\n", device);
    349351                ret = ENOTSUP;
     
    351353        }
    352354
    353         const char* info = NULL;
     355        char* info = NULL;
    354356        ret = audio_pcm_get_info_str(session, &info);
    355357        if (ret != EOK) {
     
    386388                goto cleanup;
    387389        }
    388         if (audio_pcm_query_cap(pb.device, AUDIO_CAP_BUFFER_POS) > 0) {
     390        ret = audio_pcm_query_cap(pb.device, AUDIO_CAP_BUFFER_POS, &val);
     391        if (ret == EOK && val) {
    389392                play(&pb);
    390393        } else {
    391                 if (audio_pcm_query_cap(pb.device, AUDIO_CAP_INTERRUPT) > 0)
     394                ret = audio_pcm_query_cap(pb.device, AUDIO_CAP_INTERRUPT, &val);
     395                if (ret == EOK && val)
    392396                        play_fragment(&pb);
    393397                else
Note: See TracChangeset for help on using the changeset viewer.