1279dec0c3
Fuzz testing found a few bugs in the new H.264 depacketizer. Also add a H.264 packetizer. Currently it's just used for testing.
35 lines
522 B
TOML
35 lines
522 B
TOML
|
|
[package]
|
|
name = "retina-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
bytes = "1"
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.retina]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "depacketize_h264"
|
|
path = "fuzz_targets/depacketize_h264.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "roundtrip_h264"
|
|
path = "fuzz_targets/roundtrip_h264.rs"
|
|
test = false
|
|
doc = false
|
|
|