Files
client-sdk-flutter/shared_swift/RemoteAudioTrack.swift
CloudWebRTC 91bf10ce18 feat: audio visualizer. (#638)
* [wip] feat: audio visualizer.

* macos.

* wip.

* wip.

* wip.

* wip.

* wip.

* update.

* update.

* update.

* cleanup.

* bump version for flutter-webrtc.

* dart format.

* add third-party code license.

* fix.

* fix compiler warning.

* license.

* add enableVisualizer to RoomOptions.

* Added comments for enableVisualizer.
2024-12-08 21:45:26 +08:00

40 lines
1.1 KiB
Swift

/*
* Copyright 2024 LiveKit
*
* 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.
*/
import Foundation
import WebRTC
import flutter_webrtc
public class LKRemoteAudioTrack: Track, AudioTrack {
let audioTrack: RTCAudioTrack
init(name: String,
track: RTCAudioTrack)
{
audioTrack = track
super.init(track: track)
}
}
public extension LKRemoteAudioTrack {
func add(audioRenderer: RTCAudioRenderer) {
audioTrack.add(audioRenderer)
}
func remove(audioRenderer: RTCAudioRenderer) {
audioTrack.remove(audioRenderer)
}
}