mediamtx/internal/rtmp/chunk/chunk.go
2022-06-08 20:47:36 +02:00

11 lines
135 B
Go

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