Ignite/decoder/decoder.go

12 lines
222 B
Go
Raw Permalink Normal View History

2022-11-10 10:38:55 +00:00
package decoder
import "git.gammaspectra.live/S.O.N.G/Ignite/frame"
2022-11-10 12:06:23 +00:00
type Decoder interface {
Decode() (frame.Frame, error)
DecodeStream() *frame.Stream
2023-11-03 04:56:47 +00:00
Properties() frame.StreamProperties
Close()
Version() string
}