Files
gortsplib/pkg/codecs/jpeg/start_of_image.go

11 lines
225 B
Go

package jpeg
// StartOfImage is a SOI marker.
type StartOfImage struct{}
// Marshal encodes the marker.
func (StartOfImage) Marshal(buf []byte) []byte {
buf = append(buf, []byte{0xFF, MarkerStartOfImage}...)
return buf
}