From 3478ac9d38d909c0f1c25735774e4cd10ac37616 Mon Sep 17 00:00:00 2001 From: Luis Carlos Osorio Jayk Date: Sun, 26 Oct 2025 14:11:11 -0600 Subject: [PATCH] feat: added m4s, mcfv and mcfa extensions to bmff supported types --- sdk/src/asset_handlers/bmff_io.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sdk/src/asset_handlers/bmff_io.rs b/sdk/src/asset_handlers/bmff_io.rs index fd6377c99..b5acc3d2b 100644 --- a/sdk/src/asset_handlers/bmff_io.rs +++ b/sdk/src/asset_handlers/bmff_io.rs @@ -69,7 +69,7 @@ const FULL_BOX_TYPES: &[&str; 80] = &[ "txtC", "mime", "uri ", "uriI", "hmhd", "sthd", "vvhd", "medc", ]; -static SUPPORTED_TYPES: [&str; 15] = [ +static SUPPORTED_TYPES: [&str; 18] = [ "avif", "heif", "heic", @@ -85,6 +85,9 @@ static SUPPORTED_TYPES: [&str; 15] = [ "video/mp4", "video/quicktime", "video/x-m4v", + "m4s", + "mcfv", + "mcfa", ]; macro_rules! boxtype {