Update to 2.0.0 tree from current Fremantle build
[opencv] / tests / swig_python / highgui / seek_time_cinepak.py
1 #! /usr/bin/env python
2
3 """
4 This script checks HighGUI's time seeking functionality
5 on a CinePak-compressed .avi file.
6 """
7
8 # name if this test and it's requirements
9 TESTNAME = "seek_time_cinepak"
10 REQUIRED = []
11 ERRORS=[0.086,0.082,0.087,0.085,0.086,0.085,0.086,0.086,0.086,0.086,0.089,0.087,0.090,0.088,0.088,0.088,0.089,0.088,0.089,0.088,0.091,0.089,0.092,0.091,0.091,0.090,0.091,0.090,0.091]
12
13 # needed for sys.exit(int), .works file handling and check routine
14 import sys
15 import works
16 import seek_test
17
18 # check requirements and delete old flag file, if it exists
19 if not works.check_files(REQUIRED,TESTNAME):
20         sys.exit(77)
21
22 # name of file we check here
23 FILENAME='cinepak.avi'
24
25 # run check routine
26 result=seek_test.seek_time_ok(FILENAME,ERRORS)
27
28 # create flag file for following tests
29 works.set_file(TESTNAME)
30
31  # return result of test routine
32 sys.exit(result)