Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
bbdadbda
Commit
bbdadbda
authored
May 26, 2002
by
Nick Kurshev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
untested generic bswap64
Originally committed as revision 603 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3120d2a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
bswap.h
libavcodec/bswap.h
+13
-0
No files found.
libavcodec/bswap.h
View file @
bbdadbda
...
...
@@ -5,6 +5,7 @@
#include <byteswap.h>
#else
#include <inttypes.h>
/* for __WORDSIZE */
#ifdef ARCH_X86
inline
static
unsigned
short
ByteSwap16
(
unsigned
short
x
)
{
...
...
@@ -52,6 +53,17 @@ inline static unsigned long long int ByteSwap64(unsigned long long int x)
((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
(((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
#if __WORDSIZE >= 64
# define bswap_64(x) \
((((x) & 0xff00000000000000ull) >> 56) \
| (((x) & 0x00ff000000000000ull) >> 40) \
| (((x) & 0x0000ff0000000000ull) >> 24) \
| (((x) & 0x000000ff00000000ull) >> 8) \
| (((x) & 0x00000000ff000000ull) << 8) \
| (((x) & 0x0000000000ff0000ull) << 24) \
| (((x) & 0x000000000000ff00ull) << 40) \
| (((x) & 0x00000000000000ffull) << 56))
#else
#define bswap_64(x) \
(__extension__ \
({ union { __extension__ unsigned long long int __ll; \
...
...
@@ -60,6 +72,7 @@ inline static unsigned long long int ByteSwap64(unsigned long long int x)
__r.__l[0] = bswap_32 (__w.__l[1]); \
__r.__l[1] = bswap_32 (__w.__l[0]); \
__r.__ll; }))
#endif
#endif
/* !ARCH_X86 */
#endif
/* !HAVE_BYTESWAP_H */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment