2 * Copyright (C) 2013 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "intreadwrite.h"
28 typedef struct AVMurMur3
{
35 AVMurMur3
*av_murmur3_alloc(void)
37 return av_mallocz(sizeof(AVMurMur3
));
40 void av_murmur3_init_seeded(AVMurMur3
*c
, uint64_t seed
)
42 memset(c
, 0, sizeof(*c
));
46 void av_murmur3_init(AVMurMur3
*c
)
48 // arbitrary random number as seed
49 av_murmur3_init_seeded(c
, 0x725acc55daddca55);
52 static const uint64_t c1
= UINT64_C(0x87c37b91114253d5);
53 static const uint64_t c2
= UINT64_C(0x4cf5ad432745937f);
55 #define ROT(a, b) (((a) << (b)) | ((a) >> (64 - (b))))
57 static uint64_t inline get_k1(const uint8_t *src
)
59 uint64_t k
= AV_RL64(src
);
66 static inline uint64_t get_k2(const uint8_t *src
)
68 uint64_t k
= AV_RL64(src
+ 8);
75 static inline uint64_t update_h1(uint64_t k
, uint64_t h1
, uint64_t h2
)
85 static inline uint64_t update_h2(uint64_t k
, uint64_t h1
, uint64_t h2
)
95 void av_murmur3_update(AVMurMur3
*c
, const uint8_t *src
, size_t len
)
98 uint64_t h1
= c
->h1
, h2
= c
->h2
;
100 if (len
<= 0) return;
102 if (c
->state_pos
> 0) {
103 while (c
->state_pos
< 16) {
104 c
->state
[c
->state_pos
++] = *src
++;
105 if (--len
<= 0) return;
108 k1
= get_k1(c
->state
);
109 k2
= get_k2(c
->state
);
110 h1
= update_h1(k1
, h1
, h2
);
111 h2
= update_h2(k2
, h1
, h2
);
114 end
= src
+ (len
& ~15);
116 // These could be done sequentially instead
117 // of interleaved, but like this is over 10% faster
120 h1
= update_h1(k1
, h1
, h2
);
121 h2
= update_h2(k2
, h1
, h2
);
129 memcpy(c
->state
, src
, len
);
134 static inline uint64_t fmix(uint64_t k
)
137 k
*= UINT64_C(0xff51afd7ed558ccd);
139 k
*= UINT64_C(0xc4ceb9fe1a85ec53);
144 void av_murmur3_final(AVMurMur3
*c
, uint8_t dst
[16])
146 uint64_t h1
= c
->h1
, h2
= c
->h2
;
147 memset(c
->state
+ c
->state_pos
, 0, sizeof(c
->state
) - c
->state_pos
);
148 h1
^= get_k1(c
->state
) ^ c
->len
;
149 h2
^= get_k2(c
->state
) ^ c
->len
;
157 AV_WL64(dst
+ 8, h2
);