improve AV1 decoder efficiency (#744)

This commit is contained in:
Alessandro Ros
2025-03-27 13:41:18 +01:00
committed by GitHub
parent 3414414c02
commit c9b91e629c
6 changed files with 57 additions and 43 deletions

View File

@@ -1,5 +0,0 @@
go test fuzz v1
[]byte("\x180")
bool(false)
[]byte("\xd00")
bool(false)

View File

@@ -2,4 +2,4 @@ go test fuzz v1
[]byte("0\x00")
bool(true)
[]byte("0")
bool(true)
bool(false)

View File

@@ -1,5 +1,5 @@
go test fuzz v1
[]byte("\xd00")
[]byte("\xb0\x010")
bool(false)
[]byte("0")
bool(false)

View File

@@ -0,0 +1,5 @@
go test fuzz v1
[]byte("0\xbb")
bool(true)
[]byte("0")
bool(false)

View File

@@ -0,0 +1,5 @@
go test fuzz v1
[]byte("00")
bool(true)
[]byte("0")
bool(true)