mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-06 08:06:58 +08:00
12 lines
137 B
Go
12 lines
137 B
Go
package chunk
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// Chunk is a chunk.
|
|
type Chunk interface {
|
|
Read(io.Reader, uint32) error
|
|
Marshal() ([]byte, error)
|
|
}
|