mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-05 07:36:57 +08:00
13 lines
178 B
Go
13 lines
178 B
Go
// Package chunk implements RTMP chunks.
|
|
package chunk
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Chunk is a chunk.
|
|
type Chunk interface {
|
|
Read(io.Reader, uint32) error
|
|
Marshal() ([]byte, error)
|
|
}
|