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.

17 lines
322 B

  1. using JT1078.Flv.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT1078.Flv.Metadata
  6. {
  7. public class AvcVideoPacke
  8. {
  9. public AvcPacketType AvcPacketType { get; set; }
  10. public uint CompositionTime { get; set; }
  11. public byte[] Data { get; set; }
  12. }
  13. }