mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 20:26:39 +00:00
37 lines
681 B
Go
37 lines
681 B
Go
package ffprobe
|
|
|
|
import (
|
|
_ "embed"
|
|
"os"
|
|
|
|
"github.com/tetratelabs/wazero/api"
|
|
)
|
|
|
|
func init() {
|
|
// Check for WASM source file path.
|
|
path := os.Getenv("FFPROBE_WASM")
|
|
if path == "" {
|
|
return
|
|
}
|
|
|
|
var err error
|
|
|
|
// Read file into memory.
|
|
B, err = os.ReadFile(path)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// 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 ffprobe.wasm
|
|
var B []byte
|