source: multimedia/libdriv/libva.xml@ 5c22cb01

systemd-13485
Last change on this file since 5c22cb01 was 5c22cb01, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Updated lsof URL. Merged from trunk r17090
Updated PIN-Entry dependencies. Merged from trunk r17090
Updated Valgrind dependencies. Merged from trunk r17090
Added note about OpenSSL's Test Suite not supporting parallel make jobs. Merged from trunk r17090.
Restored autoconf to libva-intel-driver. Merged from trunk r17090
Updated to Sudo-1.8.16. Merged from trunk r17127
Changed the configure script in the GCC-5.3.0 page to use the new configure switch for the libstdc++ ABI.
Updated to OpenSSH-7.2p2. Merged from trunk r17106.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17199 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
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 libva-http "http://www.freedesktop.org/software/vaapi/releases">
8
9 <!ENTITY libva-download-http "&libva-http;/libva/libva-&libva-version;.tar.bz2">
10 <!ENTITY libva-download-ftp " ">
11 <!ENTITY libva-md5sum "d6d34cd725a0100a5e476e711838e1b1">
12 <!ENTITY libva-size "744 KB">
13 <!ENTITY libva-buildsize "20 MB">
14 <!ENTITY libva-time "0.2 SBU">
15]>
16
17<sect1 id="libva" xreflabel="libva-&libva-version;">
18 <?dbhtml filename="libva.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>libva-&libva-version;</title>
26
27 <indexterm zone="libva">
28 <primary sortas="a-libva">libva</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to libva</title>
33
34 <para>
35 The <application>libva</application> package contains a library which
36 provides access to hardware accelerated video processing, using hardware
37 to accelerate video processing in order to offload the central
38 processing unit (CPU) to decode and encode compressed digital video. VA
39 API video decode/encode interface is platform and window system
40 independent targeted at Direct Rendering Infrastructure (DRI) in the X
41 Window System however it can potentially also be used with direct
42 framebuffer and graphics sub-systems for video output. Accelerated
43 processing includes support for video decoding, video encoding,
44 subpicture blending, and rendering.
45 </para>
46
47 &lfs79_checked;
48
49 <bridgehead renderas="sect3">Package Information</bridgehead>
50 <itemizedlist spacing="compact">
51 <listitem>
52 <para>
53 Download (HTTP): <ulink url="&libva-download-http;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download (FTP): <ulink url="&libva-download-ftp;"/>
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download MD5 sum: &libva-md5sum;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Download size: &libva-size;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated disk space required: &libva-buildsize;
74 </para>
75 </listitem>
76 <listitem>
77 <para>
78 Estimated build time: &libva-time;
79 </para>
80 </listitem>
81 </itemizedlist>
82
83 <bridgehead renderas="sect3">libva Dependencies</bridgehead>
84
85 <bridgehead renderas="sect4">Required</bridgehead>
86 <para role="required">
87 <xref linkend="libdrm"/>
88 </para>
89
90 <bridgehead renderas="sect4">Recommended</bridgehead>
91 <para role="recommended">
92 <xref linkend="mesa"/>,
93 <xref linkend="wayland"/> and
94 <xref linkend="xorg7-lib"/>
95 </para>
96
97 <bridgehead renderas="sect4">Optional</bridgehead>
98 <para role="optional">
99 <xref linkend="doxygen"/>
100 </para>
101
102 <note>
103 <para>
104 There is a circular dependency between <xref linkend="mesa"/>
105 and this package. If you need the VAAPI driver provided by
106 <xref linkend="mesa"/>, build this package without EGL and
107 GLX support, install <application>MesaLib</application>, then
108 reinstall this package with EGL and GLX support.
109 </para>
110 </note>
111
112 <bridgehead renderas="sect4">Runtime Dependency</bridgehead>
113 <para role="optional">
114 At least one of <xref linkend="libva-drivers"/> or the
115 driver shipped within <xref linkend="mesa"/> for the
116 Radeon hardware.
117 </para>
118
119 <para condition="html" role="usernotes">
120 User Notes: <ulink url="&blfs-wiki;/libva"/>
121 </para>
122 </sect2>
123
124 <sect2 role="installation">
125 <title>Installation of libva</title>
126
127 <para>
128 Install <application>libva</application> by running the following
129 commands:
130 </para>
131
132<screen><userinput>autoreconf -fi &amp;&amp;
133./configure --prefix=/usr --disable-static &amp;&amp;
134make</userinput></screen>
135
136 <para>
137 This package does not come with a test suite.
138 </para>
139
140 <para>
141 Now, as the <systemitem class="username">root</systemitem> user:
142 </para>
143
144<screen role="root"><userinput>make install</userinput></screen>
145
146 </sect2>
147
148 <sect2 role="commands">
149 <title>Command Explanations</title>
150
151 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
152 href="../../xincludes/static-libraries.xml"/>
153
154 <para>
155 <parameter>--disable-egl --disable-glx"</parameter>:
156 Use these two switches in the configure command if you would
157 like to build without EGL and GLX support, e.g. to satisfy
158 the circular dependency with Mesa.
159 </para>
160
161 <para>
162 <command>autoreconf -fi</command>: This command regenerates
163 the configure script to prevent a mandatory test for
164 wayland-scanner when configuring.
165 </para>
166
167 </sect2>
168
169 <sect2 role="content">
170 <title>Contents</title>
171
172 <segmentedlist>
173 <segtitle>Installed Programs</segtitle>
174 <segtitle>Installed Libraries</segtitle>
175 <segtitle>Installed Directories</segtitle>
176
177 <seglistitem>
178 <seg>
179 avcenc, h264encode, jpegenc, loadjpeg, mpeg2vaenc,
180 mpeg2vldemo, putsurface, putsurface_wayland and
181 vainfo
182 </seg>
183 <seg>
184 libva-drm.so, libva-egl.so, libva-glx.so, libva.so,
185 libva-tpi.so, libva-wayland.so and libva-x11.so
186 </seg>
187 <seg>
188 /usr/include/va
189 </seg>
190 </seglistitem>
191 </segmentedlist>
192
193 <variablelist>
194 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
195 <?dbfo list-presentation="list"?>
196 <?dbhtml list-presentation="table"?>
197
198 <varlistentry id="libva-lib">
199 <term><filename class="libraryfile">libva.so</filename></term>
200 <listitem>
201 <para>
202 contains API functions which provide access to hardware
203 accelerated video processing.
204 </para>
205 <indexterm zone="libva libva-lib">
206 <primary sortas="c-libva">libva.so</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 </variablelist>
212
213 </sect2>
214
215</sect1>
Note: See TracBrowser for help on using the repository browser.