From a70dbde74cc9bc26db306d14dca1dc376600eaf9 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 31 Mar 2026 20:57:51 +0200 Subject: [PATCH] movmuxer: mark it as supporting global palette only --- nihav-commonfmt/src/muxers/mov/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nihav-commonfmt/src/muxers/mov/mod.rs b/nihav-commonfmt/src/muxers/mov/mod.rs index 8d21582..56422b9 100644 --- a/nihav-commonfmt/src/muxers/mov/mod.rs +++ b/nihav-commonfmt/src/muxers/mov/mod.rs @@ -514,7 +514,7 @@ impl MuxerCreator for MovMuxerCreator { } fn get_name(&self) -> &'static str { "mov" } fn get_capabilities(&self) -> MuxerCapabilities { MuxerCapabilities::Universal } - fn get_quirks(&self) -> MuxerQuirks { MuxerQuirks(MUX_QUIRK_UNSYNC) } + fn get_quirks(&self) -> MuxerQuirks { MuxerQuirks(MUX_QUIRK_UNSYNC | MUX_QUIRK_GLOBAL_PAL) } } #[cfg(test)] -- 2.39.5