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

View file

@ -35,6 +35,8 @@ type LinearMemory interface {
// Notes:
// - To back a shared memory, Reallocate can't change the address of the
// backing []byte (only its length/capacity may change).
// - Reallocate may return nil if fails to grow the LinearMemory. This
// condition may or may not be handled gracefully by the Wasm module.
Reallocate(size uint64) []byte
// Free the backing memory buffer.
Free()