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)
42 lines
1.8 KiB
Rust
42 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/>.
|
|
|
|
//! Test-binary link flags.
|
|
//!
|
|
//! `-Wl,-export_dynamic` keeps the test binary's symbols in its dynamic
|
|
//! symbol table — originally so the M12 P0 decode bridge could resolve
|
|
//! the oakcodec C ABI with `dlsym(RTLD_DEFAULT)` (the decode bridge is a
|
|
//! direct Rust call now, but the flag is harmless and still matches the
|
|
//! root build.rs's app binary, M12 §0 / §5). The macOS framework flags
|
|
//! below are the load-bearing part: the bundled OpenColorIO's system
|
|
//! monitor references IOKit / ColorSync / CoreGraphics display APIs.
|
|
|
|
fn main() {
|
|
// Only the test binaries need this; the library itself links no
|
|
// dynamic symbols.
|
|
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}");
|
|
}
|
|
}
|
|
}
|