engine: - oakrender eval footage hook decodes via oakcodec (JobSpec::Footage carries filename/stream); ticket/ffi/manager wiring, real-media decode test with programmatically generated MPEG-2 - oakrender bridge/codec.rs + node.rs: direct oakcodec/oaknode calls; the crate's dlsym module is gone (project_deep_copy/sync_copy remain documented always-fail stubs — never implemented in oaknode) - oakaudio waveform/decoder path adjustments for the decode hook app (gpui + gpui_widgets): - menu bar scrubbing: hovering another top-level title while a menu is open switches to it; popup width is content-aware (CJK-aware) instead of fixed 160px - density pass: window rem 16 -> 14px, menu rows 26 -> 22px, dock tabs 32 -> 26px, viewer transport tightened - open/import/save-as use the native platform file dialogs (prompt_for_paths / prompt_for_new_path; multi-select import); MockEngine records imported footage for tests - project explorer Tree/Icons toggle is localized (explorer.tree / explorer.icons widget keys)
54 lines
2.6 KiB
Rust
54 lines
2.6 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/>.
|
|
|
|
//! Build-time link configuration for the `liboakengine` cdylib.
|
|
//!
|
|
//! The dylib now carries the module C ABIs itself (oakundo_*, oakcommon_*,
|
|
//! ... — see Cargo.toml), so the only remaining undefined imports are the
|
|
//! C++ host-provided symbols the modules call directly: `oakcore_*`
|
|
//! (liboakcore's `oakcore_audioparams_*` / `oakcore_rational_*`, called by
|
|
//! oakcodec) and `fb_find_best_pix_fmt_of_list` (ffmpeg_bridge, called by
|
|
//! oakcommon's pixel-format helper). Those live in the host Oak process,
|
|
//! which loads this dylib, so macOS `ld` must accept them as runtime
|
|
//! lookups instead of link-time errors. Only the cdylib gets this flag —
|
|
//! the rlib/staticlib (and the worker/cli consumers) are unaffected.
|
|
|
|
fn main() {
|
|
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("macos") {
|
|
println!("cargo:rustc-cdylib-link-arg=-Wl,-undefined,dynamic_lookup");
|
|
// The static FFmpeg's transitive system deps (libz etc.) are
|
|
// recorded as `@rpath/libz.1.dylib`; the dylib itself carries the
|
|
// rpath so standalone binaries (and the packaged app) resolve
|
|
// them without extra host rpaths.
|
|
println!("cargo:rustc-cdylib-link-arg=-Wl,-rpath,/usr/lib");
|
|
}
|
|
// The dlsym codec bridge (M12 P0) resolves `oakcodec_*` from the
|
|
// process-global scope; the engine test binaries statically link the
|
|
// module crates, so their symbols must be exported from the main
|
|
// executable.
|
|
println!("cargo:rustc-link-arg-tests=-Wl,-export_dynamic");
|
|
if std::env::var("CARGO_CFG_TARGET_OS").as_deref() == Ok("macos") {
|
|
// The bundled OpenColorIO's macos system monitor references
|
|
// IOKit / ColorSync / CoreGraphics display APIs; the engine
|
|
// dylib links with `-undefined,dynamic_lookup`, so test binaries
|
|
// must resolve them.
|
|
for fw in ["IOKit", "ColorSync", "CoreGraphics"] {
|
|
println!("cargo:rustc-link-arg-tests=-framework");
|
|
println!("cargo:rustc-link-arg-tests={fw}");
|
|
}
|
|
}
|
|
}
|