merge MPEG4AudioGeneric and MPEG4AudioLATM (#430)

This commit is contained in:
Alessandro Ros
2023-09-21 16:51:31 +02:00
committed by GitHub
parent fabc0e7e69
commit 44da79f72d
37 changed files with 801 additions and 940 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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