QtWebEngine/VideoAcceleration: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
m (add "Video playback in Chromium" section)
Line 5: Line 5:
One of the most complex operations performed in internet browsers are video decoding and encoding. These compute operations can be executed as part of software implementation which runs on CPU, or the can be hardware accelerated and executed by dedicated hardware chips. By using hardware acceleration, the CPU can be offloaded and it is able to run meanwhile other execution tasks. This results in better interaction performance and it is crucial for embedded devices, where CPU processing power is limited. Moreover, using optimized dedicated hardware usually results in better video performance, quality and lower power consumption compared to software one.
One of the most complex operations performed in internet browsers are video decoding and encoding. These compute operations can be executed as part of software implementation which runs on CPU, or the can be hardware accelerated and executed by dedicated hardware chips. By using hardware acceleration, the CPU can be offloaded and it is able to run meanwhile other execution tasks. This results in better interaction performance and it is crucial for embedded devices, where CPU processing power is limited. Moreover, using optimized dedicated hardware usually results in better video performance, quality and lower power consumption compared to software one.


=== TODO
== Video playback in Chromium ==


- Needs to be supported by GPU hardware and drivers, usually only supporting some encoding
* https://www.chromium.org/audio-video
- Link to Chromium docs on video acceleration


== Chromium video acceleration platform support ==
== Chromium video acceleration platform support ==
Line 30: Line 29:
* https://codereview.chromium.org/1872393002
* https://codereview.chromium.org/1872393002
* https://chromium-review.googlesource.com/c/chromium/src/+/532294
* https://chromium-review.googlesource.com/c/chromium/src/+/532294
== Chromium ==
Official Chromium enables video acceleration for Windows, macOS, and ChromeOS builds.
Regular Linux builds do not have video acceleration enabled, unless patched downstream by Linux distributions.


== Qt WebEngine ==
== Qt WebEngine ==
Line 46: Line 40:
* Implementing a punch hole in scenegraph
* Implementing a punch hole in scenegraph
* Supporting GStreamer
* Supporting GStreamer
== TODO ==
- Needs to be supported by GPU hardware and drivers, usually only supporting some encoding

Revision as of 11:12, 6 November 2017

Qt WebEngine does not currently support hardware accelerated decoding of videos.

Introduction

One of the most complex operations performed in internet browsers are video decoding and encoding. These compute operations can be executed as part of software implementation which runs on CPU, or the can be hardware accelerated and executed by dedicated hardware chips. By using hardware acceleration, the CPU can be offloaded and it is able to run meanwhile other execution tasks. This results in better interaction performance and it is crucial for embedded devices, where CPU processing power is limited. Moreover, using optimized dedicated hardware usually results in better video performance, quality and lower power consumption compared to software one.

Video playback in Chromium

Chromium video acceleration platform support

Official Chromium enables video acceleration for Windows, macOS, ChromeOS and Android builds.

  • macOs: Video Toolbox
  • ChromeOS on x86_64: VA-API
  • ChromeOS on arm/tegra: V4l2
  • Android: platform MediaCodec
  • Windows: DirectX Video Acceleration (DXVA)

On Linux, Chromium Project is mostly focused on 'desktop builds' which have enough processing power for video encoding and decoding using software based mulithreaded ffmpeg. Therefore, to avoid dealing with possible large number of hardware related bugs, acceleration support on chrome is by default disabled.

However, there is on going community effort to enable video acceleration using VA-API and some Linux distorts like 'Arch' patch chromium already downstream:

Qt WebEngine

Current status of video decode acceleration for Qt WebEngine 5.9 and 5.10 is as follows:

Being considered:

  • Enabling VA API in Qt 5.10 (?) for Chromium 61
  • Implementing a punch hole in scenegraph
  • Supporting GStreamer

TODO

- Needs to be supported by GPU hardware and drivers, usually only supporting some encoding