mirror of
https://github.com/Monibuca/engine.git
synced 2025-10-07 01:22:51 +08:00
17 lines
205 B
Go
17 lines
205 B
Go
package common
|
|
|
|
import (
|
|
"context"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type IStream interface {
|
|
context.Context
|
|
Update() uint32
|
|
AddTrack(Track)
|
|
IsClosed() bool
|
|
log.Ext1FieldLogger
|
|
SSRC() uint32
|
|
}
|