rave_core/lib.rs
1//! # rave-core — Foundation types for RAVE
2//!
3//! Provides the shared type vocabulary, GPU context, error hierarchy,
4//! backend trait, codec traits, and FFI type aliases used by all RAVE crates.
5//! This crate has zero NVDEC/NVENC/FFmpeg dependencies — only `cudarc`.
6
7pub mod backend;
8pub mod codec_traits;
9pub mod context;
10pub mod debug_alloc;
11pub mod error;
12pub mod ffi_types;
13pub mod types;