[Bug 209077] net/opal: Fix build with libc++ 3.8.0
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Mon Jun 6 15:36:20 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209077
--- Comment #3 from Dimitry Andric <dim at FreeBSD.org> ---
E.g. something like this:
--- plugins/video/common/mpi.cxx.orig 2013-02-20 02:18:05 UTC
+++ plugins/video/common/mpi.cxx
@@ -118,6 +118,11 @@ unsigned MPIList::getSupportedMPI( unsig
return PLUGINCODEC_MPI_DISABLED;
}
+static inline unsigned udiff(unsigned u, unsigned v)
+{
+ return u >= v ? u - v : v - u;
+}
+
bool MPIList::getNegotiatedMPI( unsigned* width, unsigned* height, unsigned*
_frameTime)
{
unsigned i = 0;
@@ -132,8 +137,8 @@ bool MPIList::getNegotiatedMPI( unsigned
// to the desired one or matches it
for (i=0; i < MPIs.size(); i++) {
// we square the value in order to get absolute distances
- distance = ( abs(MPIs[i].width - desiredWidth ) *
- abs(MPIs[i].height - desiredHeight) );
+ distance = ( udiff(MPIs[i].width, desiredWidth ) *
+ udiff(MPIs[i].height, desiredHeight) );
if (distance < minDistance) {
minDistance = distance;
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-gnome
mailing list