rusty_h264-decoder 0.12.0

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; portable Rust SIMD on by default. BSD-2.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "rusty_h264-decoder"
version = "0.12.0"
authors = ["Mata Network"]
build = false
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; portable Rust SIMD on by default. 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 = ["rusty_h264-common/asm"]
default = [
    "global-alloc",
    "asm",
]
global-alloc = ["rusty_h264-common/global-alloc"]
profile = ["rusty_h264-common/profile"]

[lib]
name = "rusty_h264_decoder"
path = "src/lib.rs"

[[example]]
name = "corpus"
path = "examples/corpus.rs"

[[example]]
name = "decode_bench"
path = "examples/decode_bench.rs"

[[example]]
name = "decode_prof"
path = "examples/decode_prof.rs"

[[example]]
name = "fmt_census"
path = "examples/fmt_census.rs"

[[example]]
name = "oracle"
path = "examples/oracle.rs"

[[example]]
name = "sim_oppy"
path = "examples/sim_oppy.rs"
required-features = ["asm"]

[[example]]
name = "sim_sxs"
path = "examples/sim_sxs.rs"
required-features = ["asm"]

[[test]]
name = "fuzz_no_panic"
path = "tests/fuzz_no_panic.rs"

[[test]]
name = "ipcm_cabac"
path = "tests/ipcm_cabac.rs"

[[test]]
name = "mslice_idc2"
path = "tests/mslice_idc2.rs"

[[test]]
name = "profile_decode"
path = "tests/profile_decode.rs"

[dependencies.rusty_h264-common]
version = "0.12.0"
default-features = false

[dev-dependencies.minifb]
version = "0.28"

[dev-dependencies.rusty_h264-encoder]
version = "0.12.0"
default-features = false

[lints.rust]
unsafe_code = "forbid"