You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
713 B
21 lines
713 B
export default {
|
|
GOAL_BUFFER_LENGTH: 30,
|
|
MAX_GOAL_BUFFER_LENGTH: 60,
|
|
BACK_BUFFER_LENGTH: 30,
|
|
GOAL_BUFFER_LENGTH_RATE: 1,
|
|
// 0.5 MB/s
|
|
INITIAL_BANDWIDTH: 4194304,
|
|
// A fudge factor to apply to advertised playlist bitrates to account for
|
|
// temporary flucations in client bandwidth
|
|
BANDWIDTH_VARIANCE: 1.2,
|
|
// How much of the buffer must be filled before we consider upswitching
|
|
BUFFER_LOW_WATER_LINE: 0,
|
|
MAX_BUFFER_LOW_WATER_LINE: 30,
|
|
|
|
// TODO: Remove this when experimentalBufferBasedABR is removed
|
|
EXPERIMENTAL_MAX_BUFFER_LOW_WATER_LINE: 16,
|
|
|
|
BUFFER_LOW_WATER_LINE_RATE: 1,
|
|
// If the buffer is greater than the high water line, we won't switch down
|
|
BUFFER_HIGH_WATER_LINE: 30
|
|
};
|
|
|