Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions localparticipant.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ func (p *LocalParticipant) PublishTrack(track webrtc.TrackLocal, opts *TrackPubl
Height: uint32(opts.VideoHeight),
DisableDtx: opts.DisableDTX,
Stereo: opts.Stereo,
DisableRed: opts.DisableRed,
Stream: opts.Stream,
Encryption: opts.Encryption,
}
Expand Down
1 change: 1 addition & 0 deletions publication.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@ type TrackPublicationOptions struct {
// Opus only
DisableDTX bool
Stereo bool
DisableRed bool
// which stream the track belongs to, used to group tracks together.
// if not specified, server will infer it from track source to bundle camera/microphone, screenshare/audio together
Stream string
Expand Down
Loading