Remove videoDecoder

This commit is contained in:
Lukas Herman
2020-01-21 21:25:44 -08:00
parent 9466cf89fc
commit 3671db8e62
2 changed files with 0 additions and 18 deletions

View File

@@ -11,11 +11,6 @@ type VideoEncoder interface {
Close() error
}
type VideoDecoder interface {
Decode([]byte) (image.Image, error)
Close() error
}
type VideoSetting struct {
Width, Height int
TargetBitRate, MaxBitRate int
@@ -23,7 +18,6 @@ type VideoSetting struct {
}
type VideoEncoderBuilder func(s VideoSetting) (VideoEncoder, error)
type VideoDecoderBuilder func(s VideoSetting) (VideoDecoder, error)
type AudioSetting struct {
InSampleRate, OutSampleRate int