Commit 4d102c47 authored by Max Kellermann's avatar Max Kellermann

pcm/Dsd2Pcm: convert parameter to `bool`

parent 91bc41ea
......@@ -195,7 +195,7 @@ void
dsd2pcm_translate(dsd2pcm_ctx *ptr,
size_t samples,
const unsigned char *src, ptrdiff_t src_stride,
int lsbf,
bool lsbf,
float *dst, ptrdiff_t dst_stride) noexcept
{
unsigned ffp;
......@@ -204,7 +204,6 @@ dsd2pcm_translate(dsd2pcm_ctx *ptr,
unsigned char* p;
double acc;
ffp = ptr->fifopos;
lsbf = lsbf ? 1 : 0;
while (samples-- > 0) {
bite1 = *src & 0xFFu;
if (lsbf) bite1 = bit_reverse(bite1);
......
......@@ -83,7 +83,7 @@ void
dsd2pcm_translate(dsd2pcm_ctx *ctx,
size_t samples,
const unsigned char *src, ptrdiff_t src_stride,
int lsbitfirst,
bool lsbitfirst,
float *dst, ptrdiff_t dst_stride) noexcept;
#endif /* include guard DSD2PCM_H_INCLUDED */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment