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.

16 regels
302 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT1078.Flv
  5. {
  6. public class FlvBody
  7. {
  8. /// <summary>
  9. /// 前一个tag的长度
  10. /// </summary>
  11. public uint PreviousTagSize { get; set; }
  12. public FlvTag Tag { get; set; }
  13. }
  14. }