8000 AAC playback on RISC-V processor (ESP32C3) (#466) · murarduino/ESP8266Audio@29e5e01 · GitHub
[go: up one dir, main page]

Skip to content

Commit 29e5e01

Browse files
AAC playback on RISC-V processor (ESP32C3) (earlephilhower#466)
The library produces white noise when playing AAC streams because of a little/big endian issue.
1 parent dca33f8 commit 29e5e01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libhelix-aac/assembly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ static __inline int CLZ(int x)
558558
typedef union _U64 {
559559
Word64 w64;
560560
struct {
561-
#ifdef __XTENSA__
561+
#if defined(__XTENSA__) || defined (__riscv)
562562
unsigned int lo32;
563563
signed int hi32;
564564
#else

0 commit comments

Comments
 (0)
0