add RTP/AV1 decoder and encoder (#270)

This commit is contained in:
Alessandro Ros
2023-05-04 18:26:03 +02:00
committed by GitHub
parent a9a7426412
commit 2170ef4b00
28 changed files with 1535 additions and 109 deletions

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("\x190")
bool(false)
[]byte("\xd00")
bool(false)

View File

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

View File

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