您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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. }