1 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 AUTHOR = "Chrome OS Team, chromeos-video (a] google.com" 6 NAME = "video_VEAPerf.vp8.bvt" 7 PURPOSE = "Monitor the performance of the Chromium VEA." 8 CRITERIA = """ 9 The test fails if the video_encode_accelerator_unittest fails or crashes. 10 """ 11 ATTRIBUTES = "suite:bvt-perbuild" 12 TIME = "SHORT" 13 TEST_CATEGORY = "Performance" 14 TEST_CLASS = "video" 15 TEST_TYPE = "client" 16 DEPENDENCIES='hw_video_acc_enc_vp8' 17 BUG_TEMPLATE = { 18 'labels': ['OS-Chrome', 'VideoTestFailure'], 19 'cc': ['chromeos-video-test-failures (a] google.com'], 20 } 21 22 DOC = """ 23 This test utilizes the video_encode_accelerator_unittest to measure the 24 performance of the Chromium Video Encode Accelerator. 25 """ 26 27 # A list of test cases. Each entry consists of the following parts: 28 # (path, on_cloud, width, height, requested_bit_rate, profile, requested_frame_rate) 29 test_cases = [ 30 ('media/test/data/bear_320x192_40frames.yuv', False, 320, 192, 200000, 11, 30) 31 ] 32 33 job.run_test('video_VEAPerf', test_cases=test_cases, tag='vp8') 34