refactor: drop internal bridge/ffi layers; exporter family lands
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).
This commit is contained in:
@@ -322,35 +322,6 @@ fn track_block_ordering() {
|
||||
);
|
||||
}
|
||||
|
||||
/// ClipBlock cache passthrough: the C ABI export accepts the call (the
|
||||
/// cache UUID copy is inert until the oakrender bridge creates per-node
|
||||
/// caches).
|
||||
#[test]
|
||||
fn clip_cache_passthrough() {
|
||||
use oaknode::error::OAKNODE_OK;
|
||||
use oaknode::ffi::block::oaknode_block_clip_create;
|
||||
use oaknode::ffi::block::oaknode_block_free;
|
||||
use oaknode::ffi::block::oaknode_clip_add_cache_passthrough_from;
|
||||
use oaknode::ffi::project::oaknode_project_free;
|
||||
use oaknode::ffi::project::oaknode_project_init;
|
||||
use oaknode::handle::CHandle;
|
||||
|
||||
let mut p = unsafe { oaknode_project_init() };
|
||||
let mut clip = unsafe { oaknode_block_clip_create() };
|
||||
let mut other = unsafe { oaknode_block_clip_create() };
|
||||
assert_eq!(
|
||||
unsafe { oaknode_clip_add_cache_passthrough_from(clip.clone(), other.clone()) },
|
||||
OAKNODE_OK
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { oaknode_clip_add_cache_passthrough_from(CHandle::null(), other.clone()) },
|
||||
oaknode::error::OAKNODE_E_INVALID
|
||||
);
|
||||
unsafe { oaknode_block_free(&mut clip) };
|
||||
unsafe { oaknode_block_free(&mut other) };
|
||||
unsafe { oaknode_project_free(&mut p) };
|
||||
}
|
||||
|
||||
/// Footage behavior: state without a codec module (probe fails
|
||||
/// gracefully without partial state); proxy fields, counts, duration.
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user