summaryrefslogtreecommitdiffstats
path: root/src/oss-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/oss-util.c')
-rw-r--r--src/oss-util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/oss-util.c b/src/oss-util.c
index bf6b62e2..d3a5fecb 100644
--- a/src/oss-util.c
+++ b/src/oss-util.c
@@ -22,11 +22,11 @@ int oss_auto_format(int fd, struct pa_sample_spec *ss) {
fprintf(stderr, "SNDCTL_DSP_SETFMT: %s\n", format != AFMT_U8 ? "No supported sample format" : strerror(errno));
return -1;
} else
- ss->format = SAMPLE_U8;
+ ss->format = PA_SAMPLE_U8;
} else
- ss->format = f == AFMT_S16_LE ? SAMPLE_S16LE : SAMPLE_S16BE;
+ ss->format = f == AFMT_S16_LE ? PA_SAMPLE_S16LE : PA_SAMPLE_S16BE;
} else
- ss->format = SAMPLE_S16NE;
+ ss->format = PA_SAMPLE_S16NE;
channels = 2;
if (ioctl(fd, SNDCTL_DSP_CHANNELS, &channels) < 0) {