Skip to content

Commit

Permalink
1.5.16: fix big endian x64
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Jul 28, 2022
1 parent 1e54ac7 commit 399928f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/endianness.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ uint64_t oi64(uint64_t i)
else if (et == 1)
return (i << 56
| (i & (255ULL << 8)) << 40
| (i & (255ULL << 16)) >> 24
| (i & (255ULL << 24)) >> 8
| (i & (255ULL << 16)) << 24
| (i & (255ULL << 24)) << 8
| (i & (255ULL << 32)) >> 8
| (i & (255ULL << 40)) >> 24
| (i & (255ULL << 48)) >> 40
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define OPUSCOMMENT_VERSION "1.5.15"
#define OPUSCOMMENT_VERSION "1.5.16"

#define OPUSCOMMENT_REVISION_YEAR (2022 - 1900)
#define OPUSCOMMENT_REVISION_MONTH (7 - 1)
#define OPUSCOMMENT_REVISION_DAY 26
#define OPUSCOMMENT_REVISION_DAY 28

0 comments on commit 399928f

Please sign in to comment.