Single-lib cleanup: the per-crate src/bridge/ and src/ffi.rs layers are gone (oakundo/oakcommon/oaknode/oaktimeline/oakcodec/oakaudio/ oakrender/oaktask/oakplugin/oakstorage); cross-crate calls are plain Rust, CHandle marshalling shrinks to the oakengine boundary, and tests call the Rust APIs directly (pure C-ABI wrapper tests removed where the domain layer already covers the behavior). exporter.h family implemented: oakengine_export_render (CLI contract), oakengine_export_render_with_params (was a stub), last_error and progress callback; synchronous path reuses task_create_export + start_sync. Fixes on the way: oaktask video ticket self-deadlock, audio params dropped on the export path, codec encoder AAC slicing and H.264 time base. Real-mp4 tests cover both entry points, progress and the illegal-argument matrix. Also: oakstorage session maps null project handles to None (version- info path), configstore test double literal 3.14 -> 3.15 (clippy PI lint), oakaudio output callback scratch buffer + env-aware P1 test, cli media round-trip test uses a generated 16-frame clip (no more minute-long debug runs).
35 lines
1.4 KiB
TOML
35 lines
1.4 KiB
TOML
[package]
|
|
name = "oakrender"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Oak Video Editor render engine (Rust)"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
oakcore-rs = { path = "../oakcore" }
|
|
oakcommon = { path = "../oakcommon" }
|
|
# Direct Rust calls (single-lib unification): the decode bridge calls
|
|
# oakcodec's ffi, the node bridge calls oaknode's ffi. Both directions
|
|
# are acyclic (oakcodec → oakcore-rs/oakffmpeg-link; oaknode → oakcodec).
|
|
oakcodec = { path = "../oakcodec" }
|
|
oaknode = { path = "../oaknode" }
|
|
# wgpu: portable GPU backend (Metal/Vulkan/GL/DX12 in one safe API) — the
|
|
# direct replacement for the C++ liboakgl2/liboakvulkan backend plugins.
|
|
# Version 25 (2025 stable line); the only GPU dependency.
|
|
wgpu = "25"
|
|
# ocio-rs: safe Rust bindings for OpenColorIO v2.5.2 — the ColorProcessor
|
|
# implementation; OCIO is never rewritten. The `bundled` feature compiles
|
|
# the vendored OpenColorIO C++ sources (cmake/ninja required); without it
|
|
# ocio-sys builds a stub (all color tests then early-return).
|
|
ocio-rs = { version = "0.2", features = ["bundled"] }
|
|
# `std::error::Error` impls for the crate-internal error enum.
|
|
thiserror = "2"
|
|
|
|
[dev-dependencies]
|
|
# oakcodec is also a plain dependency above; the dev-dependency re-entry
|
|
# used to enable oakcodec's `test-stubs` host-mocks, which no longer exist
|
|
# (single-lib unification removed the oakcore_audioparams_* C ABI calls).
|