oak-common is gone; its modules (configstore, xmlutils, ocioutils,
oiioutils, colormath, colortransform, videoparams, ffmpegutils, ...)
now live in oak-core alongside the value types. The render value/GPU
types moved too: backend (wgpu context + DisplayRenderer), color
(ColorProcessor over ocio-rs), texture, frame, and the commonutil
config helpers.
Fix-ups to make the merged tree build and pass tests:
- oak-core Cargo.toml: wgpu back to 25 (the moved backend code is
written against that API generation); add the toml/quick-xml/image
deps oak-common carried.
- lib.rs: drop the duplicate 'pub mod error;'.
- error.rs: unified OAKCORE_* codes; restore Error::new() and
From<OcioError> from oak-common's error type.
- backend.rs/color.rs: oak_core::/oak_render:: self-references
rewritten to crate::; the shaderfx-dependent GPU effect test moved
to oak-render's shaderfx tests (shaderfx depends on oak-node and
cannot live in oak-core).
- oak-render's error module re-exports oak_core::error::{Error,
Result}; the OAKRENDER_* codes stay as the public-code contract.
- oak-node jobs.rs: ColorProcessor imported from oak_core::color.
- Integration tests repointed at oak_core::{texture, frame, backend,
color, colormath}.
- the display-ICC regression test treats an empty OAK_DISPLAY_ICC as
unset, matching displayicc::env_override_icc.
50 lines
1.8 KiB
Rust
50 lines
1.8 KiB
Rust
// Oak Video Editor - Non-Linear Video Editor
|
|
// Copyright (C) 2026 Oak Team
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! # oaktimeline — the timeline edit module (Rust)
|
|
//!
|
|
//! Reimplements the C++ oaktimeline module (`src/timeline/src`). See
|
|
//! README.md for the architectural mapping (per-header domain modules, no
|
|
//! UndoCommand inheritance → boxed `oakundo` command values).
|
|
//!
|
|
//! ## Single-lib unification
|
|
//!
|
|
//! The C ABI export layer (`ffi.rs`) and the oaknode/oakundo/oak_core
|
|
//! bridge (`bridge/`) were deleted in the single-lib unification: undo
|
|
//! commands are now `oak_undo::undocommand::UndoCommand` values (the
|
|
//! crate's command structs implement `undocommon::Command` and are boxed
|
|
//! as trait objects) and every node/block/track reference is a
|
|
//! [`util::NodeRef`] — an `Arc<Mutex<oak_node::project::Project>>` +
|
|
//! `oak_node::id::NodeId` pair that the commands manipulate through the
|
|
//! oaknode Rust domain directly.
|
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
|
#![warn(missing_docs)]
|
|
|
|
pub mod common;
|
|
pub mod error;
|
|
pub mod handle;
|
|
pub mod marker;
|
|
pub mod multicam;
|
|
pub mod undocommon;
|
|
pub mod undogeneral;
|
|
pub mod undopointer;
|
|
pub mod undoripple;
|
|
pub mod undosplit;
|
|
pub mod undotrack;
|
|
pub mod util;
|
|
pub mod workarea;
|