update go-ffmpreg to v0.3.1 (pulls in latest wazero too) (#3398)

This commit is contained in:
kim 2024-10-06 20:53:03 +00:00 committed by GitHub
commit bd1866ad8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 190 additions and 180 deletions

Binary file not shown.

View file

@ -3,8 +3,6 @@ package ffmpeg
import (
_ "embed"
"os"
"github.com/tetratelabs/wazero/api"
)
func init() {
@ -23,14 +21,5 @@ func init() {
}
}
// CoreFeatures is the WebAssembly Core specification
// features this embedded binary was compiled with.
const CoreFeatures = api.CoreFeatureSIMD |
api.CoreFeatureBulkMemoryOperations |
api.CoreFeatureNonTrappingFloatToIntConversion |
api.CoreFeatureMutableGlobal |
api.CoreFeatureReferenceTypes |
api.CoreFeatureSignExtensionOps
//go:embed ffmpeg.wasm
var B []byte