mirror of
https://github.com/livekit/livekit.git
synced 2026-05-14 20:35:27 +00:00
WIP
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package audioselection
|
||||
|
||||
type AudioSource interface {
|
||||
Activate()
|
||||
Deactivate()
|
||||
GetAudioLevel() uint8
|
||||
}
|
||||
|
||||
type SelectionForworderParams struct {
|
||||
}
|
||||
|
||||
type SelectionForworder struct {
|
||||
}
|
||||
|
||||
func NewSelectionForworder() *SelectionForworder {
|
||||
return &SelectionForworder{}
|
||||
}
|
||||
|
||||
func (f *SelectionForworder) AddDownTrack() {
|
||||
}
|
||||
|
||||
func (f *SelectionForworder) RemoveDownTrack() {
|
||||
}
|
||||
|
||||
func (f *SelectionForworder) OnRequestDowntrack() {
|
||||
}
|
||||
Reference in New Issue
Block a user