mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2026-04-22 15:47:06 +08:00
12 lines
267 B
Go
12 lines
267 B
Go
package camera
|
|
|
|
const TypeSupportedDataStreamTransportConfiguration = "130"
|
|
|
|
type SupportedDataStreamTransportConfiguration struct {
|
|
Configs []TransferTransportConfiguration `tlv8:"1"`
|
|
}
|
|
|
|
type TransferTransportConfiguration struct {
|
|
TransportType byte `tlv8:"1"`
|
|
}
|