Crates.io | scuffle-h265 |
lib.rs | scuffle-h265 |
version | 0.2.2 |
created_at | 2025-02-09 19:41:06.813112+00 |
updated_at | 2025-05-17 13:34:44.302445+00 |
description | A pure Rust H.265 header decoder. |
homepage | |
repository | https://github.com/scufflecloud/scuffle |
max_upload_size | |
id | 1549230 |
size | 413,111 |
[!WARNING]
This crate is under active development and may not be stable.
A pure Rust implementation of the HEVC/H.265 decoder.
This crate is designed to provide a simple and safe interface to decode HEVC/H.265 SPS NALUs.
See the changelog for a full release history.
docs
— Enables changelog and documentation of feature flagsuse scuffle_h265::SpsNALUnit;
let nalu = SpsNALUnit::parse(reader)?;
println!("Parsed SPS NALU: {:?}", nalu);
This project is licensed under the MIT or Apache-2.0 license. You can choose between one of them if you use this work.
SPDX-License-Identifier: MIT OR Apache-2.0