4.0初步改造

This commit is contained in:
dexter
2022-02-02 10:39:09 +08:00
parent 6ace71fac6
commit b2489b2305
59 changed files with 6192 additions and 2061 deletions

9
common/stream.go Normal file
View File

@@ -0,0 +1,9 @@
package common
import "context"
type IStream interface {
context.Context
Update() uint32
AddTrack(string, Track)
}