This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Enabling transport-cc for audio codecs (the previous commit on this | |
| branch) added the transport-sequence-number RTP header extension and | |
| transport-cc RTCP feedback to audio. As a side effect, libwebrtc's | |
| bandwidth-estimation (BWE) and probing paths are now active for the | |
| audio send stream. This in turn exposes a long-standing accounting gap | |
| in Firefox's libwebrtc glue that causes BWE probing to spray | |
| padding-only RTP packets on the audio media SSRC. Those packets reach | |
| the encoded-receive frame transformer as audio frames with empty | |
| payloads and no audio-level extension, breaking | |
| webrtc-encoded-transform/tentative/RTCEncodedAudioFrame-audiolevel.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <title>navigator.keyboard.lock polyfill</title> | |
| <body> | |
| <button onclick="navigator.keyboard.lock();">lock</button> | |
| <button onclick="navigator.keyboard.unlock()">unlock</button> | |
| <button onclick="document.body.requestFullscreen({keyboardLock: 'browser'})">fullscreen/ w lock</button> | |
| <button onclick="document.body.requestFullscreen();">fullscreen</button> | |
| <button onclick="document.exitFullscreen();">exit fullscreen</button> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*global jQuery, Router */ | |
| jQuery(function ($) { | |
| 'use strict'; | |
| var util = { | |
| uuid: function () { | |
| /*jshint bitwise:false */ | |
| var i, random; | |
| var uuid = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // profiling_zone.c | |
| #include <malloc/malloc.h> | |
| #include <dlfcn.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> | |
| // Profiling callback function pointers | |
| static void (*profiling_alloc_callback)(void* ptr, size_t reserved_size, size_t used_size) = NULL; | |
| static void (*profiling_free_callback)(void* ptr, size_t reserved_size, size_t used_size) = NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit d38a61ab87acab9c1e379cfe952082c22da08d55 | |
| Author: Jeff Muizelaar <jmuizelaar@mozilla.com> | |
| Date: Fri Nov 15 09:57:49 2024 +0100 | |
| trr channel annotation | |
| diff --git a/netwerk/protocol/http/TRRServiceChannel.cpp b/netwerk/protocol/http/TRRServiceChannel.cpp | |
| index 85e6d299e869f..dd4335149aa2e 100644 | |
| --- a/netwerk/protocol/http/TRRServiceChannel.cpp | |
| +++ b/netwerk/protocol/http/TRRServiceChannel.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit fbaacca0ea987d5e231f5dc05fd11d222bfdf2b0 | |
| Author: Jeff Muizelaar <jmuizelaar@mozilla.com> | |
| Date: Wed Nov 6 23:19:11 2024 -0500 | |
| Socket markers | |
| diff --git a/netwerk/base/nsSocketTransport2.cpp b/netwerk/base/nsSocketTransport2.cpp | |
| index 8952bbebd9f9a..e800018820091 100644 | |
| --- a/netwerk/base/nsSocketTransport2.cpp | |
| +++ b/netwerk/base/nsSocketTransport2.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "success": true, | |
| "errors": [], | |
| "result": { | |
| "main": { | |
| "timestamps": [ | |
| "2025-03-10T00:00:00Z", | |
| "2025-03-17T00:00:00Z", | |
| "2025-03-24T00:00:00Z", | |
| "2025-03-31T00:00:00Z", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit 815f5a4bd71cdd73dad134125dde89c8e6ec45bd | |
| Author: Jeff Muizelaar <jmuizelaar@mozilla.com> | |
| Date: Fri Nov 15 10:38:17 2024 +0100 | |
| Rust flow | |
| diff --git a/netwerk/protocol/http/nsHttpTransaction.cpp b/netwerk/protocol/http/nsHttpTransaction.cpp | |
| index e6bba66b6fff9..ee6fc53401720 100644 | |
| --- a/netwerk/protocol/http/nsHttpTransaction.cpp | |
| +++ b/netwerk/protocol/http/nsHttpTransaction.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class StringWriter extends Writer { | |
| public StringWriter(Writer out) { | |
| this.out = out; | |
| } | |
| @Override | |
| public void write(char[] cbuf, int off, int len) throws IOException { | |
| for (int i = 0; i < len; i++) { | |
| char c = cbuf[i + off]; | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import os | |
| tests_with_workers = ["Air", "Basic", "ML", "Babylon", "cdjs", | |
| "first-inspector-code-load", "multi-inspector-code-load", | |
| "Box2D", "octane-code-load", "crypto", "delta-blue", | |
| "earley-boyer", "gbemu", "mandreel", "navier-stokes", | |
| "pdfjs", "raytrace", "regexp", "richards", "splay", | |
| "typescript", "octane-zlib", "FlightPlanner", "OfflineAssembler", | |
| "UniPoker", "async-fs", "float-mm.c", "hash-map", |
NewerOlder