mirror of
https://github.com/pion/webrtc.git
synced 2025-10-07 08:01:27 +08:00
15 lines
347 B
Go
15 lines
347 B
Go
package webrtc
|
|
|
|
import (
|
|
"github.com/pions/webrtc/internal/sdp"
|
|
)
|
|
|
|
// RTCSessionDescription is used to expose local and remote session descriptions.
|
|
type RTCSessionDescription struct {
|
|
Type RTCSdpType `json:"type"`
|
|
Sdp string `json:"sdp"`
|
|
|
|
// This will never be initialized by callers, internal use only
|
|
parsed *sdp.SessionDescription
|
|
}
|