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 b4cd1aa commit f56b7d1Copy full SHA for f56b7d1
test/pyTest/testInputFile.py
@@ -42,3 +42,8 @@ def testInputFileAnalyseFirstGop():
42
videoProperties = inputFile.getProperties().getVideoProperties()[0]
43
assert_greater(videoProperties.getGopSize(), 0)
44
assert_not_equals(videoProperties.getGopStructure(), ())
45
+ for image in videoProperties.getGopStructure():
46
+ pictureType = image[0]
47
+ encodedPictureSize = image[1]
48
+ assert_in(pictureType, ['I', 'P', 'B'])
49
+ assert_greater(encodedPictureSize, 0)
0 commit comments