source: multimedia/libdriv/libvdpau-va-gl.xml@ 6dbc482

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since 6dbc482 was 6dbc482, checked in by Douglas R. Reno <renodr@…>, 4 months ago

Untag the multimedia drivers

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[ab4fdfc]1<?xml version="1.0" encoding="UTF-8"?>
[bbb8ccc]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[58c3bfd]7 <!ENTITY libvdpau-va-gl-version "0.4.0">
8
[8dfc5c3]9 <!ENTITY libvdpau-va-gl-download-http "https://github.com/i-rinat/libvdpau-va-gl/archive/v&libvdpau-va-gl-version;/libvdpau-va-gl-&libvdpau-va-gl-version;.tar.gz">
[bbb8ccc]10 <!ENTITY libvdpau-va-gl-download-ftp " ">
[7768dfc9]11 <!ENTITY libvdpau-va-gl-md5sum "638244652a702d0262039890904f37ce">
12 <!ENTITY libvdpau-va-gl-size "120 KB">
13 <!ENTITY libvdpau-va-gl-buildsize "3.4 MB">
[bbb8ccc]14 <!ENTITY libvdpau-va-gl-time "less than 0.1 SBU">
15]>
16
[9a612888]17 <sect1 id="libvdpau-va-gl" xreflabel="libvdpau-va-gl-&libvdpau-va-gl-version;">
18 <?dbhtml filename="libvdpau-va-gl.html"?>
[4c24eb0a]19
[9a612888]20 <sect1info>
[4c24eb0a]21 <date>$Date$</date>
[9a612888]22 </sect1info>
[4c24eb0a]23
24 <title>libvdpau-va-gl-&libvdpau-va-gl-version;</title>
25
26 <indexterm zone="libvdpau-va-gl">
27 <primary sortas="a-libvdpau-va-gl">libvdpau-va-gl</primary>
28 </indexterm>
29
[9a612888]30 <sect2 role="package">
[4c24eb0a]31 <title>Introduction to libvdpau-va-gl</title>
32
33 <para>
34 The <application>libvdpau-va-gl</application> package contains a library
35 which implements the VDPAU library. Libvdpau_va_gl uses OpenGL under the
36 hood to accelerate drawing and scaling and the VA-API (if available) to
37 accelerate video decoding. For now VA-API is available on some Intel
38 chips, and on some AMD video adapters with the help of the libvdpau
39 driver.
40 </para>
41
[6dbc482]42 &lfs120_checked;
[4c24eb0a]43
[9a612888]44 <bridgehead renderas="sect3">Package Information</bridgehead>
[4c24eb0a]45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Libvdpau-va-gl Driver Download (HTTP): <ulink url="&libvdpau-va-gl-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Libvdpau-va-gl Driver Download (FTP): <ulink url="&libvdpau-va-gl-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Libvdpau-va-gl Driver Download MD5 sum: &libvdpau-va-gl-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Libvdpau-va-gl Driver Download size: &libvdpau-va-gl-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &libvdpau-va-gl-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &libvdpau-va-gl-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
[9a612888]78 <bridgehead renderas="sect3">libvdpau-va-gl Dependencies</bridgehead>
[4c24eb0a]79
[9a612888]80 <bridgehead renderas="sect4">Required</bridgehead>
[4c24eb0a]81 <para role="required">
82 <xref linkend="cmake"/>,
[f9a6626e]83 <xref linkend="libvdpau"/>,
84 <xref linkend="libva"/>, and
85 <xref linkend="mesa"/>
[4c24eb0a]86 </para>
87
[9a612888]88 <bridgehead renderas="sect4">Optional</bridgehead>
[4c24eb0a]89 <para role="optional">
90 <xref linkend="doxygen"/>,
91 <xref linkend="graphviz"/>, and
92 <xref linkend="texlive"/> or <xref linkend="tl-installer"/>
93 </para>
94
[9a612888]95 </sect2>
[4c24eb0a]96
[9a612888]97 <sect2 role="installation">
[4c24eb0a]98 <title>Installation of libvdpau-va-gl</title>
99
100 <para>
101 Install <application>libvdpau-va-gl</application> by running the following
102 commands:
103 </para>
[bbb8ccc]104
[973598a]105<screen><userinput>sed -e '/#include &lt;stdlib.h&gt;/a #include &lt;string&gt;' -i src/api-device.cc &amp;&amp;
106
107mkdir build &amp;&amp;
[bbb8ccc]108cd build &amp;&amp;
109
110cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$XORG_PREFIX .. &amp;&amp;
111make</userinput></screen>
112
[4c24eb0a]113 <para>
114 To test the results, issue: <command>make check</command>. The tests must
115 be run from an Xorg environment.
116 </para>
[bbb8ccc]117
[4c24eb0a]118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
[bbb8ccc]121
122<screen role="root"><userinput>make install</userinput></screen>
123
[9a612888]124 </sect2>
[bbb8ccc]125
[9a612888]126 <sect2 role="commands">
[973598a]127 <title>Command Explanations</title>
128
129 <para>
130 <command>sed -e '/#include &lt;stdlib.h&gt;/a #include &lt;string&gt;' ...</command>:
131 fix the build for the C++ Standard Library header changes in gcc-13.
132 </para>
133
[9a612888]134 </sect2>
[973598a]135
136
[9a612888]137 <sect2 role="configuration">
[4c24eb0a]138 <title>Configuration</title>
[bbb8ccc]139
[4c24eb0a]140 <para>
141 To allow libvdpau to find libvdpau-va-gl, set an environment variable.
142 As the <systemitem class="username">root</systemitem> user:
143 </para>
[bbb8ccc]144
145<screen role="root"><userinput>echo "export VDPAU_DRIVER=va_gl" >> /etc/profile.d/xorg.sh</userinput></screen>
146
[9a612888]147 </sect2>
[4c24eb0a]148
[9a612888]149 <sect2 role="content">
[4c24eb0a]150 <title>Contents</title>
151
152 <segmentedlist>
153 <segtitle>Installed Programs</segtitle>
154 <segtitle>Installed Library</segtitle>
155 <segtitle>Installed Directories</segtitle>
156
157 <seglistitem>
158 <seg>
159 None
160 </seg>
161 <seg>
162 libvdpau_va_gl.so
163 </seg>
164 <seg>
165 None
166 </seg>
167 </seglistitem>
168 </segmentedlist>
169
170 <variablelist>
[9a612888]171 <bridgehead renderas="sect2">Short Descriptions</bridgehead>
[4c24eb0a]172 <?dbfo list-presentation="list"?>
173 <?dbhtml list-presentation="table"?>
174
175 <varlistentry id="libvdpau-va-gl-lib">
176 <term><filename class="libraryfile">libvdpau_va_gl.so</filename></term>
177 <listitem>
178 <para>
179 contains functions to implement the OpenGL backend to
180 the VDPAU (Video Decode and Presentation API for Unix) API
181 </para>
182 <indexterm zone="libvdpau-va-gl libvdpau-va-gl-lib">
183 <primary sortas="c-libvdpau-va-gl">libvdpau.so</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 </variablelist>
189
[9a612888]190 </sect2>
[4c24eb0a]191
[9a612888]192 </sect1>
Note: See TracBrowser for help on using the repository browser.