Skip to content

Commit a1e07b2

Browse files
Disable mdat exclusion (#187)
* Check for more than one manifest store * Fix grabbing wrong UUID * Updated to fix playback issue * Add comment * Initial code * BMFF 1.1 hash support * fix missing file * Test wasm fix * Slightly more readable check * Better variable name * Fix typos in comments * Update to incorporate comments * Don't enable /mdat exclusions yet
1 parent 0a735a0 commit a1e07b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sdk/src/store.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1489,6 +1489,7 @@ impl Store {
14891489
exclusions.push(trun);
14901490

14911491
// V2 exclusions
1492+
/* Enable this when we support Merkle trees and fragmented MP4
14921493
// /mdat exclusion
14931494
let mut mdat = ExclusionsMap::new("/mdat".to_owned());
14941495
let subset_mdat = SubsetMap {
@@ -1498,6 +1499,7 @@ impl Store {
14981499
let subset_mdat_vec = vec![subset_mdat];
14991500
mdat.subset = Some(subset_mdat_vec);
15001501
exclusions.push(mdat);
1502+
*/
15011503

15021504
if calc_hashes {
15031505
dh.gen_hash(asset_path)?;

0 commit comments

Comments
 (0)