Skip to content

Commit

Permalink
well, fix 16 bits as well...
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Oct 24, 2023
1 parent d5f2837 commit 0c856a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/squeezelite/output_i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ static void IRAM_ATTR spdif_convert(ISAMPLE_T *src, size_t frames, u32_t *dst) {

if (!count--) {
*dst++ = (vu << 24) | (PREAMBLE_B << 16) | 0xCCCC;
count = 192;
count = 191;
} else {
*dst++ = (vu << 24) | (PREAMBLE_M << 16) | 0xCCCC;
}
Expand Down

0 comments on commit 0c856a3

Please sign in to comment.