Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: WavPack 4.80.0 Release Candidate available (Read 13591 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: WavPack 4.80.0 Release Candidate available

Reply #25
Small compiler issue (VS2013)

wavpack_local.h

was:

static __inline int count_bits (uint32_t av) { long res; return _BitScanReverse (&res, av) ? (int)(res + 1) : 0; }

needs to be (so can compile):

static __inline int count_bits (uint32_t av) { unsigned long res; return _BitScanReverse (&res, av) ? (int)(res + 1) : 0; }

https://msdn.microsoft.com/en-us/library/fbxyd7zd.aspx

Re: WavPack 4.80.0 Release Candidate available

Reply #26
Thanks, Spoon, I appreciate it!

I'm currently working in a branch, but I'll get this into master as soon as I merge back.

-David