WIP: Preparing the codebase, nothing important

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-22 20:31:38 +01:00
parent a9efa652ef
commit 20fe694a8f
10 changed files with 368 additions and 0 deletions

11
lib/src/region.rs Normal file
View File

@@ -0,0 +1,11 @@
use crate::metadata::Metadata;
pub(crate) struct Region {
metadata: Metadata,
// Position of the track on the track
starts_at: u64,
// From which point of the audio source the region starts
plays_from: u64,
// Duration of the region after plays_from
duration: u64,
}