We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2525317 commit 68cc0ddCopy full SHA for 68cc0dd
test/pyTest/testInputFile.py
@@ -31,6 +31,7 @@ def testInputFileAnalyseFirstGop():
31
videoProperties = inputFile.getProperties().getVideoProperties()[0]
32
assert_equals(videoProperties.isInterlaced(), False)
33
assert_equals(videoProperties.isTopFieldFirst(), False)
34
+ assert_equals(videoProperties.getGopSize(), 0)
35
assert_equals(videoProperties.getGopStructure(), ())
36
37
# Analyse first GOP
@@ -39,4 +40,5 @@ def testInputFileAnalyseFirstGop():
39
40
41
# Check properties after GOP analysis
42
43
+ assert_greater(videoProperties.getGopSize(), 0)
44
assert_not_equals(videoProperties.getGopStructure(), ())
0 commit comments