forked from use-go/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StartMulticastStreaming_auto.go
30 lines (27 loc) · 1.04 KB
/
StartMulticastStreaming_auto.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Code generated : DO NOT EDIT.
// Copyright (c) 2022 Jean-Francois SMIGIELSKI
// Distributed under the MIT License
package media
import (
"context"
"github.com/juju/errors"
"github.com/WalleCYR/onvif"
"github.com/WalleCYR/onvif/sdk"
"github.com/WalleCYR/onvif/media"
)
// Call_StartMulticastStreaming forwards the call to dev.CallMethod() then parses the payload of the reply as a StartMulticastStreamingResponse.
func Call_StartMulticastStreaming(ctx context.Context, dev *onvif.Device, request media.StartMulticastStreaming) (media.StartMulticastStreamingResponse, error) {
type Envelope struct {
Header struct{}
Body struct {
StartMulticastStreamingResponse media.StartMulticastStreamingResponse
}
}
var reply Envelope
if httpReply, err := dev.CallMethod(request); err != nil {
return reply.Body.StartMulticastStreamingResponse, errors.Annotate(err, "call")
} else {
err = sdk.ReadAndParse(ctx, httpReply, &reply, "StartMulticastStreaming")
return reply.Body.StartMulticastStreamingResponse, errors.Annotate(err, "reply")
}
}