[package]
edition = "2021"
rust-version = "1.80"
name = "rusty_h264-decoder"
version = "0.5.0"
authors = ["Mata Network"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust H.264 decoder (Baseline + B-slices + most of High profile, CAVLC + CABAC) — bit-exact vs Cisco openh264, pixel-exact vs ffmpeg, fuzzed panic-free. forbid(unsafe) core; optional SIMD asm. BSD-2."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/rusty_h264-decoder"
readme = "README.md"
keywords = [
"h264",
"avc",
"video",
"codec",
"decoder",
]
categories = [
"multimedia::video",
"multimedia::encoding",
]
license = "BSD-2-Clause"
repository = "https://github.com/remade-with-rust/rusty_h264"
[features]
asm = [
"dep:rusty_h264-accel",
"rusty_h264-common/asm",
]
profile = ["rusty_h264-common/profile"]
[lib]
name = "rusty_h264_decoder"
path = "src/lib.rs"
[[example]]
name = "corpus"
path = "examples/corpus.rs"
[[example]]
name = "decode_prof"
path = "examples/decode_prof.rs"
[[example]]
name = "oracle"
path = "examples/oracle.rs"
[[test]]
name = "fuzz_no_panic"
path = "tests/fuzz_no_panic.rs"
[[test]]
name = "profile_decode"
path = "tests/profile_decode.rs"
[dependencies.rusty_h264-accel]
version = "0.5.0"
optional = true
[dependencies.rusty_h264-common]
version = "0.5.0"
[dev-dependencies.rusty_h264-encoder]
version = "0.5.0"
[lints.rust]
unsafe_code = "forbid"