Browse Source

avutil/murmur3: Add () to protect the ROT() arguments

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
cdee0c9d5f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/murmur3.c

+ 1
- 1
libavutil/murmur3.c View File

@@ -49,7 +49,7 @@ void av_murmur3_init(AVMurMur3 *c)
static const uint64_t c1 = UINT64_C(0x87c37b91114253d5);
static const uint64_t c2 = UINT64_C(0x4cf5ad432745937f);

#define ROT(a, b) ((a << b) | (a >> (64 - b)))
#define ROT(a, b) (((a) << (b)) | ((a) >> (64 - (b))))

static uint64_t inline get_k1(const uint8_t *src)
{


Loading…
Cancel
Save