rusty_h264 0.2.1

A ground-up, pure-Rust H.264 encoder and decoder. Decoder bit-exact vs Cisco openh264 (Baseline + B-slices + most of High profile); encoder bit-exact vs ffmpeg. forbid(unsafe) codec core; optional vendored openh264 SIMD asm (on by default — `--no-default-features` for pure safe Rust). 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"
version = "0.2.1"
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. Decoder bit-exact vs Cisco openh264 (Baseline + B-slices + most of High profile); encoder bit-exact vs ffmpeg. forbid(unsafe) codec core; optional vendored openh264 SIMD asm (on by default — `--no-default-features` for pure safe Rust). BSD-2."
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"

[package.metadata.docs.rs]
no-default-features = true

[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.1"

[dependencies.rusty_h264-decoder]
version = "0.2.1"

[dependencies.rusty_h264-encoder]
version = "0.2.1"

[lints.rust]
unsafe_code = "forbid"