Skip to content

Commit

Permalink
Merge pull request #503 from carlo-bramini/master
Browse files Browse the repository at this point in the history
Fix compilation on MSVC
lgtm
  • Loading branch information
TeslaRus committed Feb 2, 2018
2 parents 8c47541 + 81c5b71 commit 754ec4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fmv/internal/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ static inline int av_parity_c(uint32_t v)

static inline int av_log2(uint32_t value)
{
#if 0
#ifndef __GNUC__
int ret = 0;
for(; value; value >>= 1, ++ret);
return ret ? ret - 1 : ret;
Expand Down

0 comments on commit 754ec4b

Please sign in to comment.