LocalParticipant.kt
44.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
/*
* Copyright 2023-2024 LiveKit, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.livekit.android.room.participant
import android.Manifest
import android.content.Context
import android.content.Intent
import androidx.annotation.VisibleForTesting
import com.google.protobuf.ByteString
import dagger.assisted.Assisted
import dagger.assisted.AssistedFactory
import dagger.assisted.AssistedInject
import io.livekit.android.dagger.CapabilitiesGetter
import io.livekit.android.dagger.InjectionNames
import io.livekit.android.events.ParticipantEvent
import io.livekit.android.room.ConnectionState
import io.livekit.android.room.DefaultsManager
import io.livekit.android.room.RTCEngine
import io.livekit.android.room.Room
import io.livekit.android.room.TrackBitrateInfo
import io.livekit.android.room.isSVCCodec
import io.livekit.android.room.track.DataPublishReliability
import io.livekit.android.room.track.LocalAudioTrack
import io.livekit.android.room.track.LocalAudioTrackOptions
import io.livekit.android.room.track.LocalScreencastVideoTrack
import io.livekit.android.room.track.LocalTrackPublication
import io.livekit.android.room.track.LocalVideoTrack
import io.livekit.android.room.track.LocalVideoTrackOptions
import io.livekit.android.room.track.Track
import io.livekit.android.room.track.TrackException
import io.livekit.android.room.track.TrackPublication
import io.livekit.android.room.track.VideoCaptureParameter
import io.livekit.android.room.track.VideoCodec
import io.livekit.android.room.track.VideoEncoding
import io.livekit.android.room.util.EncodingUtils
import io.livekit.android.util.LKLog
import io.livekit.android.util.flow
import io.livekit.android.webrtc.sortVideoCodecPreferences
import kotlinx.coroutines.CoroutineDispatcher
import kotlinx.coroutines.Job
import kotlinx.coroutines.launch
import kotlinx.coroutines.sync.Mutex
import kotlinx.coroutines.sync.withLock
import livekit.LivekitModels
import livekit.LivekitRtc
import livekit.LivekitRtc.AddTrackRequest
import livekit.LivekitRtc.SimulcastCodec
import livekit.org.webrtc.EglBase
import livekit.org.webrtc.PeerConnectionFactory
import livekit.org.webrtc.RtpParameters
import livekit.org.webrtc.RtpTransceiver
import livekit.org.webrtc.RtpTransceiver.RtpTransceiverInit
import livekit.org.webrtc.SurfaceTextureHelper
import livekit.org.webrtc.VideoCapturer
import livekit.org.webrtc.VideoProcessor
import javax.inject.Named
import kotlin.math.max
class LocalParticipant
@AssistedInject
internal constructor(
@Assisted
internal var dynacast: Boolean,
internal val engine: RTCEngine,
private val peerConnectionFactory: PeerConnectionFactory,
private val context: Context,
private val eglBase: EglBase,
private val screencastVideoTrackFactory: LocalScreencastVideoTrack.Factory,
private val videoTrackFactory: LocalVideoTrack.Factory,
private val audioTrackFactory: LocalAudioTrack.Factory,
private val defaultsManager: DefaultsManager,
@Named(InjectionNames.DISPATCHER_DEFAULT)
coroutineDispatcher: CoroutineDispatcher,
@Named(InjectionNames.SENDER)
private val capabilitiesGetter: CapabilitiesGetter,
) : Participant(Sid(""), null, coroutineDispatcher) {
var audioTrackCaptureDefaults: LocalAudioTrackOptions by defaultsManager::audioTrackCaptureDefaults
var audioTrackPublishDefaults: AudioTrackPublishDefaults by defaultsManager::audioTrackPublishDefaults
var videoTrackCaptureDefaults: LocalVideoTrackOptions by defaultsManager::videoTrackCaptureDefaults
var videoTrackPublishDefaults: VideoTrackPublishDefaults by defaultsManager::videoTrackPublishDefaults
var screenShareTrackCaptureDefaults: LocalVideoTrackOptions by defaultsManager::screenShareTrackCaptureDefaults
var screenShareTrackPublishDefaults: VideoTrackPublishDefaults by defaultsManager::screenShareTrackPublishDefaults
private var republishes: List<LocalTrackPublication>? = null
private val localTrackPublications
get() = trackPublications.values
.mapNotNull { it as? LocalTrackPublication }
.toList()
private val jobs = mutableMapOf<Any, Job>()
// For ensuring that only one caller can execute setTrackEnabled at a time.
// Without it, there's a potential to create multiple of the same source,
// Camera has deadlock issues with multiple CameraCapturers trying to activate/stop.
private val sourcePubLocks = Track.Source.values()
.associate { source -> source to Mutex() }
/**
* Creates an audio track, recording audio through the microphone with the given [options].
*
* @param name The name of the track.
* @param options The capture options to use for this track, or [Room.audioTrackCaptureDefaults] if none is passed.
* @exception SecurityException will be thrown if [Manifest.permission.RECORD_AUDIO] permission is missing.
*/
fun createAudioTrack(
name: String = "",
options: LocalAudioTrackOptions = audioTrackCaptureDefaults,
): LocalAudioTrack {
return LocalAudioTrack.createTrack(context, peerConnectionFactory, options, audioTrackFactory, name)
}
/**
* Creates a video track, recording video through the supplied [capturer].
*
* This method will call [VideoCapturer.initialize] and handle the lifecycle of
* [SurfaceTextureHelper].
*
* @param name The name of the track.
* @param capturer The capturer to use for this track.
* @param options The capture options to use for this track, or [Room.videoTrackCaptureDefaults] if none is passed.
* @param videoProcessor A video processor to attach to this track that can modify the frames before publishing.
*/
fun createVideoTrack(
name: String = "",
capturer: VideoCapturer,
options: LocalVideoTrackOptions = videoTrackCaptureDefaults.copy(),
videoProcessor: VideoProcessor? = null,
): LocalVideoTrack {
return LocalVideoTrack.createTrack(
peerConnectionFactory = peerConnectionFactory,
context = context,
name = name,
capturer = capturer,
options = options,
rootEglBase = eglBase,
trackFactory = videoTrackFactory,
videoProcessor = videoProcessor,
)
}
/**
* Creates a video track, recording video through the camera with the given [options].
*
* @param name The name of the track
* @param options The capture options to use for this track, or [Room.videoTrackCaptureDefaults] if none is passed.
* @param videoProcessor A video processor to attach to this track that can modify the frames before publishing.
* @exception SecurityException will be thrown if [Manifest.permission.CAMERA] permission is missing.
*/
fun createVideoTrack(
name: String = "",
options: LocalVideoTrackOptions = videoTrackCaptureDefaults.copy(),
videoProcessor: VideoProcessor? = null,
): LocalVideoTrack {
return LocalVideoTrack.createCameraTrack(
peerConnectionFactory,
context,
name,
options,
eglBase,
videoTrackFactory,
videoProcessor = videoProcessor,
)
}
/**
* Creates a screencast video track.
*
* @param name The name of the track.
* @param mediaProjectionPermissionResultData The resultData returned from launching
* [MediaProjectionManager.createScreenCaptureIntent()](https://developer.android.com/reference/android/media/projection/MediaProjectionManager#createScreenCaptureIntent()).
* @param options The capture options to use for this track, or [Room.screenShareTrackCaptureDefaults] if none is passed.
* @param videoProcessor A video processor to attach to this track that can modify the frames before publishing.
*/
fun createScreencastTrack(
name: String = "",
mediaProjectionPermissionResultData: Intent,
options: LocalVideoTrackOptions = screenShareTrackCaptureDefaults.copy(),
videoProcessor: VideoProcessor? = null,
): LocalScreencastVideoTrack {
val screencastOptions = options.copy(isScreencast = true)
return LocalScreencastVideoTrack.createTrack(
mediaProjectionPermissionResultData,
peerConnectionFactory,
context,
name,
screencastOptions,
eglBase,
screencastVideoTrackFactory,
videoProcessor,
)
}
override fun getTrackPublication(source: Track.Source): LocalTrackPublication? {
return super.getTrackPublication(source) as? LocalTrackPublication
}
override fun getTrackPublicationByName(name: String): LocalTrackPublication? {
return super.getTrackPublicationByName(name) as? LocalTrackPublication
}
/**
* If set to enabled, creates and publishes a camera video track if not already done, and starts the camera.
*
* If set to disabled, mutes and stops the camera.
*
* This will use capture and publish default options from [Room].
*
* @see Room.videoTrackCaptureDefaults
* @see Room.videoTrackPublishDefaults
*/
suspend fun setCameraEnabled(enabled: Boolean) {
setTrackEnabled(Track.Source.CAMERA, enabled)
}
/**
* If set to enabled, creates and publishes a microphone audio track if not already done, and unmutes the mic.
*
* If set to disabled, mutes the mic.
*
* This will use capture and publish default options from [Room].
*
* @see Room.audioTrackCaptureDefaults
* @see Room.audioTrackPublishDefaults
*/
suspend fun setMicrophoneEnabled(enabled: Boolean) {
setTrackEnabled(Track.Source.MICROPHONE, enabled)
}
/**
* If set to enabled, creates and publishes a screenshare video track.
*
* If set to disabled, unpublishes the screenshare video track.
*
* This will use capture and publish default options from [Room].
*
* @param mediaProjectionPermissionResultData The resultData returned from launching
* [MediaProjectionManager.createScreenCaptureIntent()](https://developer.android.com/reference/android/media/projection/MediaProjectionManager#createScreenCaptureIntent()).
* @throws IllegalArgumentException if attempting to enable screenshare without [mediaProjectionPermissionResultData]
* @see Room.screenShareTrackCaptureDefaults
* @see Room.screenShareTrackPublishDefaults
*/
suspend fun setScreenShareEnabled(
enabled: Boolean,
mediaProjectionPermissionResultData: Intent? = null,
) {
setTrackEnabled(Track.Source.SCREEN_SHARE, enabled, mediaProjectionPermissionResultData)
}
private suspend fun setTrackEnabled(
source: Track.Source,
enabled: Boolean,
mediaProjectionPermissionResultData: Intent? = null,
) {
val pubLock = sourcePubLocks[source]!!
pubLock.withLock {
val pub = getTrackPublication(source)
if (enabled) {
if (pub != null) {
pub.muted = false
if (source == Track.Source.CAMERA && pub.track is LocalVideoTrack) {
(pub.track as? LocalVideoTrack)?.startCapture()
}
} else {
when (source) {
Track.Source.CAMERA -> {
val track = createVideoTrack()
track.startCapture()
publishVideoTrack(track)
}
Track.Source.MICROPHONE -> {
val track = createAudioTrack()
publishAudioTrack(track)
}
Track.Source.SCREEN_SHARE -> {
if (mediaProjectionPermissionResultData == null) {
throw IllegalArgumentException("Media Projection permission result data is required to create a screen share track.")
}
val track =
createScreencastTrack(mediaProjectionPermissionResultData = mediaProjectionPermissionResultData)
track.startForegroundService(null, null)
track.startCapture()
publishVideoTrack(track, options = VideoTrackPublishOptions(null, screenShareTrackPublishDefaults))
}
else -> {
LKLog.w { "Attempting to enable an unknown source, ignoring." }
}
}
}
} else {
pub?.track?.let { track ->
// screenshare cannot be muted, unpublish instead
if (pub.source == Track.Source.SCREEN_SHARE) {
unpublishTrack(track)
} else {
pub.muted = true
// Release camera session so other apps can use.
if (pub.source == Track.Source.CAMERA && track is LocalVideoTrack) {
track.stopCapture()
}
}
}
}
return@withLock
}
}
/**
* Publishes an audio track.
*
* @param track The track to publish.
* @param options The publish options to use, or [Room.audioTrackPublishDefaults] if none is passed.
*/
suspend fun publishAudioTrack(
track: LocalAudioTrack,
options: AudioTrackPublishOptions = AudioTrackPublishOptions(
null,
audioTrackPublishDefaults,
),
publishListener: PublishListener? = null,
) {
val encodings = listOf(
RtpParameters.Encoding(null, true, null).apply {
if (options.audioBitrate != null && options.audioBitrate > 0) {
maxBitrateBps = options.audioBitrate
}
},
)
val publication = publishTrackImpl(
track = track,
options = options,
requestConfig = {
disableDtx = !options.dtx
disableRed = !options.red
source = options.source?.toProto() ?: LivekitModels.TrackSource.MICROPHONE
},
encodings = encodings,
publishListener = publishListener,
)
if (publication != null) {
val job = scope.launch {
track::features.flow.collect {
engine.updateLocalAudioTrack(publication.sid, it)
}
}
jobs[publication] = job
}
}
/**
* Publishes an video track.
*
* @param track The track to publish.
* @param options The publish options to use, or [Room.videoTrackPublishDefaults] if none is passed.
*/
suspend fun publishVideoTrack(
track: LocalVideoTrack,
options: VideoTrackPublishOptions = VideoTrackPublishOptions(null, videoTrackPublishDefaults),
publishListener: PublishListener? = null,
) {
val isSVC = isSVCCodec(options.videoCodec)
@Suppress("NAME_SHADOWING") var options = options
if (isSVC) {
dynacast = true
// Ensure backup codec and scalability for svc codecs.
if (options.backupCodec == null) {
options = options.copy(backupCodec = BackupVideoCodec())
}
if (options.scalabilityMode == null) {
options = options.copy(scalabilityMode = "L3T3_KEY")
}
}
val encodings = computeVideoEncodings(track.dimensions, options)
val videoLayers =
EncodingUtils.videoLayersFromEncodings(track.dimensions.width, track.dimensions.height, encodings, isSVC)
publishTrackImpl(
track = track,
options = options,
requestConfig = {
width = track.dimensions.width
height = track.dimensions.height
source = options.source?.toProto() ?: if (track.options.isScreencast) {
LivekitModels.TrackSource.SCREEN_SHARE
} else {
LivekitModels.TrackSource.CAMERA
}
addAllLayers(videoLayers)
addSimulcastCodecs(
with(SimulcastCodec.newBuilder()) {
codec = options.videoCodec
cid = track.rtcTrack.id()
build()
},
)
// set up backup codec
if (options.backupCodec?.codec != null && options.videoCodec != options.backupCodec?.codec) {
addSimulcastCodecs(
with(SimulcastCodec.newBuilder()) {
codec = options.backupCodec!!.codec
cid = ""
build()
},
)
}
},
encodings = encodings,
publishListener = publishListener,
)
}
/**
* @return true if the track publish was successful.
*/
private suspend fun publishTrackImpl(
track: Track,
options: TrackPublishOptions,
requestConfig: AddTrackRequest.Builder.() -> Unit,
encodings: List<RtpParameters.Encoding> = emptyList(),
publishListener: PublishListener? = null,
): LocalTrackPublication? {
@Suppress("NAME_SHADOWING") var options = options
@Suppress("NAME_SHADOWING") var encodings = encodings
if (localTrackPublications.any { it.track == track }) {
publishListener?.onPublishFailure(TrackException.PublishException("Track has already been published"))
return null
}
val cid = track.rtcTrack.id()
val builder = AddTrackRequest.newBuilder().apply {
this.requestConfig()
}
val trackInfo = engine.addTrack(
cid = cid,
name = options.name ?: track.name,
kind = track.kind.toProto(),
stream = options.stream,
builder = builder,
)
if (options is VideoTrackPublishOptions) {
// server might not support the codec the client has requested, in that case, fallback
// to a supported codec
val primaryCodecMime = trackInfo.codecsList.firstOrNull()?.mimeType
if (primaryCodecMime != null) {
val updatedCodec = primaryCodecMime.mimeTypeToVideoCodec()
if (updatedCodec != null && updatedCodec != options.videoCodec) {
LKLog.d { "falling back to server selected codec: $updatedCodec" }
options = options.copy(videoCodec = updatedCodec)
// recompute encodings since bitrates/etc could have changed
encodings = computeVideoEncodings((track as LocalVideoTrack).dimensions, options)
}
}
}
val transInit = RtpTransceiverInit(
RtpTransceiver.RtpTransceiverDirection.SEND_ONLY,
listOf(this.sid.value),
encodings,
)
val transceiver = engine.createSenderTransceiver(track.rtcTrack, transInit)
when (track) {
is LocalVideoTrack -> track.transceiver = transceiver
is LocalAudioTrack -> track.transceiver = transceiver
else -> {
throw IllegalArgumentException("Trying to publish a non local track of type ${track.javaClass}")
}
}
if (transceiver == null) {
publishListener?.onPublishFailure(TrackException.PublishException("null sender returned from peer connection"))
return null
}
track.statsGetter = engine.createStatsGetter(transceiver.sender)
// Handle trackBitrates
if (encodings.isNotEmpty()) {
if (options is VideoTrackPublishOptions && isSVCCodec(options.videoCodec) && encodings.firstOrNull()?.maxBitrateBps != null) {
engine.registerTrackBitrateInfo(
cid = cid,
TrackBitrateInfo(
codec = options.videoCodec,
maxBitrate = (encodings.first().maxBitrateBps?.div(1000) ?: 0).toLong(),
),
)
}
}
if (options is VideoTrackPublishOptions) {
// Set preferred video codec order
transceiver.sortVideoCodecPreferences(options.videoCodec, capabilitiesGetter)
(track as LocalVideoTrack).codec = options.videoCodec
val rtpParameters = transceiver.sender.parameters
rtpParameters.degradationPreference = options.degradationPreference
transceiver.sender.parameters = rtpParameters
}
val publication = LocalTrackPublication(
info = trackInfo,
track = track,
participant = this,
options = options,
)
addTrackPublication(publication)
LKLog.v { "add track publication $publication" }
publishListener?.onPublishSuccess(publication)
internalListener?.onTrackPublished(publication, this)
eventBus.postEvent(ParticipantEvent.LocalTrackPublished(this, publication), scope)
return publication
}
private fun computeVideoEncodings(
dimensions: Track.Dimensions,
options: VideoTrackPublishOptions,
): List<RtpParameters.Encoding> {
val (width, height) = dimensions
var encoding = options.videoEncoding
val simulcast = options.simulcast
val scalabilityMode = options.scalabilityMode
if ((encoding == null && !simulcast) || width == 0 || height == 0) {
return emptyList()
}
if (encoding == null) {
encoding = EncodingUtils.determineAppropriateEncoding(width, height)
LKLog.d { "using video encoding: $encoding" }
}
val encodings = mutableListOf<RtpParameters.Encoding>()
if (scalabilityMode != null && isSVCCodec(options.videoCodec)) {
val rtpEncoding = encoding.toRtpEncoding()
rtpEncoding.scalabilityMode = scalabilityMode
encodings.add(rtpEncoding)
return encodings
} else if (simulcast) {
val presets = EncodingUtils.presetsForResolution(width, height)
val midPreset = presets[1]
val lowPreset = presets[0]
fun addEncoding(videoEncoding: VideoEncoding, scale: Double) {
if (scale < 1.0) {
LKLog.w { "Discarding encoding with a scale < 1.0: $scale." }
return
}
if (encodings.size >= EncodingUtils.VIDEO_RIDS.size) {
throw IllegalStateException("Attempting to add more encodings than we have rids for!")
}
// encodings is mutable, so this will grab next available rid
val rid = EncodingUtils.VIDEO_RIDS[encodings.size]
encodings.add(videoEncoding.toRtpEncoding(rid, scale))
}
// if resolution is high enough, we send both h and q res.
// otherwise only send h
val size = max(width, height)
fun calculateScaleDown(captureParam: VideoCaptureParameter): Double {
val targetSize = max(captureParam.width, captureParam.height)
return size / targetSize.toDouble()
}
if (size >= 960) {
val lowScale = calculateScaleDown(lowPreset.capture)
val midScale = calculateScaleDown(midPreset.capture)
addEncoding(lowPreset.encoding, lowScale)
addEncoding(midPreset.encoding, midScale)
} else {
val lowScale = calculateScaleDown(lowPreset.capture)
addEncoding(lowPreset.encoding, lowScale)
}
addEncoding(encoding, 1.0)
} else {
encodings.add(encoding.toRtpEncoding())
}
// Make largest size at front. addTransceiver seems to fail if ordered from smallest to largest.
encodings.reverse()
return encodings
}
private fun computeTrackBackupOptionsAndEncodings(
track: LocalVideoTrack,
videoCodec: VideoCodec,
options: VideoTrackPublishOptions,
): Pair<VideoTrackPublishOptions, List<RtpParameters.Encoding>>? {
if (!options.hasBackupCodec()) {
return null
}
if (videoCodec.codecName != options.backupCodec?.codec) {
LKLog.w { "Server requested different codec than specified backup. server: $videoCodec, specified: ${options.backupCodec?.codec}" }
}
val backupOptions = options.copy(
videoCodec = videoCodec.codecName,
videoEncoding = options.backupCodec!!.encoding,
)
val backupEncodings = computeVideoEncodings(track.dimensions, backupOptions)
return backupOptions to backupEncodings
}
/**
* Control who can subscribe to LocalParticipant's published tracks.
*
* By default, all participants can subscribe. This allows fine-grained control over
* who is able to subscribe at a participant and track level.
*
* Note: if access is given at a track-level (i.e. both [allParticipantsAllowed] and
* [ParticipantTrackPermission.allTracksAllowed] are false), any newer published tracks
* will not grant permissions to any participants and will require a subsequent
* permissions update to allow subscription.
*
* @param allParticipantsAllowed Allows all participants to subscribe all tracks.
* Takes precedence over [participantTrackPermissions] if set to true.
* By default this is set to true.
* @param participantTrackPermissions Full list of individual permissions per
* participant/track. Any omitted participants will not receive any permissions.
*/
fun setTrackSubscriptionPermissions(
allParticipantsAllowed: Boolean,
participantTrackPermissions: List<ParticipantTrackPermission> = emptyList(),
) {
engine.updateSubscriptionPermissions(allParticipantsAllowed, participantTrackPermissions)
}
/**
* Unpublish a track.
*
* @param stopOnUnpublish if true, stops the track after unpublishing the track. Defaults to true.
*/
fun unpublishTrack(track: Track, stopOnUnpublish: Boolean = true) {
val publication = localTrackPublications.firstOrNull { it.track == track }
if (publication === null) {
LKLog.d { "this track was never published." }
return
}
val publicationJob = jobs[publication]
if (publicationJob != null) {
publicationJob.cancel()
jobs.remove(publicationJob)
}
val sid = publication.sid
trackPublications = trackPublications.toMutableMap().apply { remove(sid) }
if (engine.connectionState == ConnectionState.CONNECTED) {
engine.removeTrack(track.rtcTrack)
}
if (stopOnUnpublish) {
track.stop()
}
internalListener?.onTrackUnpublished(publication, this)
eventBus.postEvent(ParticipantEvent.LocalTrackUnpublished(this, publication), scope)
}
/**
* Publish a new data payload to the room. Data will be forwarded to each participant in the room.
* Each payload must not exceed 15k in size
*
* @param data payload to send
* @param reliability for delivery guarantee, use RELIABLE. for fastest delivery without guarantee, use LOSSY
* @param topic the topic under which the message was published
* @param identities list of participant identities to deliver the payload, null to deliver to everyone
*/
@Suppress("unused")
suspend fun publishData(
data: ByteArray,
reliability: DataPublishReliability = DataPublishReliability.RELIABLE,
topic: String? = null,
identities: List<Identity>? = null,
) {
if (data.size > RTCEngine.MAX_DATA_PACKET_SIZE) {
throw IllegalArgumentException("cannot publish data larger than " + RTCEngine.MAX_DATA_PACKET_SIZE)
}
val kind = when (reliability) {
DataPublishReliability.RELIABLE -> LivekitModels.DataPacket.Kind.RELIABLE
DataPublishReliability.LOSSY -> LivekitModels.DataPacket.Kind.LOSSY
}
val packetBuilder = LivekitModels.UserPacket.newBuilder().apply {
payload = ByteString.copyFrom(data)
participantSid = sid.value
if (topic != null) {
setTopic(topic)
}
if (identities != null) {
addAllDestinationIdentities(identities.map { it.value })
}
}
val dataPacket = LivekitModels.DataPacket.newBuilder()
.setUser(packetBuilder)
.setKind(kind)
.build()
engine.sendData(dataPacket)
}
/**
* @suppress
*/
@VisibleForTesting
override fun updateFromInfo(info: LivekitModels.ParticipantInfo) {
super.updateFromInfo(info)
// detect tracks that have mute status mismatched on server
for (ti in info.tracksList) {
val publication = this.trackPublications[ti.sid] as? LocalTrackPublication ?: continue
val localMuted = publication.muted
if (ti.muted != localMuted) {
engine.updateMuteStatus(sid.value, localMuted)
}
}
}
/**
* Updates the metadata of the local participant. Changes will not be reflected until the
* server responds confirming the update.
* Note: this requires `CanUpdateOwnMetadata` permission encoded in the token.
* @param metadata
*/
fun updateMetadata(metadata: String) {
this.engine.client.sendUpdateLocalMetadata(metadata, name)
}
/**
* Updates the name of the local participant. Changes will not be reflected until the
* server responds confirming the update.
* Note: this requires `CanUpdateOwnMetadata` permission encoded in the token.
* @param name
*/
fun updateName(name: String) {
this.engine.client.sendUpdateLocalMetadata(metadata, name)
}
/**
* Set or update participant attributes. It will make updates only to keys that
* are present in [attributes], and will not override others.
*
* To delete a value, set the value to an empty string.
*
* Note: this requires `canUpdateOwnMetadata` permission.
* @param attributes attributes to update
*/
fun updateAttributes(attributes: Map<String, String>) {
this.engine.client.sendUpdateLocalMetadata(metadata, name, attributes)
}
internal fun onRemoteMuteChanged(trackSid: String, muted: Boolean) {
val pub = trackPublications[trackSid]
pub?.muted = muted
}
internal fun handleSubscribedQualityUpdate(subscribedQualityUpdate: LivekitRtc.SubscribedQualityUpdate) {
if (!dynacast) {
return
}
val trackSid = subscribedQualityUpdate.trackSid
val subscribedCodecs = subscribedQualityUpdate.subscribedCodecsList
val qualities = subscribedQualityUpdate.subscribedQualitiesList
val pub = trackPublications[trackSid] as? LocalTrackPublication ?: return
val track = pub.track as? LocalVideoTrack ?: return
val options = pub.options as? VideoTrackPublishOptions ?: return
if (subscribedCodecs.isNotEmpty()) {
val newCodecs = track.setPublishingCodecs(subscribedCodecs)
for (codec in newCodecs) {
if (isBackupCodec(codec.codecName)) {
LKLog.d { "publish $codec for $trackSid" }
publishAdditionalCodecForTrack(track, codec, options)
}
}
}
if (qualities.isNotEmpty()) {
track.setPublishingLayers(qualities)
}
}
private fun publishAdditionalCodecForTrack(track: LocalVideoTrack, codec: VideoCodec, options: VideoTrackPublishOptions) {
val existingPublication = trackPublications[track.sid] ?: run {
LKLog.w { "attempting to publish additional codec for non-published track?!" }
return
}
val result = computeTrackBackupOptionsAndEncodings(track, codec, options) ?: run {
LKLog.i { "backup codec has been disabled, ignoring request to add additional codec for track" }
return
}
val (newOptions, newEncodings) = result
val simulcastTrack = track.addSimulcastTrack(codec, newEncodings)
val transceiverInit = RtpTransceiverInit(
RtpTransceiver.RtpTransceiverDirection.SEND_ONLY,
listOf(this.sid.value),
newEncodings,
)
scope.launch {
val transceiver = engine.createSenderTransceiver(track.rtcTrack, transceiverInit)
if (transceiver == null) {
LKLog.w { "couldn't create new transceiver! $codec" }
return@launch
}
transceiver.sortVideoCodecPreferences(newOptions.videoCodec, capabilitiesGetter)
simulcastTrack.sender = transceiver.sender
val trackRequest = AddTrackRequest.newBuilder().apply {
cid = transceiver.sender.id()
sid = existingPublication.sid
type = track.kind.toProto()
muted = !track.enabled
source = existingPublication.source.toProto()
addSimulcastCodecs(
with(SimulcastCodec.newBuilder()) {
this@with.codec = codec.codecName
this@with.cid = transceiver.sender.id()
build()
},
)
addAllLayers(
EncodingUtils.videoLayersFromEncodings(
track.dimensions.width,
track.dimensions.height,
newEncodings,
isSVCCodec(codec.codecName),
),
)
}
val trackInfo = engine.addTrack(
cid = simulcastTrack.rtcTrack.id(),
name = existingPublication.name,
kind = existingPublication.kind.toProto(),
stream = options.stream,
builder = trackRequest,
)
engine.negotiatePublisher()
LKLog.d { "published $codec for track ${track.sid}, $trackInfo" }
}
}
internal fun handleLocalTrackUnpublished(unpublishedResponse: LivekitRtc.TrackUnpublishedResponse) {
val pub = trackPublications[unpublishedResponse.trackSid]
val track = pub?.track
if (track == null) {
LKLog.w { "Received unpublished track response for unknown or non-published track: ${unpublishedResponse.trackSid}" }
return
}
unpublishTrack(track)
}
internal fun prepareForFullReconnect() {
val pubs = localTrackPublications.toList() // creates a copy, so is safe from the following removal.
// Only set the first time we start a full reconnect.
if (republishes == null) {
republishes = pubs
}
trackPublications = trackPublications.toMutableMap().apply { clear() }
for (publication in pubs) {
internalListener?.onTrackUnpublished(publication, this)
eventBus.postEvent(ParticipantEvent.LocalTrackUnpublished(this, publication), scope)
}
}
internal suspend fun republishTracks() {
val publish = republishes?.toList() ?: emptyList()
republishes = null
for (pub in publish) {
val track = pub.track ?: continue
unpublishTrack(track, false)
// Cannot publish muted tracks.
if (!pub.muted) {
when (track) {
is LocalAudioTrack -> publishAudioTrack(track, pub.options as AudioTrackPublishOptions, null)
is LocalVideoTrack -> publishVideoTrack(track, pub.options as VideoTrackPublishOptions, null)
else -> throw IllegalStateException("LocalParticipant has a non local track publish?")
}
}
}
}
internal fun onLocalTrackSubscribed(publication: LocalTrackPublication) {
if (!trackPublications.containsKey(publication.sid)) {
LKLog.w { "Could not find local track publication for subscribed event " }
return
}
eventBus.postEvent(ParticipantEvent.LocalTrackSubscribed(this, publication), scope)
}
/**
* @suppress
*/
fun cleanup() {
for (pub in trackPublications.values) {
val track = pub.track
if (track != null) {
track.stop()
unpublishTrack(track, stopOnUnpublish = false)
// We have the original track object reference, meaning we own it. Dispose here.
try {
track.dispose()
} catch (e: Exception) {
LKLog.d(e) { "Exception thrown when cleaning up local participant track $pub:" }
}
}
}
}
/**
* @suppress
*/
override fun dispose() {
cleanup()
super.dispose()
}
interface PublishListener {
fun onPublishSuccess(publication: TrackPublication) {}
fun onPublishFailure(exception: Exception) {}
}
@AssistedFactory
interface Factory {
fun create(dynacast: Boolean): LocalParticipant
}
}
internal fun LocalParticipant.publishTracksInfo(): List<LivekitRtc.TrackPublishedResponse> {
return trackPublications.values.mapNotNull { trackPub ->
val track = trackPub.track ?: return@mapNotNull null
LivekitRtc.TrackPublishedResponse.newBuilder()
.setCid(track.rtcTrack.id())
.setTrack(trackPub.trackInfo)
.build()
}
}
interface TrackPublishOptions {
/**
* The name of the track.
*/
val name: String?
/**
* The source of a track, camera, microphone or screen.
*/
val source: Track.Source?
/**
* The stream name for the track. Audio and video tracks with the same stream
* name will be placed in the same `MediaStream` and offer better synchronization.
*
* By default, camera and microphone will be placed in the same stream.
*/
val stream: String?
}
abstract class BaseVideoTrackPublishOptions {
abstract val videoEncoding: VideoEncoding?
abstract val simulcast: Boolean
/**
* The video codec to use if available.
*
* Defaults to VP8.
*
* @see [VideoCodec]
*/
abstract val videoCodec: String
/**
* scalability mode for svc codecs, defaults to 'L3T3'.
* for svc codecs, simulcast is disabled.
*/
abstract val scalabilityMode: String?
/**
* Multi-codec Simulcast
*
* Codecs such as VP9 and AV1 are not supported by all clients. When backupCodec is
* set, when an incompatible client attempts to subscribe to the track, LiveKit
* will automatically publish a secondary track encoded with the backup codec.
*/
abstract val backupCodec: BackupVideoCodec?
/**
* When bandwidth is constrained, this preference indicates which is preferred
* between degrading resolution vs. framerate.
*
* null value indicates default value (maintain framerate).
*/
abstract val degradationPreference: RtpParameters.DegradationPreference?
}
data class VideoTrackPublishDefaults(
override val videoEncoding: VideoEncoding? = null,
override val simulcast: Boolean = true,
override val videoCodec: String = VideoCodec.VP8.codecName,
override val scalabilityMode: String? = null,
override val backupCodec: BackupVideoCodec? = null,
override val degradationPreference: RtpParameters.DegradationPreference? = null,
) : BaseVideoTrackPublishOptions()
data class VideoTrackPublishOptions(
override val name: String? = null,
override val videoEncoding: VideoEncoding? = null,
override val simulcast: Boolean = true,
override val videoCodec: String = VideoCodec.VP8.codecName,
override val scalabilityMode: String? = null,
override val backupCodec: BackupVideoCodec? = null,
override val source: Track.Source? = null,
override val stream: String? = null,
override val degradationPreference: RtpParameters.DegradationPreference? = null,
) : BaseVideoTrackPublishOptions(), TrackPublishOptions {
constructor(
name: String? = null,
base: BaseVideoTrackPublishOptions,
source: Track.Source? = null,
stream: String? = null,
) : this(
name = name,
videoEncoding = base.videoEncoding,
simulcast = base.simulcast,
videoCodec = base.videoCodec,
scalabilityMode = base.scalabilityMode,
backupCodec = base.backupCodec,
source = source,
stream = stream,
degradationPreference = base.degradationPreference,
)
fun createBackupOptions(): VideoTrackPublishOptions? {
return if (hasBackupCodec()) {
copy(
videoCodec = backupCodec!!.codec,
videoEncoding = backupCodec.encoding,
)
} else {
null
}
}
}
data class BackupVideoCodec(
val codec: String = "vp8",
val encoding: VideoEncoding? = null,
val simulcast: Boolean = true,
)
abstract class BaseAudioTrackPublishOptions {
/**
* The target audioBitrate to use.
*/
abstract val audioBitrate: Int?
/**
* dtx (Discontinuous Transmission of audio), enabled by default for mono tracks.
*/
abstract val dtx: Boolean
/**
* red (Redundant Audio Data), enabled by default for mono tracks.
*/
abstract val red: Boolean
}
enum class AudioPresets(
val maxBitrate: Int,
) {
TELEPHONE(12_000),
SPEECH(24_000),
MUSIC(48_000),
MUSIC_STEREO(64_000),
MUSIC_HIGH_QUALITY(96_000),
MUSIC_HIGH_QUALITY_STEREO(128_000)
}
/**
* Default options for publishing an audio track.
*/
data class AudioTrackPublishDefaults(
override val audioBitrate: Int? = AudioPresets.MUSIC.maxBitrate,
override val dtx: Boolean = true,
override val red: Boolean = true,
) : BaseAudioTrackPublishOptions()
/**
* Options for publishing an audio track.
*/
data class AudioTrackPublishOptions(
override val name: String? = null,
override val audioBitrate: Int? = null,
override val dtx: Boolean = true,
override val red: Boolean = true,
override val source: Track.Source? = null,
override val stream: String? = null,
) : BaseAudioTrackPublishOptions(), TrackPublishOptions {
constructor(
name: String? = null,
base: BaseAudioTrackPublishOptions,
source: Track.Source? = null,
stream: String? = null,
) : this(
name = name,
audioBitrate = base.audioBitrate,
dtx = base.dtx,
red = base.red,
source = source,
stream = stream,
)
}
data class ParticipantTrackPermission(
/**
* The participant identity this permission applies to.
* You can either provide this or `participantSid`
*/
val participantIdentity: String? = null,
/**
* The participant id this permission applies to.
*/
val participantSid: String? = null,
/**
* If set to true, the target participant can subscribe to all tracks from the local participant.
*
* Takes precedence over [allowedTrackSids].
*/
val allTracksAllowed: Boolean = false,
/**
* The list of track ids that the target participant can subscribe to.
*/
val allowedTrackSids: List<String> = emptyList(),
) {
init {
if (participantIdentity == null && participantSid == null) {
throw IllegalArgumentException("Either identity or sid must be provided.")
}
}
internal fun toProto(): LivekitRtc.TrackPermission {
return LivekitRtc.TrackPermission.newBuilder()
.setParticipantIdentity(participantIdentity)
.setParticipantSid(participantSid)
.setAllTracks(allTracksAllowed)
.addAllTrackSids(allowedTrackSids)
.build()
}
}
internal fun VideoTrackPublishOptions.hasBackupCodec(): Boolean {
return backupCodec?.codec != null && videoCodec != backupCodec.codec
}
private val backupCodecs = listOf(VideoCodec.VP8.codecName, VideoCodec.H264.codecName)
private fun isBackupCodec(codecName: String) = backupCodecs.contains(codecName)