You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
836 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT1078.FMp4
  5. {
  6. public class SampleAuxiliaryInformationOffsetsBox : FullBox
  7. {
  8. public SampleAuxiliaryInformationOffsetsBox(byte version, uint flags) : base("saio", version, flags)
  9. {
  10. }
  11. /// <summary>
  12. /// if (flags & 1)
  13. /// </summary>
  14. public uint AuxInfoType { get; set; }
  15. /// <summary>
  16. /// if (flags & 1)
  17. /// </summary>
  18. public uint AuxInfoTypeParameter { get; set; }
  19. public uint EntryCount { get; set; }
  20. /// <summary>
  21. /// length:entry_count
  22. /// </summary>
  23. public uint[] Offset { get; set; }
  24. /// <summary>
  25. /// length:entry_count
  26. /// </summary>
  27. public ulong[] OffsetLarge { get; set; }
  28. }
  29. }