mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 15:16:52 +08:00

Let's pull off the bandaid! * Reduces studdering: webrtc.RTCTrack -> webrtc.Track * Makes it easier to find types by editor autocomplete * Makes code read more fluently (less repetition) Since we're breaking the API in 2.0, our only chance to do this is now. Relates to #408
7 lines
160 B
Go
7 lines
160 B
Go
package webrtc
|
|
|
|
// RTPReceiveParameters contains the RTP stack settings used by receivers
|
|
type RTPReceiveParameters struct {
|
|
encodings RTPDecodingParameters
|
|
}
|