mediamtx/internal/rtmp/message/set_chunk_size.go

44 lines
965 B
Go
Raw Normal View History

package message //nolint:dupl
2022-06-08 18:47:36 +00:00
import (
"fmt"
"github.com/aler9/mediamtx/internal/rtmp/rawmessage"
2022-06-08 18:47:36 +00:00
)
// SetChunkSize is a set chunk size message.
type SetChunkSize struct {
2022-06-08 18:47:36 +00:00
Value uint32
}
// Unmarshal implements Message.
func (m *SetChunkSize) Unmarshal(raw *rawmessage.Message) error {
2022-06-08 18:47:36 +00:00
if raw.ChunkStreamID != ControlChunkStreamID {
return fmt.Errorf("unexpected chunk stream ID")
}
if len(raw.Body) != 4 {
return fmt.Errorf("invalid body size")
2022-06-08 18:47:36 +00:00
}
m.Value = uint32(raw.Body[0])<<24 | uint32(raw.Body[1])<<16 | uint32(raw.Body[2])<<8 | uint32(raw.Body[3])
2022-06-08 18:47:36 +00:00
return nil
}
// Marshal implements Message.
func (m *SetChunkSize) Marshal() (*rawmessage.Message, error) {
buf := make([]byte, 4)
buf[0] = byte(m.Value >> 24)
buf[1] = byte(m.Value >> 16)
buf[2] = byte(m.Value >> 8)
buf[3] = byte(m.Value)
2022-06-08 18:47:36 +00:00
return &rawmessage.Message{
ChunkStreamID: ControlChunkStreamID,
Type: uint8(TypeSetChunkSize),
Body: buf,
2022-06-08 18:47:36 +00:00
}, nil
}