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).
58 lines
2.9 KiB
Rust
58 lines
2.9 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's unit-test binary (the former
|
|
// integration tests live in src/test_support/) statically links the
|
|
// module crates, so their symbols must be exported from the test
|
|
// executable. `cargo:rustc-link-arg-tests` is NOT usable: the facade
|
|
// is cdylib-only, so cargo reports "does not have a test target" for
|
|
// that directive — use the generic `rustc-link-arg` (harmless no-op
|
|
// for the cdylib link itself).
|
|
println!("cargo:rustc-link-arg=-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=-framework");
|
|
println!("cargo:rustc-link-arg={fw}");
|
|
}
|
|
}
|
|
}
|