forked from livekit/client-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Render video directly from capturer for local video tracks (livekit#419)
* Render video directly from capturer for local video tracks * spotless
- Loading branch information
Showing
3 changed files
with
123 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...-android-sdk/src/main/java/io/livekit/android/room/track/video/CaptureDispatchObserver.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Copyright 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.track.video | ||
|
||
import livekit.org.webrtc.CapturerObserver | ||
import livekit.org.webrtc.VideoFrame | ||
import livekit.org.webrtc.VideoSink | ||
|
||
class CaptureDispatchObserver : CapturerObserver { | ||
private val observers = linkedSetOf<CapturerObserver>() | ||
private val sinks = linkedSetOf<VideoSink>() | ||
|
||
@Synchronized | ||
fun registerObserver(observer: CapturerObserver) { | ||
observers.add(observer) | ||
} | ||
|
||
@Synchronized | ||
fun unregisterObserver(observer: CapturerObserver) { | ||
observers.remove(observer) | ||
} | ||
|
||
@Synchronized | ||
fun registerSink(sink: VideoSink) { | ||
sinks.add(sink) | ||
} | ||
|
||
@Synchronized | ||
fun unregisterSink(sink: VideoSink) { | ||
sinks.remove(sink) | ||
} | ||
|
||
@Synchronized | ||
override fun onCapturerStarted(success: Boolean) { | ||
for (observer in observers) { | ||
observer.onCapturerStarted(success) | ||
} | ||
} | ||
|
||
@Synchronized | ||
override fun onCapturerStopped() { | ||
for (observer in observers) { | ||
observer.onCapturerStopped() | ||
} | ||
} | ||
|
||
@Synchronized | ||
override fun onFrameCaptured(frame: VideoFrame) { | ||
for (observer in observers) { | ||
observer.onFrameCaptured(frame) | ||
} | ||
|
||
for (sink in sinks) { | ||
sink.onFrame(frame) | ||
} | ||
} | ||
} |