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@…>, 3 months ago

Untag the multimedia drivers

  • Property mode set to 100644
File size: 5.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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
7 <!ENTITY libvdpau-va-gl-version "0.4.0">
8
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">
10 <!ENTITY libvdpau-va-gl-download-ftp " ">
11 <!ENTITY libvdpau-va-gl-md5sum "638244652a702d0262039890904f37ce">
12 <!ENTITY libvdpau-va-gl-size "120 KB">
13 <!ENTITY libvdpau-va-gl-buildsize "3.4 MB">
14 <!ENTITY libvdpau-va-gl-time "less than 0.1 SBU">
15]>
16
17 <sect1 id="libvdpau-va-gl" xreflabel="libvdpau-va-gl-&libvdpau-va-gl-version;">
18 <?dbhtml filename="libvdpau-va-gl.html"?>
19
20 <sect1info>
21 <date>$Date$</date>
22 </sect1info>
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
30 <sect2 role="package">
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
42 &lfs120_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
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
78 <bridgehead renderas="sect3">libvdpau-va-gl Dependencies</bridgehead>
79
80 <bridgehead renderas="sect4">Required</bridgehead>
81 <para role="required">
82 <xref linkend="cmake"/>,
83 <xref linkend="libvdpau"/>,
84 <xref linkend="libva"/>, and
85 <xref linkend="mesa"/>
86 </para>
87
88 <bridgehead renderas="sect4">Optional</bridgehead>
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
95 </sect2>
96
97 <sect2 role="installation">
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>
104
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;
108cd build &amp;&amp;
109
110cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$XORG_PREFIX .. &amp;&amp;
111make</userinput></screen>
112
113 <para>
114 To test the results, issue: <command>make check</command>. The tests must
115 be run from an Xorg environment.
116 </para>
117
118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
121
122<screen role="root"><userinput>make install</userinput></screen>
123
124 </sect2>
125
126 <sect2 role="commands">
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
134 </sect2>
135
136
137 <sect2 role="configuration">
138 <title>Configuration</title>
139
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>
144
145<screen role="root"><userinput>echo "export VDPAU_DRIVER=va_gl" >> /etc/profile.d/xorg.sh</userinput></screen>
146
147 </sect2>
148
149 <sect2 role="content">
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>
171 <bridgehead renderas="sect2">Short Descriptions</bridgehead>
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
190 </sect2>
191
192 </sect1>
Note: See TracBrowser for help on using the repository browser.