Date: Sun, 13 Jan 2013 10:43:29 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r310313 - head/www/chromium/files Message-ID: <201301131043.r0DAhTOL011738@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Sun Jan 13 10:43:29 2013 New Revision: 310313 URL: http://svnweb.freebsd.org/changeset/ports/310313 Log: Fix build with clang 3.1 Submitted by: cy@ Added: head/www/chromium/files/patch-media__filters__decrypting_audio_decoder.cc (contents, props changed) Added: head/www/chromium/files/patch-media__filters__decrypting_audio_decoder.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-media__filters__decrypting_audio_decoder.cc Sun Jan 13 10:43:29 2013 (r310313) @@ -0,0 +1,10 @@ +--- media/filters/decrypting_audio_decoder.cc.orig 2013-01-07 18:40:10.000000000 -0800 ++++ media/filters/decrypting_audio_decoder.cc 2013-01-12 09:05:12.737640582 -0800 +@@ -30,7 +30,7 @@ + // Out of sync of 100ms would be pretty noticeable and we should keep any + // drift below that. + const int64 kOutOfSyncThresholdInMicroseconds = 100000; +- return std::abs(timestamp_1.InMicroseconds() - timestamp_2.InMicroseconds()) > ++ return std::labs(timestamp_1.InMicroseconds() - timestamp_2.InMicroseconds()) > + kOutOfSyncThresholdInMicroseconds; + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301131043.r0DAhTOL011738>