Home | History | Annotate | Download | only in video_ChromeHWDecodeUsed
      1 # Copyright 2015 The Chromium OS 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 Project, chromeos-video (a] google.com"
      6 NAME = "video_ChromeHWDecodeUsed.vp9"
      7 PURPOSE = "Verify that VP9 video decode acceleration works in Chrome"
      8 CRITERIA = """
      9 This test will fail if VDA doesn't work with Chrome navigating to a VP9 webm
     10 file.
     11 """
     12 TIME = "SHORT"
     13 ATTRIBUTES = "suite:bvt-cq, suite:partners"
     14 SUITE = "bvt-cq, partners"
     15 TEST_CATEGORY = "General"
     16 TEST_CLASS = "video"
     17 TEST_TYPE = "client"
     18 DEPENDENCIES = "hw_video_acc_vp9"
     19 JOB_RETRIES = 2
     20 BUG_TEMPLATE = {
     21     'labels': ['OS-Chrome', 'VideoTestFailure'],
     22 }
     23 
     24 DOC = """
     25 This test verifies VP9 video decode acceleration works.
     26 """
     27 
     28 video = str('http://commondatastorage.googleapis.com/'
     29             'chromiumos-test-assets-public/Shaka-Dash/720.webm')
     30 job.run_test('video_ChromeHWDecodeUsed', is_mse=0, video_file=video)
     31