Skip to content

Commit

Permalink
AAC playback on RISC-V processor (ESP32C3) (#466)
Browse files Browse the repository at this point in the history
The library produces white noise when playing AAC streams because of a little/big endian issue.
  • Loading branch information
FedericoBusero authored Dec 19, 2021
1 parent dca33f8 commit 29e5e01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libhelix-aac/assembly.h
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ static __inline int CLZ(int x)
typedef union _U64 {
Word64 w64;
struct {
#ifdef __XTENSA__
#if defined(__XTENSA__) || defined (__riscv)
unsigned int lo32;
signed int hi32;
#else
Expand Down

0 comments on commit 29e5e01

Please sign in to comment.