source: multimedia/libdriv/libaom.xml

trunk
Last change on this file was 9c3f73f, checked in by Bruce Dubbs <bdubbs@…>, 41 hours ago

Update to libaom-3.9.0.

  • Property mode set to 100644
File size: 5.0 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 libaom-download-http "https://storage.googleapis.com/aom-releases/libaom-&libaom-version;.tar.gz">
8 <!ENTITY libaom-download-ftp " ">
9 <!ENTITY libaom-md5sum "895519bf46cda7a25da7e80f3a3b66b2">
10 <!ENTITY libaom-size "5.3 MB">
11 <!ENTITY libaom-buildsize "103 MB (add 1.0 GB for tests)">
12 <!ENTITY libaom-time "0.9 SBU (with parallelism=4, add 187 SBU for tests)">
13]>
14
15<!-- Tests not run for version 3.6.1. -->
16<!-- Tests not run for version 3.9.0. -->
17
18<sect1 id="libaom" xreflabel="libaom-&libaom-version;">
19 <?dbhtml filename="libaom.html"?>
20
21 <title>libaom-&libaom-version;</title>
22
23 <indexterm zone="libaom">
24 <primary sortas="a-libaom">libaom</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to libaom</title>
29
30 <para>
31 The <application>libaom</application> package contains a reference
32 version of the Alliance for Open Media video codec. This codec is a
33 patent free alternative to H.265, and is starting to be used throughout
34 the internet.
35 </para>
36
37 &lfs121_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&libaom-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&libaom-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &libaom-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &libaom-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &libaom-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &libaom-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">libaom Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Recommended</bridgehead>
76 <para role="recommended">
77 <xref linkend="yasm"/>
78 (or <xref role='nodep' linkend="nasm"/>)
79 </para>
80
81 <bridgehead renderas="sect4">Optional</bridgehead>
82 <para role="optional">
83 <xref linkend="doxygen"/>
84 </para>
85
86 &test-use-internet;
87
88 </sect2>
89
90 <sect2 role="installation">
91 <title>Installation of libaom</title>
92
93 <para>
94 Install <application>libaom</application> by running the following
95 commands:
96 </para>
97
98<screen><userinput>mkdir aom-build &amp;&amp;
99cd aom-build &amp;&amp;
100
101cmake -DCMAKE_INSTALL_PREFIX=/usr \
102 -DCMAKE_BUILD_TYPE=Release \
103 -DBUILD_SHARED_LIBS=1 \
104 -DENABLE_DOCS=no \
105 -G Ninja .. &amp;&amp;
106ninja</userinput></screen>
107
108 <para>
109 To test the results, issue: <command>ninja runtests</command>. Note that
110 the tests take an extremely long time to run.
111 </para>
112
113 <para>
114 Now, as the <systemitem class="username">root</systemitem> user:
115 </para>
116
117<screen role="root"><userinput>ninja install &amp;&amp;
118rm -v /usr/lib/libaom.a</userinput></screen>
119
120 </sect2>
121
122 <sect2 role="commands">
123 <title>Command Explanations</title>
124
125 <para>
126 <parameter>-DBUILD_SHARED_LIBS=1</parameter>: This switch builds shared
127 versions of the libraries.
128 </para>
129
130 <para>
131 <parameter>-DENABLE_DOCS=no</parameter>: This switch disables building
132 the documentation because it fails due to an incompatibility with the
133 latest version of <xref role="nodep" linkend="doxygen"/>.
134 </para>
135
136 <para>
137 <option>-DENABLE_NASM=yes</option>: Use this switch if you have both
138 <xref linkend="yasm"/> and
139 <xref role="nodep" linkend="nasm"/> installed and wish to use
140 nasm instead of yasm.
141 </para>
142 </sect2>
143
144 <sect2 role="content">
145 <title>Contents</title>
146
147 <segmentedlist>
148 <segtitle>Installed Programs</segtitle>
149 <segtitle>Installed Libraries</segtitle>
150 <segtitle>Installed Directories</segtitle>
151
152 <seglistitem>
153 <seg>
154 None
155 </seg>
156 <seg>
157 libaom.so
158 </seg>
159 <seg>
160 /usr/include/aom
161 </seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="libaom-lib">
171 <term><filename class="libraryfile">libaom.so</filename></term>
172 <listitem>
173 <para>
174 contains functions that provide a reference implementation of the
175 AV1 codec
176 </para>
177 <indexterm zone="libaom libaom-lib">
178 <primary sortas="c-libaom">libaom.so</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182 </variablelist>
183 </sect2>
184</sect1>
Note: See TracBrowser for help on using the repository browser.