[package]
edition = "2021"
rust-version = "1.80"
name = "rusty_h264"
version = "0.2.0"
authors = ["Mata Network"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ground-up, pure-Rust H.264 encoder and decoder — memory-safe, BSD-2, zero C in the default build. Decoder bit-exact vs Cisco h264dec (Baseline + B-slices + most of High profile); encoder bit-exact vs ffmpeg. A Remade With Rust rebuild of openh264."
readme = false
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 = [
"rusty_h264-encoder/asm",
"rusty_h264-decoder/asm",
]
default = ["asm"]
[lib]
name = "rusty_h264"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.rusty_h264-common]
version = "0.2.0"
[dependencies.rusty_h264-decoder]
version = "0.2.0"
[dependencies.rusty_h264-encoder]
version = "0.2.0"
[lints.rust]
unsafe_code = "forbid"