Files
rtsp-simple-server/internal/rtmp/chunk/chunk.go
2022-06-27 17:52:20 +02:00

12 lines
137 B
Go

package chunk
import (
"io"
)
// Chunk is a chunk.
type Chunk interface {
Read(io.Reader, uint32) error
Marshal() ([]byte, error)
}