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

21 行
459 B

  1. using JT1078.Protocol.H264;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using Xunit;
  6. namespace JT1078.Flv.Test.H264
  7. {
  8. public class NALUHeaderTest
  9. {
  10. [Fact]
  11. public void Test1()
  12. {
  13. NALUHeader header = new NALUHeader(0xc0);
  14. Assert.Equal(1, header.ForbiddenZeroBit);
  15. Assert.Equal(2, header.NalRefIdc);
  16. Assert.Equal(0, header.NalUnitType);
  17. }
  18. }
  19. }