Go to the source code of this file.
|
| #define | ALSA_CALL(call, error) |
| |
| #define | HW pcm_handle, hwparams /* hardware parameters */ |
| |
| #define | SW pcm_handle, swparams /* software parameters */ |
| |
| #define | TRY(call, error) |
| |
◆ ALSA_CALL
| #define ALSA_CALL |
( |
|
call, |
|
|
|
error |
|
) |
| |
Value: ({ \
int err_code = call; \
if (err_code < 0) \
JAMI_ERR(error ": %s", snd_strerror(err_code)); \
err_code; \
})
Definition at line 210 of file alsalayer.cpp.
◆ HW
| #define HW pcm_handle, hwparams /* hardware parameters */ |
◆ SW
| #define SW pcm_handle, swparams /* software parameters */ |
◆ TRY
| #define TRY |
( |
|
call, |
|
|
|
error |
|
) |
| |
Value: do { \
return false; \
} while (0)
#define ALSA_CALL(call, error)