aboutsummaryrefslogtreecommitdiff
path: root/remuxer/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-30 18:34:09 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-30 18:34:09 +0100
commit9d6411fd92e73c204425f8dd37dc3cf567f604e4 (patch)
treed61d3e0b6bcd803e6ccb6d01669d40a1454ec009 /remuxer/src/lib.rs
parentbfc5552a8eba07897c2ed626b49c085d97fdfa0d (diff)
downloadjellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar
jellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar.bz2
jellything-9d6411fd92e73c204425f8dd37dc3cf567f604e4.tar.zst
avoid transitive crate deps by re-export
Diffstat (limited to 'remuxer/src/lib.rs')
-rw-r--r--remuxer/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs
index 7f5ad1c..3ea16e2 100644
--- a/remuxer/src/lib.rs
+++ b/remuxer/src/lib.rs
@@ -5,7 +5,6 @@
*/
pub mod extract;
pub mod fragment;
-pub mod metadata;
pub mod remux;
pub mod seek_index;
pub mod segment_extractor;
@@ -14,7 +13,7 @@ pub mod trim_writer;
pub use fragment::write_fragment_into;
pub use remux::remux_stream_into;
-use jellycommon::{SourceTrack, SourceTrackKind};
+use jellybase::common::{SourceTrack, SourceTrackKind};
use jellymatroska::{Master, MatroskaTag};
pub fn ebml_header(webm: bool) -> MatroskaTag {