Skip to content

Commit

Permalink
Fix AAC HR decode on RP2040
Browse files Browse the repository at this point in the history
U64 big/little endian mismatch for ARM cores.  Remove the whole PowerPC support option as there aren't any commerically significant PPC embedded systems still being developed.
  • Loading branch information
earlephilhower authored Dec 18, 2024
1 parent 2f43b3b commit fbe69b8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/libhelix-aac/assembly.h
Original file line number Diff line number Diff line change
Expand Up @@ -558,14 +558,8 @@ static __inline int CLZ(int x)
typedef union _U64 {
Word64 w64;
struct {
#if defined(__XTENSA__) || defined (__riscv)
unsigned int lo32;
signed int hi32;
#else
/* PowerPC = big endian */
signed int hi32;
unsigned int lo32;
#endif
} r;
} U64;

Expand Down

0 comments on commit fbe69b8

Please sign in to comment.