Skip to content

Commit 6043924

Browse files
committed
Revert "Raise the default bandwidth estimate"
This reverts commit a4d2aca.
1 parent fce6cd4 commit 6043924

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/util/player_configuration.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ goog.require('shaka.util.ConfigUtils');
3535
shaka.util.PlayerConfiguration = class {
3636
/** @return {shaka.extern.PlayerConfiguration} */
3737
static createDefault() {
38-
// This is a relatively safe default in the absence of clues from the
39-
// browser. For slower connections, the default estimate may be too high.
40-
let bandwidthEstimate = 1e6; // 1Mbps
38+
// This is a relatively safe default, since 3G cell connections
39+
// are faster than this. For slower connections, such as 2G,
40+
// the default estimate may be too high.
41+
let bandwidthEstimate = 500e3; // 500kbps
4142

4243
let abrMaxHeight = Infinity;
4344

0 commit comments

Comments
 (0)