18 lines
439 B
Go
18 lines
439 B
Go
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Package nack provides interceptors to implement sending and receiving negative acknowledgements
|
|
package nack
|
|
|
|
import "github.com/pion/interceptor"
|
|
|
|
func streamSupportNack(info *interceptor.StreamInfo) bool {
|
|
for _, fb := range info.RTCPFeedback {
|
|
if fb.Type == "nack" && fb.Parameter == "" {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|