Add spatial audio support

This commit is contained in:
MBucari 2025-04-27 14:01:11 -06:00
parent bffaea6026
commit ece48eb6d7
32 changed files with 15993 additions and 351 deletions

View file

@ -346,8 +346,8 @@ namespace FileLiberator.Tests
}
};
var flatChapters = DownloadDecryptBook.flattenChapters(HierarchicalChapters);
DownloadDecryptBook.combineCredits(flatChapters);
var flatChapters = DownloadOptions.flattenChapters(HierarchicalChapters);
DownloadOptions.combineCredits(flatChapters);
checkChapters(flatChapters, expected);
}
@ -429,7 +429,7 @@ namespace FileLiberator.Tests
}
};
var flatChapters = DownloadDecryptBook.flattenChapters(HierarchicalChapters);
var flatChapters = DownloadOptions.flattenChapters(HierarchicalChapters);
checkChapters(flatChapters, expected);
}
@ -525,7 +525,7 @@ namespace FileLiberator.Tests
}
};
var flatChapters = DownloadDecryptBook.flattenChapters(HierarchicalChapters_LongerParents);
var flatChapters = DownloadOptions.flattenChapters(HierarchicalChapters_LongerParents);
checkChapters(flatChapters, expected);
}