public void CreateProject()
        {
            _tester = new DetectorTester().WithProjectFile(FileNameProject).WithContainerDetector(new QtDetector()).WithDetector(new H264Detector());

            // Note: These movies contains some very small slices!!
            foreach (IConfigurationItem configurationItem in H264Detector.Configurable.Configuration)
            {
                if (configurationItem.Description == "Min Slice Nal Unit Length")
                {
                    configurationItem.SetUserValue("4");
                }
            }

            // Note: The 'SupplementalEnhancementInformation' NAL unit is currently not supported (and therefore not reported)!
        }
 public void TestFixtureSetup()
 {
     _systemDetector = new Mpeg2SystemDetector();
     _detector       = new Mpeg2VideoDetector();
     _tester         = new DetectorTester().WithProjectFile(FileNameProjectIssue2332).WithContainerDetector(_systemDetector).WithDetector(_detector);
 }
示例#3
0
 public void CreateProject()
 {
     _tester = new DetectorTester().WithProjectFile(FileNameProject).WithDetector(new H264Detector());
 }
示例#4
0
 public void SetUp()
 {
     _mpeg2Detector = new Mpeg2VideoDetector();
     _tester        = new DetectorTester().WithDetector(_mpeg2Detector);
 }