Remove homekit source params from streams info API

This commit is contained in:
Alex X
2025-11-18 19:17:26 +03:00
parent 8f5fce4d73
commit 2cd009646a

View File

@@ -29,9 +29,9 @@ type Client struct {
stream *camera.Stream
MaxWidth int
MaxHeight int
Bitrate int // in bits/s
MaxWidth int `json:"-"`
MaxHeight int `json:"-"`
Bitrate int `json:"-"` // in bits/s
}
func Dial(rawURL string, server *srtp.Server) (*Client, error) {