aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cubeb_oss.c
diff options
context:
space:
mode:
authorKa Ho Ng <[email protected]>2021-11-09 21:53:15 +0000
committerMatthew Gregan <[email protected]>2021-11-10 10:00:47 +1300
commit8da61ef32d386ffd5f00f025578d4429523ca45b (patch)
tree5b6afbb6978a314ae7bf52fb09f2340bca173099 /src/cubeb_oss.c
parentb690782c19728ee7a5675237b0b30249f4e1bf5e (diff)
downloadcubeb-8da61ef32d386ffd5f00f025578d4429523ca45b.tar.gz
cubeb-8da61ef32d386ffd5f00f025578d4429523ca45b.zip
cubeb_oss: clang-formatted
Diffstat (limited to 'src/cubeb_oss.c')
-rw-r--r--src/cubeb_oss.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/cubeb_oss.c b/src/cubeb_oss.c
index ba52ef4..6196a90 100644
--- a/src/cubeb_oss.c
+++ b/src/cubeb_oss.c
@@ -786,7 +786,7 @@ oss_put_play_frames(cubeb_stream * s, unsigned int nframes)
}
static int
-oss_wait_fds_for_space(cubeb_stream * s, long *nfrp)
+oss_wait_fds_for_space(cubeb_stream * s, long * nfrp)
{
audio_buf_info bi;
struct pollfd pfds[2];
@@ -1116,10 +1116,10 @@ oss_stream_init(cubeb * context, cubeb_stream ** stream,
s->play.nfrags = latency_frames / minnfr;
}
s->play.bufframes = s->play.nfrags * s->play.nfr;
-
}
if (s->play.fd != -1) {
- int frag = oss_get_frag_params(oss_calc_frag_shift(s->play.nfr, s->play.frame_size));
+ int frag = oss_get_frag_params(
+ oss_calc_frag_shift(s->play.nfr, s->play.frame_size));
if (ioctl(s->play.fd, SNDCTL_DSP_SETFRAGMENT, &frag))
LOG("Failed to set play fd with SNDCTL_DSP_SETFRAGMENT. frag: 0x%x",
frag);
@@ -1138,7 +1138,8 @@ oss_stream_init(cubeb * context, cubeb_stream ** stream,
s->play.name);
}
if (s->record.fd != -1) {
- int frag = oss_get_frag_params(oss_calc_frag_shift(s->record.nfr, s->record.frame_size));
+ int frag = oss_get_frag_params(
+ oss_calc_frag_shift(s->record.nfr, s->record.frame_size));
if (ioctl(s->record.fd, SNDCTL_DSP_SETFRAGMENT, &frag))
LOG("Failed to set record fd with SNDCTL_DSP_SETFRAGMENT. frag: 0x%x",
frag);
@@ -1183,7 +1184,8 @@ oss_stream_init(cubeb * context, cubeb_stream ** stream,
}
}
if (s->record.fd != -1) {
- if ((s->record.buf = calloc(s->record.bufframes, s->record.frame_size)) == NULL) {
+ if ((s->record.buf = calloc(s->record.bufframes, s->record.frame_size)) ==
+ NULL) {
ret = CUBEB_ERROR;
goto error;
}