summaryrefslogtreecommitdiff
path: root/internal/processing/media/util.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/media/util.go')
-rw-r--r--internal/processing/media/util.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/processing/media/util.go b/internal/processing/media/util.go
index 9739e70b7..37dc87979 100644
--- a/internal/processing/media/util.go
+++ b/internal/processing/media/util.go
@@ -20,7 +20,6 @@ package media
import (
"fmt"
- "io"
"strconv"
"strings"
)
@@ -62,16 +61,3 @@ func parseFocus(focus string) (focusx, focusy float32, err error) {
focusy = float32(fy)
return
}
-
-type teeReadCloser struct {
- teeReader io.Reader
- close func() error
-}
-
-func (t teeReadCloser) Read(p []byte) (n int, err error) {
- return t.teeReader.Read(p)
-}
-
-func (t teeReadCloser) Close() error {
- return t.close()
-}