Preview now follows the project output colorspace end to end: the display chain derives its content space from the project's OutputColorSpec instead of a hardcoded sRGB name, self-managed ICC transforms go through an XYZ D65 interchange stage (OCIO cie_xyz_d65_interchange) for non-sRGB targets, and the platform layer declares the content colorspace (gpui submodule bump). macOS defaults to OS-managed (fixes wide-gamut UI oversaturation); Windows ACM warns once on non-sRGB targets. Multi-monitor: the display ICC is looked up per the window's current screen (macOS display id, Windows per-monitor DC, X11 RandR output profile) with a throttled poll that invalidates frame caches on moves. Pipeline precision: 10-bit+ sources fall back to YUV444P16LE + a Rust matrix conversion when swscale lacks F32 output (no more 8-bit truncation); BT.709/2020 SDR decodes with BT.1886 gamma 2.4 instead of the sRGB EOTF; working-space compositing no longer clamps RGB to [0,1] (alpha still clamped); the output node clamps to the target gamut; frames without colorimetry metadata convert with BT.709 defaults (warned once) instead of passing through; scopes read the output-colorspace signal on both F32 paths. Also: only emit rerun-if-changed for .env when it exists (a missing file made every build fully dirty).
62 lines
2.5 KiB
TOML
62 lines
2.5 KiB
TOML
# Oak - 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/>.
|
|
|
|
[package]
|
|
name = "oak-worker"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
description = "Oak Video Editor headless render worker process (Rust)"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[[bin]]
|
|
name = "oak-worker"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# POSIX shm_open/ftruncate/mmap/munmap/shm_unlink for the shared-memory
|
|
# frame-slot transport (the oakrender::ipc shim above). libc also powers
|
|
# the SIGSEGV crash hook (OAK_WORKER_CRASH_ON_TICKET) used by the crash-
|
|
# isolation integration tests.
|
|
libc = "0.2"
|
|
|
|
# M15 S1: real per-process rendering — the worker loads the project graph
|
|
# itself (oaknode::serializer) and runs nodes through the plugin runtime
|
|
# (oakplugin::node_factory::install_render_executor wires the CPU render
|
|
# executor). oakcodec/ocio-rs/ffmpeg arrive transitively through
|
|
# oaknode/oakplugin — the same single-lib unification the engine uses.
|
|
oak-core = { path = "../oak-core" }
|
|
oak-node = { path = "../oak-node" }
|
|
oak-plugin = { path = "../oak-plugin" }
|
|
oak-common = { path = "../oak-common" }
|
|
|
|
# M14 R2 / M15 S1: oak-worker is a PURE module-crate consumer — the
|
|
# worker runtime (src/worker.rs) lives in this binary and calls the oak*
|
|
# rlibs directly. oakrender supplies the render backend, the CPU
|
|
# evaluation path and the shared ipc protocol (src/ipc.rs is a shim
|
|
# re-exporting oakrender::ipc). No liboakengine dylib, no C ABI, no
|
|
# build.rs link step.
|
|
oak-render = { path = "../oak-render" }
|
|
|
|
[dev-dependencies]
|
|
# oakcodec's test-media generator (`testmedia::write_test_clip`) for the
|
|
# graph-mode procpool integration tests — self-contained generated clips
|
|
# instead of repo fixtures. oakcodec already links in transitively via
|
|
# oaknode; this re-entry makes it nameable from the test binary.
|
|
oak-codec = { path = "../oak-codec" }
|