QtWebEngine/VideoAcceleration

From Qt Wiki
Jump to navigation Jump to search

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

Introduction

One of the most complex operations performed in the internet browsers is the video decoding and encoding. These compute operations can be executed as part of the software implementation which runs on the general purpose CPU, or they can be hardware accelerated and executed by the dedicated hardware. In case of regular PCs, the video hardware is integrated into a GPU (manufactured by Intel, AMD or Nvidia) and for the embedded platforms it is in most cases a part of independent IP core included in SoC.

The use of dedicated video hardware offloads general propose CPU from intensive decodec/codec algorithms. This results in a better interaction performance and it is crucial for embedded devices, where the CPU processing power is limited. Moreover, using an optimized dedicated hardware usually results in the better video performance, quality and the lower power consumption compared than software based decoding. However, hardware decoders rarely support all possible video formats, video profiles and codes' algorithms. Therefore, the video acceleration support is limited in that perspective.

Video playback in Chromium

In general the video can be played in Chromium using:

  • Pepper Plugins APIs, PNaCl (see pp::VideoDecoder), pepper flash plugin, WideVine plugin
  • WebRTC video encoders and decoders
  • HTML <video> tag (by using <video> pipeline)

To keep things stable, secure and running with good performance chromium browser has a multi-process-architecture. The video playback is also affected by this design and it is split between separate processes. In most cases, the code that performs encoding or decoding of video executes within the renderer process. Since this process is sandboxed, the video hardware is not accessible from it. IPC is used for communication between the renderer and the GPU process that has access to the hardware decoders.

In case of an HTML <video> tag, blink::WebMediaPlayer interface is used to create the video decoding pipeline in the render process. The pipeline consists of various elements like: data source, demuxer, audio decoding, video decoding, audio rendering, and video rendering.

The basic video decode class hierarchy looks like:

Video Decoder Classes.png

Two classes are currently used for software based video playback, VpxVideoDecoder and FFmpegVideoDecoder. They wrap two corresponding libraries:

  • libvpx to play video formats like vp8, vp9
  • ffmpeg to play other video formats, for example: ogg, mp4(H.264)

Two classes, media::VideoDecodeAccelerator (VDA) and media::VideoEncodeAccelerator (VEA), are the main interfaces for of all video hardware acceleration in Chromium.

Chromium video acceleration platform support

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.

  • Mac using Video toolbox (class VTVideoDecodeAccelerator)
  • ChromeOS on x86_64 using VA-API (class VaapiVideoDecodeAccelerator)
  • ChromeOS on arm/tegra using V4l2 (class V4L2VideoDecodeAccelerator)
  • Android using platform MediaCodec
  • Windows using DirectX Video Acceleration (class DXVAVideoDecodeAccelerator)

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

However, there is an ongoing community effort to enable video acceleration using VA-API and some Linux distros 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:

Some considerations for future

  • Enabling VA API in Qt 5.11
  • Implementing a video playback using punch hole for basic use cases
  • Supporting GStreamer [1]
  • Supporting i.MX VPU hardware video decoding [2]
  • Supporting RaspberryPi hardware decoder [3]
  • Supporting Zero-Copy for ffmpeg, vpx [4]