mirror of
https://github.com/lkmio/lkm.git
synced 2025-09-27 03:26:01 +08:00
23 lines
350 B
Go
23 lines
350 B
Go
package main
|
|
|
|
import (
|
|
"github.com/yangjiechina/avformat/utils"
|
|
"github.com/yangjiechina/live-server/stream"
|
|
)
|
|
|
|
func CreateTransStream(protocol stream.Protocol, streams []utils.AVStream) stream.ITransStream {
|
|
if stream.ProtocolRtmp == protocol {
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
stream.TransStreamFactory = CreateTransStream
|
|
}
|
|
|
|
func main() {
|
|
|
|
}
|