summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go
diff options
context:
space:
mode:
authorLibravatar kim <grufwub@gmail.com>2025-09-25 16:38:19 +0200
committerLibravatar kim <gruf@noreply.codeberg.org>2025-09-25 16:38:19 +0200
commitdfdf06e4add02e66c3b3aca7d0f144b88b6008a5 (patch)
tree78c5ec5484feaadad7bd5c68ad42a50bfa72c3ab /vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go
parent[chore] ffmpeg webassembly fiddling (#4454) (diff)
downloadgotosocial-dfdf06e4add02e66c3b3aca7d0f144b88b6008a5.tar.xz
[chore] update dependencies (#4458)
- codeberg.org/gruf/go-ffmpreg: v0.6.11 -> v0.6.12 Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4458 Co-authored-by: kim <grufwub@gmail.com> Co-committed-by: kim <grufwub@gmail.com>
Diffstat (limited to 'vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go')
-rw-r--r--vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go b/vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go
index 328a26193..ca13bf775 100644
--- a/vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go
+++ b/vendor/codeberg.org/gruf/go-ffmpreg/wasm/runtime.go
@@ -28,6 +28,7 @@ func NewRuntime(ctx context.Context, cfg wazero.RuntimeConfig) (wazero.Runtime,
// Set core features ffmpeg compiled with.
cfg = cfg.WithCoreFeatures(CoreFeatures)
+ cfg = cfg.WithDebugInfoEnabled(false)
// Instantiate runtime with prepared config.
rt := wazero.NewRuntimeWithConfig(ctx, cfg)