Skip to content

Commit 931b733

Browse files
committed
Updates
1 parent 18e78fc commit 931b733

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ require (
88
github.com/alecthomas/kong v0.9.0
99
github.com/djthorpe/go-errors v1.0.3
1010
github.com/djthorpe/go-tablewriter v0.0.8
11+
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
12+
github.com/llgcode/draw2d v0.0.0-20240627062922-0ed1ff131195
1113
github.com/mutablelogic/go-client v1.0.8
1214
github.com/stretchr/testify v1.9.0
1315
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842
@@ -18,6 +20,7 @@ require (
1820
github.com/mattn/go-runewidth v0.0.15 // indirect
1921
github.com/pmezard/go-difflib v1.0.0 // indirect
2022
github.com/rivo/uniseg v0.4.7 // indirect
23+
golang.org/x/image v0.18.0 // indirect
2124
golang.org/x/sys v0.21.0 // indirect
2225
golang.org/x/term v0.21.0 // indirect
2326
gopkg.in/yaml.v3 v3.0.1 // indirect

pkg/ffmpeg/re_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func Test_re_002(t *testing.T) {
106106
return nil
107107
}
108108
// Get audio frames
109-
if err := r.Decode(context.Background(), decodefn, nil); !assert.NoError(err) {
109+
if err := r.Decode(context.Background(), nil, decodefn); !assert.NoError(err) {
110110
t.FailNow()
111111
}
112112
// Print

0 commit comments

Comments
 (0)