-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
- Loading branch information
Showing
7 changed files
with
155 additions
and
75 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
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
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,11 @@ | ||
// +build js,wasm | ||
|
||
package webrtc | ||
|
||
import "syscall/js" | ||
|
||
// RTPReceiver allows an application to inspect the receipt of a TrackRemote | ||
type RTPReceiver struct { | ||
// Pointer to the underlying JavaScript RTCRTPReceiver object. | ||
underlying js.Value | ||
} |
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,11 @@ | ||
// +build js,wasm | ||
|
||
package webrtc | ||
|
||
import "syscall/js" | ||
|
||
// RTPSender allows an application to control how a given Track is encoded and transmitted to a remote peer | ||
type RTPSender struct { | ||
// Pointer to the underlying JavaScript RTCRTPSender object. | ||
underlying js.Value | ||
} |
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,36 @@ | ||
// +build js,wasm | ||
|
||
package webrtc | ||
|
||
import "syscall/js" | ||
|
||
// RTPTransceiver represents a combination of an RTPSender and an RTPReceiver that share a common mid. | ||
type RTPTransceiver struct { | ||
// Pointer to the underlying JavaScript RTCRTPTransceiver object. | ||
underlying js.Value | ||
} | ||
|
||
// Direction returns the RTPTransceiver's current direction | ||
func (r *RTPTransceiver) Direction() RTPTransceiverDirection { | ||
return NewRTPTransceiverDirection(r.underlying.Get("direction").String()) | ||
} | ||
|
||
// Sender returns the RTPTransceiver's RTPSender if it has one | ||
func (r *RTPTransceiver) Sender() *RTPSender { | ||
underlying := r.underlying.Get("sender") | ||
if underlying.IsNull() { | ||
return nil | ||
} | ||
|
||
return &RTPSender{underlying: underlying} | ||
} | ||
|
||
// Receiver returns the RTPTransceiver's RTPReceiver if it has one | ||
func (r *RTPTransceiver) Receiver() *RTPReceiver { | ||
underlying := r.underlying.Get("receiver") | ||
if underlying.IsNull() { | ||
return nil | ||
} | ||
|
||
return &RTPReceiver{underlying: underlying} | ||
} |