source: multimedia/libdriv/libvpx.xml@ 7b2fed0f

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7b2fed0f was 7b2fed0f, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Tags

  • Property mode set to 100644
File size: 6.3 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 libvpx-download-http "https://github.com/webmproject/libvpx/archive/v&libvpx-version;/libvpx-&libvpx-version;.tar.gz">
8 <!ENTITY libvpx-download-ftp " ">
9 <!ENTITY libvpx-md5sum "cded283be38dc0078c3fbe751722efc5">
10 <!ENTITY libvpx-size "5.1 MB">
11 <!ENTITY libvpx-buildsize "64 MB (add 1.3GB if running tests)">
12 <!ENTITY libvpx-time "1.5 SBU, add 41 SBU if running tests, including download time">
13]>
14
15<sect1 id="libvpx" xreflabel="libvpx-&libvpx-version;">
16 <?dbhtml filename="libvpx.html"?>
17
18 <sect1info>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>libvpx-&libvpx-version;</title>
23
24 <indexterm zone="libvpx">
25 <primary sortas="a-libvpx">libvpx</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to libvpx</title>
30
31 <para>
32 This package, from the WebM project, provides the reference
33 implementations of the VP8 Codec, used in most current html5 video,
34 and of the next-generation VP9 Codec.
35 </para>
36
37 &lfs110a_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&libvpx-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&libvpx-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &libvpx-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &libvpx-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &libvpx-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &libvpx-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">libvpx Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Recommended</bridgehead>
76 <para role="recommended">
77 <xref linkend="yasm"/> or <xref role="nodep" linkend="nasm"/>, and
78 <xref linkend="which"/> (so <command>configure</command> can find yasm)
79 </para>
80
81 <bridgehead renderas="sect4">Optional</bridgehead>
82 <para role="optional">
83 <xref linkend="curl"/> (to download test files) and
84 <xref linkend="doxygen"/> (to build documentation)
85 </para>
86
87 <para condition="html" role="usernotes">User Notes:
88 <ulink url="&blfs-wiki;/libvpx"/></para>
89
90 </sect2>
91
92 <sect2 role="installation">
93 <title>Installation of libvpx</title>
94
95 <para>
96 Install <application>libvpx</application> by running the
97 following commands:
98 </para>
99
100<screen><userinput>sed -i 's/cp -p/cp/' build/make/Makefile &amp;&amp;
101
102mkdir libvpx-build &amp;&amp;
103cd libvpx-build &amp;&amp;
104
105../configure --prefix=/usr \
106 --enable-shared \
107 --disable-static &amp;&amp;
108make</userinput></screen>
109
110 <para>
111 To test the results, issue:
112 <command>LD_LIBRARY_PATH=. make test</command>.
113 The test suite downloads several files as part of its test process.
114 </para>
115
116 <para>
117 Now, as the <systemitem class="username">root</systemitem> user:
118 </para>
119
120<screen role="root"><userinput>make install</userinput></screen>
121
122 </sect2>
123
124 <sect2 role="commands">
125 <title>Command Explanations</title>
126
127 <para>
128 <command>sed ... </command>: This command
129 corrects ownership and permissions of installed files.
130 </para>
131
132 <para>
133 <command>mkdir libvpx-build &amp;&amp; cd libvpx-build</command>:
134 The <application>libvpx</application> developers
135 recommend building in a dedicated build directory.
136 </para>
137
138 <para>
139 <option>--disable-vp8</option>: This switch prevents building of VP8
140 codec support.
141 </para>
142
143 <para>
144 <option>--disable-vp9</option>: This switch prevents building of VP9
145 codec support.
146 </para>
147
148 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
149 href="../../xincludes/static-libraries.xml"/>
150
151 <para>
152 <option>--target=generic-gnu</option>: This switch disables
153 optimizations specific for x86 and x86-64, allowing to build this
154 package without <command>nasm</command> and <command>yasm</command>
155 installed.
156 </para>
157
158 <para>
159 <command>LD_LIBRARY_PATH=.</command>: This is needed for the testsuite
160 to use the just built library.
161 </para>
162
163 </sect2>
164
165 <sect2 role="content">
166 <title>Contents</title>
167
168 <segmentedlist>
169 <segtitle>Installed Programs</segtitle>
170 <segtitle>Installed Libraries</segtitle>
171 <segtitle>Installed Directories</segtitle>
172
173 <seglistitem>
174 <seg>vpxdec and vpxenc</seg>
175 <seg>libvpx.so</seg>
176 <seg>/usr/include/vpx</seg>
177 </seglistitem>
178 </segmentedlist>
179
180 <variablelist>
181 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
182 <?dbfo list-presentation="list"?>
183 <?dbhtml list-presentation="table"?>
184
185 <varlistentry id="vpxdec">
186 <term><command>vpxdec</command></term>
187 <listitem>
188 <para>
189 is the WebM Project VP8 and VP9 decoder
190 </para>
191 <indexterm zone="libvpx vpxdec">
192 <primary sortas="b-vpxdec">vpxdec</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="vpxenc">
198 <term><command>vpxenc</command></term>
199 <listitem>
200 <para>
201 is the WebM project VP8 and VP9 encoder
202 </para>
203 <indexterm zone="libvpx vpxenc">
204 <primary sortas="b-vpxenc">vpxenc</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="libvpx-lib">
210 <term><filename class="libraryfile">libvpx.so</filename></term>
211 <listitem>
212 <para>
213 provides functions to use the VP8 and VP9 video codecs
214 </para>
215 <indexterm zone="libvpx libvpx-lib">
216 <primary sortas="c-libvpx">libvpx.so</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 </variablelist>
222
223 </sect2>
224
225</sect1>
Note: See TracBrowser for help on using the repository browser.