mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-25 04:22:00 -08:00
13 lines
243 B
Go
13 lines
243 B
Go
package core
|
|
|
|
import (
|
|
"github.com/aler9/gortsplib"
|
|
)
|
|
|
|
// reader is an entity that can read a stream.
|
|
type reader interface {
|
|
Close()
|
|
OnReaderAccepted()
|
|
OnReaderFrame(int, gortsplib.StreamType, []byte)
|
|
OnReaderAPIDescribe() interface{}
|
|
}
|