BaseMediaOptions.cs 265 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MatrixIO.IO.Bmff
  6. {
  7. [Flags]
  8. public enum BaseMediaOptions
  9. {
  10. None,
  11. CacheAllBoxes,
  12. CacheAllBoxContent,
  13. LoadChildren,
  14. }
  15. }