Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/utils/webrtc/VideoConstrainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ const QUALITY = {
function VideoConstrainer(localMediaModel) {
this._localMediaModel = localMediaModel

// By default the constraints used when getting the video try to get the
// highest quality
this._currentQuality = QUALITY.HIGH
// The current quality is undefined until the constraints are applied at
// least once.
this._currentQuality = undefined

this._knownValidConstraintsForQuality = {}
}
Expand Down