summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1122547
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2015-05-12 18:06:36 +0000
committerJan Beich <jbeich@FreeBSD.org>2015-05-12 18:06:36 +0000
commit83847c65aa00a6fb44066d0264612f01a874fae5 (patch)
treeb4cc42220c1fd95a72b60309c084d6711c693754 /www/firefox/files/patch-bug1122547
parentThis port links against libcrypto, so use the openssl header and not the libm... (diff)
- Update NSS and ca_root_nss to 3.19
- Update Firefox to 38.0 - Update Firefox ESR and libxul to 31.7.0 - Update Thunderbird to 31.7.0 - Update Enigmail to 1.8.2 Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.19_release_notes Changes: https://www.mozilla.org/firefox/38.0/releasenotes/ Changes: https://www.mozilla.org/firefox/31.7.0/releasenotes/ Changes: http://sourceforge.net/p/enigmail/bugs/search/?q=status%3Afixed+%26%26+_fixed%3A1.8.1 MFH: 2015Q2 Security: https://vuxml.freebsd.org/freebsd/d9b43004-f5fd-4807-b1d7-dbf66455b244.html
Notes
Notes: svn path=/head/; revision=386162
Diffstat (limited to 'www/firefox/files/patch-bug1122547')
-rw-r--r--www/firefox/files/patch-bug112254720
1 files changed, 0 insertions, 20 deletions
diff --git a/www/firefox/files/patch-bug1122547 b/www/firefox/files/patch-bug1122547
deleted file mode 100644
index ce65ec961912..000000000000
--- a/www/firefox/files/patch-bug1122547
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git media/webrtc/trunk/webrtc/modules/video_coding/main/source/receiver.cc media/webrtc/trunk/webrtc/modules/video_coding/main/source/receiver.cc
-index e68a104..a090241 100644
---- media/webrtc/trunk/webrtc/modules/video_coding/main/source/receiver.cc
-+++ media/webrtc/trunk/webrtc/modules/video_coding/main/source/receiver.cc
-@@ -159,12 +159,13 @@ VCMEncodedFrame* VCMReceiver::FrameForDecoding(
- // Assume that render timing errors are due to changes in the video stream.
- if (next_render_time_ms < 0) {
- timing_error = true;
-- } else if (std::abs(next_render_time_ms - now_ms) > max_video_delay_ms_) {
-+ } else if (std::abs(static_cast<int>(next_render_time_ms - now_ms)) >
-+ max_video_delay_ms_) {
- WEBRTC_TRACE(webrtc::kTraceWarning, webrtc::kTraceVideoCoding,
- VCMId(vcm_id_, receiver_id_),
- "This frame is out of our delay bounds, resetting jitter "
- "buffer: %d > %d",
-- static_cast<int>(std::abs(next_render_time_ms - now_ms)),
-+ std::abs(static_cast<int>(next_render_time_ms - now_ms)),
- max_video_delay_ms_);
- timing_error = true;
- } else if (static_cast<int>(timing_->TargetVideoDelay()) >