Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 rader
616 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT1078.FMp4
  5. {
  6. public class ColourInformationBox : Mp4Box
  7. {
  8. public ColourInformationBox() : base("colr")
  9. {
  10. }
  11. public string ColourType { get; set; }
  12. public ushort ColourPrimaries { get; set; }
  13. public ushort TransferCharacteristics { get; set; }
  14. public ushort MatrixCoefficients { get; set; }
  15. public bool FullRangeFlag { get; set; }
  16. public byte Reserved { get; set; }
  17. #warning ICC_profile?????
  18. public byte [] ICCProfile { get; set; }
  19. }
  20. }