Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim Bauch <bauch@struktur.de>2021-04-29 11:03:53 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2021-07-01 19:20:52 +0300
commit262023c0faf2bbe1b9031820f0bc584b9519aa29 (patch)
tree4e5c6feb6fe0cbfaae8b40de886d2c1a16f128f0 /src/constants.js
parent6c69b18b8a11aa1414e4038cf1daf79e69a6de25 (diff)
Add support for simulcast streams.
Signed-off-by: Joachim Bauch <bauch@struktur.de>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index e422f9a7f..0a51cee3d 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -124,3 +124,8 @@ export const PRIVACY = {
PUBLIC: 0,
PRIVATE: 1,
}
+export const SIMULCAST = {
+ LOW: 0,
+ MEDIUM: 1,
+ HIGH: 2,
+}