mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-10-03 07:32:19 +08:00
15 lines
268 B
Go
15 lines
268 B
Go
package camera
|
|
|
|
const TypeSupportedRTPConfiguration = "116"
|
|
|
|
//goland:noinspection ALL
|
|
const (
|
|
CryptoAES_CM_128_HMAC_SHA1_80 = 0
|
|
CryptoAES_CM_256_HMAC_SHA1_80 = 1
|
|
CryptoNone = 2
|
|
)
|
|
|
|
type SupportedRTPConfig struct {
|
|
CryptoType []byte `tlv8:"2"`
|
|
}
|