File tree 2 files changed +6
-0
lines changed 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ services:
135
135
- START_WITH_AUDIO_MUTED
136
136
- START_VIDEO_MUTED
137
137
- START_WITH_VIDEO_MUTED
138
+ - TESTING_AV1_SUPPORT
138
139
- TOKEN_AUTH_URL
139
140
- TOOLBAR_BUTTONS
140
141
- TRANSLATION_LANGUAGES
Original file line number Diff line number Diff line change 67
67
{ { $ROOM_PASSWORD_DIGITS := . Env . ROOM_PASSWORD_DIGITS | default "false" - } }
68
68
{ { $WHITEBOARD_COLLAB_SERVER_PUBLIC_URL := . Env . WHITEBOARD_COLLAB_SERVER_PUBLIC_URL | default "" - } }
69
69
{ { $WHITEBOARD_ENABLED := . Env . WHITEBOARD_ENABLED | default "false" | toBool - } }
70
+ { { $TESTING_AV1_SUPPORT := . Env . TESTING_AV1_SUPPORT | default "false" | toBool - } }
70
71
71
72
// Video configuration.
72
73
//
@@ -477,3 +478,7 @@ config.e2eping.maxMessagePerSecond = {{ .Env.E2EPING_MAX_MESSAGE_PER_SECOND }};
477
478
if ( ! config . hasOwnProperty ( 'whiteboard' ) ) config . whiteboard = { } ;
478
479
config . whiteboard . enabled = { { $WHITEBOARD_ENABLED } } ;
479
480
config . whiteboard . collabServerBaseUrl = '{{ $WHITEBOARD_COLLAB_SERVER_PUBLIC_URL }}' ;
481
+
482
+ // Testing
483
+ if ( ! config . hasOwnProperty ( 'testing' ) ) config . testing = { } ;
484
+ config . testing . enableAv1Support = { { $TESTING_AV1_SUPPORT } } ;
You can’t perform that action at this time.
0 commit comments