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