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
17806f60
Commit
17806f60
authored
Nov 01, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu/murmur3: Enforce usual function attribute order.
parent
5c51d0ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
murmur3.c
libavutil/murmur3.c
+3
-3
No files found.
libavutil/murmur3.c
View file @
17806f60
...
...
@@ -60,7 +60,7 @@ static uint64_t inline get_k1(const uint8_t *src)
return
k
;
}
static
uint64_t
inline
get_k2
(
const
uint8_t
*
src
)
static
inline
uint64_t
get_k2
(
const
uint8_t
*
src
)
{
uint64_t
k
=
AV_RL64
(
src
+
8
);
k
*=
c2
;
...
...
@@ -69,7 +69,7 @@ static uint64_t inline get_k2(const uint8_t *src)
return
k
;
}
static
uint64_t
inline
update_h1
(
uint64_t
k
,
uint64_t
h1
,
uint64_t
h2
)
static
inline
uint64_t
update_h1
(
uint64_t
k
,
uint64_t
h1
,
uint64_t
h2
)
{
k
^=
h1
;
k
=
ROT
(
k
,
27
);
...
...
@@ -79,7 +79,7 @@ static uint64_t inline update_h1(uint64_t k, uint64_t h1, uint64_t h2)
return
k
;
}
static
uint64_t
inline
update_h2
(
uint64_t
k
,
uint64_t
h1
,
uint64_t
h2
)
static
inline
uint64_t
update_h2
(
uint64_t
k
,
uint64_t
h1
,
uint64_t
h2
)
{
k
^=
h2
;
k
=
ROT
(
k
,
31
);
...
...
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