13 lines
158 B
Go
13 lines
158 B
Go
|
package transcoders
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
|
||
|
"git.icedream.tech/icedream/uplink/app"
|
||
|
)
|
||
|
|
||
|
type TranscoderInstance interface {
|
||
|
io.WriteCloser
|
||
|
Init(out *app.Stream)
|
||
|
}
|