Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-updates > by-pkgid > 1680fb88efc4e76ac8cb0ebf3578014f > files > 481

qtmultimedia5-doc-5.12.6-1.mga7.noarch.rpm

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qmlvideofx.qdoc -->
  <title>QML Video Shader Effects Example | Qt Multimedia 5.12.6</title>
  <link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
  <script type="text/javascript">
    document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
    // loading style sheet breaks anchors that were jumped to before
    // so force jumping to anchor again
    setTimeout(function() {
        var anchor = location.hash;
        // need to jump to different anchor first (e.g. none)
        location.hash = "#";
        setTimeout(function() {
            location.hash = anchor;
        }, 0);
    }, 0);
  </script>
</head>
<body>
<div class="header" id="qtdocheader">
  <div class="main">
    <div class="main-rounded">
      <div class="navigationbar">
        <table><tr>
<td >Qt 5.12</td><td ><a href="qtmultimedia-index.html">Qt Multimedia</a></td><td ><a href="multimedia-examples.html">Qt Multimedia Examples</a></td><td >QML Video Shader Effects Example</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right"><a href="qtmultimedia-index.html">Qt 5.12.6 Reference Documentation</a></td>
        </tr></table>
      </div>
    </div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#running-the-example">Running the Example</a></li>
<li class="level1"><a href="#overview">Overview</a></li>
<li class="level1"><a href="#application-structure">Application structure</a></li>
<li class="level1"><a href="#calculating-and-displaying-qml-painting-rate">Calculating and displaying QML painting rate</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">QML Video Shader Effects Example</h1>
<span class="subtitle"></span>
<!-- $$$multimedia/video/qmlvideofx-brief -->
<p>Applying shader effects on video and camera viewfinder content.</p>
<!-- @@@multimedia/video/qmlvideofx -->
<!-- $$$multimedia/video/qmlvideofx-description -->
<div class="descr"> <a name="details"></a>
<a name="running-the-example"></a>
<h2 id="running-the-example">Running the Example</h2>
<p>To run the example from Qt Creator, open the <b>Welcome</b> mode and select the example from <b>Examples</b>. For more information, visit Building and Running an Example.</p>
<a name="overview"></a>
<h2 id="overview">Overview</h2>
<p><i>QML Video Shader Effects</i> demonstrates how a ShaderEffect can be used to apply postprocessing effects, expressed in GLSL, to QML <a href="qml-qtmultimedia-videooutput.html">VideoOutput</a> type.</p>
<p>It also shows how native code can be combined with QML to implement more advanced functionality - in this case, C++ code is used to calculate the QML frame rate. This value is rendered in QML in a semi-transparent item overlaid on the video content.</p>
<p>The following screenshots show shader effects being applied. In each case, the effect is implemented using a fragment shader.</p>
<p>Here we see an edge detection algorithm being applied to a video clip (<a href="http://durian.blender.org/">Sintel from blender.org</a>).</p>
<p class="centerAlign"><img src="images/qmlvideofx-video-edgedetection.jpg" alt="" /></p><p>This image shows a page curl effect, applied to the same video clip.</p>
<p class="centerAlign"><img src="images/qmlvideofx-video-pagecurl.jpg" alt="" /></p><p>Here we see a 'glow' effect (edge detection plus colour quantization) being applied to the camera viewfinder.</p>
<p class="centerAlign"><img src="images/qmlvideofx-camera-glow.jpg" alt="" /></p><p>This image shows a 'wobble' effect applied to the viewfinder.</p>
<p class="centerAlign"><img src="images/qmlvideofx-camera-wobble.jpg" alt="" /></p><p>The application includes many more effects than the ones shown here - look for Effect*.qml files in the list of files below to see the full range.</p>
<a name="application-structure"></a>
<h2 id="application-structure">Application structure</h2>
<p>Shader effects can be applied to video or viewfinder content using ShaderEffect, as shown in the following example, which applies a wiggly effect to the content:</p>
<pre class="cpp">

  import <span class="type">QtQuick</span> <span class="number">2.0</span>
  import <span class="type">QtMultimedia</span> <span class="number">5.0</span>

  Rectangle {
      width: <span class="number">300</span>
      height: <span class="number">300</span>
      color: <span class="string">&quot;black&quot;</span>

      MediaPlayer {
          id: mediaPlayer
          source: <span class="string">&quot;test.mp4&quot;</span>
          playing: <span class="keyword">true</span>
      }

      VideoOutput {
          id: video
          anchors<span class="operator">.</span>fill: parent
          source: mediaPlayer
      }

      ShaderEffect {
          property variant source: ShaderEffectSource { sourceItem: video; hideSource: <span class="keyword">true</span> }
          property real wiggleAmount: <span class="number">0.005</span>
          anchors<span class="operator">.</span>fill: video

          fragmentShader: <span class="string">&quot;
              varying highp vec2 qt_TexCoord0;
              uniform sampler2D source;
              uniform highp float wiggleAmount;
              void main(void)
              {
                  highp vec2 wiggledTexCoord = qt_TexCoord0;
                  wiggledTexCoord.s += sin(4.0 * 3.141592653589 * wiggledTexCoord.t) * wiggleAmount;
                  gl_FragColor = texture2D(source, wiggledTexCoord.st);
              }
          &quot;</span>
      }
  }

</pre>
<p>In this application, the usage of the ShaderEffect and <a href="qml-qtmultimedia-videooutput.html">VideoOutput</a> types is a bit more complicated, for the following reasons:</p>
<ul>
<li>Each effect can be applied to either a <a href="qml-qtmultimedia-videooutput.html">VideoOutput</a> or an Image item, so the type of the source item must be abstracted away from the effect implementation</li>
<li>For some effects (such as the edge detection and glow examples shown in the screenshots above), the transformation is applied only to pixels to the left of a dividing line - this allows the effect to be easily compared with the untransformed image on the right</li>
<li>Most effects have one or more parameters which can be modified by the user - these are controlled by sliders in the UI which are connected to uniform values passed into the GLSL code</li>
</ul>
<p>The abstraction of source item type is achieved by the <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-content-qml.html">Content</a>, which uses a Loader to create either a <a href="qml-qtmultimedia-mediaplayer.html">MediaPlayer</a>, <a href="qml-multimedia.html#camera">Camera</a> or Image:</p>
<pre class="cpp">

  import QtQuick 2.1

  Rectangle {
      ...
      Loader {
          id: contentLoader
      }
      ...
      function openImage(path) {
          stop()
          contentLoader.source = "ContentImage.qml"
          contentLoader.item.source = path
      }

      function openVideo(path) {
          stop()
          contentLoader.source = "ContentVideo.qml"
          contentLoader.item.mediaSource = path
      }

      function openCamera() {
          stop()
          contentLoader.source = "ContentCamera.qml"
      }

  }

</pre>
<p>Each effect is implemented as a QML item which is based on the <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effect-qml.html">Effect</a>, which in turn is based on the ShaderEffect:</p>
<pre class="cpp">

  import QtQuick 2.0

  ShaderEffect {
      property variant source
      property ListModel parameters: ListModel { }
      property bool divider: true
      property real dividerValue: 0.5
      property real targetWidth: 0
      property real targetHeight: 0
      property string fragmentShaderFilename
      property string vertexShaderFilename

      QtObject {
          id: d
          property string fragmentShaderCommon: "
              #ifdef GL_ES
                  precision mediump float;
              #else
              #   define lowp
              #   define mediump
              #   define highp
              #endif // GL_ES
          "
      }

      // The following is a workaround for the fact that ShaderEffect
      // doesn't provide a way for shader programs to be read from a file,
      // rather than being inline in the QML file

      onFragmentShaderFilenameChanged:
          fragmentShader = d.fragmentShaderCommon + fileReader.readFile(":shaders/" + fragmentShaderFilename)
      onVertexShaderFilenameChanged:
          vertexShader = fileReader.readFile(vertexShaderFilename)
  }

</pre>
<p>The interface of Effect allows for derived effects to specify the number of parameters which they support (and therefore the number of sliders which should be displayed), and whether a vertical dividing line should be drawn between transformed and untransformed image regions. As an example, here is the implementation of the pixelation effect. As you can see, the pixelation effect supports one parameter (which controls the pixelation granularity), and states that the divider should be displayed.</p>
<pre class="cpp">

  import QtQuick 2.0

  Effect {
      parameters: ListModel {
          ListElement {
              name: "Granularity"
              value: 0.5
          }
          onDataChanged: updateParameters()
      }

      function updateParameters()
      {
              granularity = parameters.get(0).value * 20.0;
      }

      // Transform slider values, and bind result to shader uniforms
      property real granularity: 0.5 * 20

      fragmentShaderFilename: "pixelate.fsh"
  }

</pre>
<p>The main.qml file shows a <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-fileopen-qml.html">FileOpen</a>, which allows the user to select the input source and an EffectSelectionPanel item, which lists each of the available shader effects. As described above, a <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-content-qml.html">Content</a> item is used to load the appropriate input and effect type. A <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-divider-qml.html">Divider</a> item draws the vertical dividing line, which can be dragged left / right by the user. Finally, a <a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-parameterpanel-qml.html">ParameterPanel</a> item renders the sliders corresponding to each effect parameter.</p>
<p>Here is the effect selection menu:</p>
<p class="centerAlign"><img src="images/qmlvideofx-effects-menu.jpg" alt="" /></p><a name="calculating-and-displaying-qml-painting-rate"></a>
<h2 id="calculating-and-displaying-qml-painting-rate">Calculating and displaying QML painting rate</h2>
<p>The QML painting rate is calculated by the FrequencyMonitor class, which turns a stream of events (received via the notify() slot), into an instantaneous and an averaged frequency:</p>
<pre class="cpp">

  <span class="keyword">class</span> FrequencyMonitor : <span class="keyword">public</span> <span class="type">QObject</span>
  {
      Q_OBJECT
      Q_PROPERTY(<span class="type">qreal</span> instantaneousFrequency READ instantaneousFrequency NOTIFY instantaneousFrequencyChanged)
      Q_PROPERTY(<span class="type">qreal</span> averageFrequency READ averageFrequency NOTIFY averageFrequencyChanged)

  <span class="keyword">public</span>:
      ...
      <span class="keyword">static</span> <span class="type">void</span> qmlRegisterType();

  <span class="keyword">public</span> <span class="keyword">slots</span>:
      Q_INVOKABLE <span class="type">void</span> notify();
  };

</pre>
<p>The FrequencyMonitor class is exposed to QML like this</p>
<pre class="cpp">

  <span class="type">void</span> FrequencyMonitor<span class="operator">::</span>qmlRegisterType()
  {
      <span class="operator">::</span>qmlRegisterType<span class="operator">&lt;</span>FrequencyMonitor<span class="operator">&gt;</span>(<span class="string">&quot;FrequencyMonitor&quot;</span><span class="operator">,</span> <span class="number">1</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="string">&quot;FrequencyMonitor&quot;</span>);
  }

</pre>
<p>and its data is displayed by defining a QML item called FrequencyItem, like this:</p>
<pre class="cpp">

  import FrequencyMonitor 1.0

  Rectangle {
      id: root
      ...
      function notify() {
          monitor.notify()
      }

      FrequencyMonitor {
          id: monitor
          onAverageFrequencyChanged: {
              averageFrequencyText.text = monitor.averageFrequency.toFixed(2)
          }
      }

      Text {
          id: labelText
          anchors {
              left: parent.left
              top: parent.top
              margins: 10
          }
          color: root.textColor
          font.pixelSize: 0.6 * root.textSize
          text: root.label
          width: root.width - 2*anchors.margins
          elide: Text.ElideRight
      }

      Text {
          id: averageFrequencyText
          anchors {
              right: parent.right
              bottom: parent.bottom
              margins: 10
          }
          color: root.textColor
          font.pixelSize: root.textSize
      }
  }

</pre>
<p>The result looks like this:</p>
<p class="centerAlign"><img src="images/video-qml-paint-rate.png" alt="" /></p><p>All that remains is to connect the afterRendering() signal of the QQuickView object to a JavaScript function, which will eventually call frequencyItem.notify():</p>
<pre class="cpp">

  <span class="preprocessor">#include &lt;QtGui/QGuiApplication&gt;</span>
  <span class="preprocessor">#include &lt;QtQuick/QQuickItem&gt;</span>
  <span class="preprocessor">#include &lt;QtQuick/QQuickView&gt;</span>
  <span class="preprocessor">#include &quot;filereader.h&quot;</span>
  <span class="preprocessor">#include &quot;trace.h&quot;</span>

  <span class="preprocessor">#ifdef PERFORMANCEMONITOR_SUPPORT</span>
  <span class="preprocessor">#include &quot;performancemonitordeclarative.h&quot;</span>
  <span class="preprocessor">#endif</span>

  <span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>)
  {
      <span class="type">QGuiApplication</span> app(argc<span class="operator">,</span> argv);
      ...
      <span class="type">QQuickItem</span> <span class="operator">*</span>rootObject <span class="operator">=</span> viewer<span class="operator">.</span>rootObject();
      ...
      <span class="type">QObject</span><span class="operator">::</span>connect(<span class="operator">&amp;</span>viewer<span class="operator">,</span> SIGNAL(afterRendering())<span class="operator">,</span>
                       rootObject<span class="operator">,</span> SLOT(qmlFramePainted()));

</pre>
<p>Files:</p>
<ul>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-filereader-cpp.html">multimedia/video/qmlvideofx/filereader.cpp</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-filereader-h.html">multimedia/video/qmlvideofx/filereader.h</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-main-cpp.html">multimedia/video/qmlvideofx/main.cpp</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-button-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Button.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-content-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Content.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentcamera-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/ContentCamera.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentimage-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/ContentImage.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-contentvideo-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/ContentVideo.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-curtain-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Curtain.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-divider-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Divider.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effect-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Effect.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectbillboard-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBillboard.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectblackandwhite-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectBlackAndWhite.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectemboss-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectEmboss.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectgaussianblur-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGaussianBlur.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectglow-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectGlow.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectisolate-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectIsolate.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectmagnify-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectMagnify.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpagecurl-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPageCurl.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpassthrough-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPassThrough.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectpixelate-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPixelate.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectposterize-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectPosterize.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectripple-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectRipple.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectselectionlist-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSelectionList.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsepia-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSepia.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsharpen-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSharpen.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectshockwave-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectShockwave.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectsobeledgedetection1-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectSobelEdgeDetection1.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttiltshift-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectTiltShift.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effecttoon-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectToon.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectvignette-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectVignette.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwarhol-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWarhol.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-effectwobble-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/EffectWobble.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-filebrowser-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/FileBrowser.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-fileopen-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/FileOpen.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-hintedmousearea-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/HintedMouseArea.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-main-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Main.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-parameterpanel-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/ParameterPanel.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qml-qmlvideofx-slider-qml.html">multimedia/video/qmlvideofx/qml/qmlvideofx/Slider.qml</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-cpp.html">multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.cpp</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qmlapplicationviewer-qmlapplicationviewer-h.html">multimedia/video/qmlvideofx/qmlapplicationviewer/qmlapplicationviewer.h</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-pro.html">multimedia/video/qmlvideofx/qmlvideofx.pro</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-qrc.html">multimedia/video/qmlvideofx/qmlvideofx.qrc</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-qmlvideofx-svg.html">multimedia/video/qmlvideofx/qmlvideofx.svg</a></li>
<li><a href="qtmultimedia-multimedia-video-qmlvideofx-trace-h.html">multimedia/video/qmlvideofx/trace.h</a></li>
</ul>
<p>Images:</p>
<ul>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/Dropdown_arrows.png">multimedia/video/qmlvideofx/images/Dropdown_arrows.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_bar.png">multimedia/video/qmlvideofx/images/Slider_bar.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/Slider_handle.png">multimedia/video/qmlvideofx/images/Slider_handle.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_Top.png">multimedia/video/qmlvideofx/images/Triangle_Top.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/Triangle_bottom.png">multimedia/video/qmlvideofx/images/Triangle_bottom.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/icon_BackArrow.png">multimedia/video/qmlvideofx/images/icon_BackArrow.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Folder.png">multimedia/video/qmlvideofx/images/icon_Folder.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/icon_Menu.png">multimedia/video/qmlvideofx/images/icon_Menu.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/images/qt-logo.png">multimedia/video/qmlvideofx/images/qt-logo.png</a></li>
<li><a href="images/used-in-examples/multimedia/video/qmlvideofx/qmlvideofx.png">multimedia/video/qmlvideofx/qmlvideofx.png</a></li>
</ul>
</div>
<!-- @@@multimedia/video/qmlvideofx -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2019 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br/>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br/>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>