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:
@@ -117,20 +117,15 @@ impl SequenceBehavior {
|
||||
}
|
||||
|
||||
/// Apply the default video/audio parameters (C++
|
||||
/// `ViewerOutput::set_default_parameters()`; the config lookups use
|
||||
/// oakcommon's defaults when the config module is absent).
|
||||
/// `ViewerOutput::set_default_parameters()`; the config lookups read
|
||||
/// the oakcommon config store directly).
|
||||
pub fn set_default_parameters(&mut self) {
|
||||
let width =
|
||||
crate::bridge::common::config_get_int("DefaultSequenceWidth", "", 1920).unwrap_or(1920);
|
||||
let height = crate::bridge::common::config_get_int("DefaultSequenceHeight", "", 1080)
|
||||
.unwrap_or(1080);
|
||||
let sample_rate =
|
||||
crate::bridge::common::config_get_int("DefaultSequenceAudioFrequency", "", 48000)
|
||||
.unwrap_or(48000);
|
||||
let fps_num = crate::bridge::common::config_get_int("DefaultSequenceFrameRateNum", "", 30)
|
||||
.unwrap_or(30);
|
||||
let fps_den = crate::bridge::common::config_get_int("DefaultSequenceFrameRateDen", "", 1)
|
||||
.unwrap_or(1);
|
||||
let config = oakcommon::configstore::ConfigStore::instance();
|
||||
let width = config.get_int(None, "DefaultSequenceWidth", 1920);
|
||||
let height = config.get_int(None, "DefaultSequenceHeight", 1080);
|
||||
let sample_rate = config.get_int(None, "DefaultSequenceAudioFrequency", 48000);
|
||||
let fps_num = config.get_int(None, "DefaultSequenceFrameRateNum", 30);
|
||||
let fps_den = config.get_int(None, "DefaultSequenceFrameRateDen", 1);
|
||||
|
||||
self.video_params = vec![VideoParams {
|
||||
width,
|
||||
|
||||
Reference in New Issue
Block a user