package decoder import "git.gammaspectra.live/S.O.N.G/Ignite/frame" type Decoder interface { Decode() (frame.Frame, error) DecodeStream() *frame.Stream Properties() frame.StreamProperties Close() Version() string }