1AUTHOR = "ChromeOS Team" 2NAME = "power_VideoPlayback.powerqual" 3PURPOSE = "Measure video playback power usage." 4 5CRITERIA = "This test is a benchmark." 6TIME = "LENGTHY" 7TEST_CATEGORY = "Benchmark" 8TEST_CLASS = "power" 9TEST_TYPE = "client" 10ATTRIBUTES = "" 11PY_VERSION = 3 12 13DOC = """ 14Test video decode 15- 1 hour of h264 1080p 30fps 16- 1 hour of vp9 1080p 30fps 17""" 18 19args_dict = utils.args_to_dict(args) 20pdash_note = args_dict.get('pdash_note', '') 21job.run_test('power_VideoPlayback', tag=NAME.split('.')[1], 22 videos=[('h264_1080_30fps', ''), ('vp9_1080_30fps', '')], 23 secs_per_video=3600, force_discharge='optional', 24 pdash_note=pdash_note) 25