summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/oeqa/runtime/cases/intel_vaapi_driver.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/oeqa/runtime/cases/intel_vaapi_driver.py b/lib/oeqa/runtime/cases/intel_vaapi_driver.py
index 85d2dd39..b78b2859 100644
--- a/lib/oeqa/runtime/cases/intel_vaapi_driver.py
+++ b/lib/oeqa/runtime/cases/intel_vaapi_driver.py
@@ -16,14 +16,14 @@ class VaapiDriverTest(OERuntimeTestCase):
16 (status, output) = self.target.run('gst-inspect-1.0 vaapi') 16 (status, output) = self.target.run('gst-inspect-1.0 vaapi')
17 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output)) 17 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))
18 18
19 (status, output) = self.target.run('export LIBVA_DRIVER_NAME=i965; ' 19 (status, output) = self.target.run('export GST_VAAPI_ALL_DRIVERS=1; '
20 'gst-launch-1.0 -ev videotestsrc num-buffers=60 ! ' 20 'gst-launch-1.0 -ev videotestsrc num-buffers=60 ! '
21 'timeoverlay ! vaapih264enc ! mp4mux ! filesink location=/tmp/vtest_h264.mp4') 21 'vaapih264enc ! mp4mux ! filesink location=/tmp/vtest_h264.mp4')
22 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output)) 22 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))
23 23
24 @OETestDepends(['intel_vaapi_driver.VaapiDriverTest.test_gstreamer_can_encode_with_intel_vaapi_driver']) 24 @OETestDepends(['intel_vaapi_driver.VaapiDriverTest.test_gstreamer_can_encode_with_intel_vaapi_driver'])
25 def test_gstreamer_can_decode_with_intel_vaapi_driver(self): 25 def test_gstreamer_can_decode_with_intel_vaapi_driver(self):
26 (status, output) = self.target.run('export LIBVA_DRIVER_NAME=i965; ' 26 (status, output) = self.target.run('export GST_VAAPI_ALL_DRIVERS=1; '
27 'gst-launch-1.0 filesrc location=/tmp/vtest_h264.mp4 ! ' 27 'gst-launch-1.0 filesrc location=/tmp/vtest_h264.mp4 ! '
28 'qtdemux ! h264parse ! vaapih264dec ! vaapisink') 28 'qtdemux ! h264parse ! vaapih264dec ! vaapisink')
29 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output)) 29 self.assertEqual(status, 0, msg='status and output: %s and %s' % (status, output))