source: multimedia/libdriv/x265.xml@ 0553fd4

trunk
Last change on this file since 0553fd4 was 4a9055b9, checked in by Douglas R. Reno <renodr@…>, 3 weeks ago

Update to x265-4.0

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[ab4fdfc]1<?xml version="1.0" encoding="UTF-8"?>
[aef261a]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
[30596408]7 <!ENTITY x265-download-http "https://bitbucket.org/multicoreware/x265_git/downloads/x265_&x265-version;.tar.gz">
[aef261a]8 <!ENTITY x265-download-ftp " ">
[4a9055b9]9 <!ENTITY x265-md5sum "44e0082a7635eab2488bebd18875a09a">
[30596408]10 <!ENTITY x265-size "1.6 MB">
[99c3e425]11 <!ENTITY x265-buildsize "45 MB">
[e9d2365]12 <!ENTITY x265-time "0.5 SBU (using parallelism=4)">
[aef261a]13]>
14
15<sect1 id="x265" xreflabel="x265-&x265-version;">
16 <?dbhtml filename="x265.html"?>
17
18
19 <title>x265-&x265-version;</title>
20
21 <indexterm zone="x265">
22 <primary sortas="a-x265">x265</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to x265</title>
27
28 <para>
29 <application>x265</application> package provides a library for encoding
30 video streams into the H.265/HEVC format.
31 </para>
32
[5efdd78]33 &lfs122_checked;
[aef261a]34
35 <bridgehead renderas="sect3">Package Information</bridgehead>
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>
39 Download (HTTP): <ulink url="&x265-download-http;"/>
40 </para>
41 </listitem>
42 <listitem>
43 <para>
44 Download (FTP): <ulink url="&x265-download-ftp;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download MD5 sum: &x265-md5sum;
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download size: &x265-size;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &x265-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &x265-time;
65 </para>
66 </listitem>
67 </itemizedlist>
[e024fe4]68
[aef261a]69 <bridgehead renderas="sect3">x265 Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Required</bridgehead>
72 <para role="required">
73 <xref linkend="cmake"/>
74 </para>
75
76 <bridgehead renderas="sect4">Recommended</bridgehead>
77 <para role="recommended">
[b20230b]78 <xref linkend="nasm"/>
[aef261a]79 </para>
80
[3fa31b47]81 <bridgehead renderas="sect4">Optional</bridgehead>
82 <para role="optional">
[27c8cca]83 <ulink url="https://github.com/numactl/numactl">numactl</ulink>
[3fa31b47]84 </para>
85
[aef261a]86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of x265</title>
90
91 <para>
92 Install <application>x265</application> by running the following
93 commands:
94 </para>
95
[6293999]96<!-- the default build is Release, no need to specify that -->
[f9bf7d4a]97<screen><userinput>mkdir bld &amp;&amp;
[dccd96de]98cd bld &amp;&amp;
[8e236eb]99
[cbfa153]100cmake -D CMAKE_INSTALL_PREFIX=/usr \
[e75b6d4]101 -D GIT_ARCHETYPE=1 \
[cbfa153]102 -W no-dev ../source &amp;&amp;
[aef261a]103make</userinput></screen>
104
105 <para>
106 This package does not come with a test suite.
107 </para>
108
109 <para>
[9a45b052]110 To install the package, first remove any old library versions.
111 After installation, remove a static library.
112 As the &root; user:
[aef261a]113 </para>
114
[ef35d61]115<screen role="root"><userinput>make install &amp;&amp;
116rm -vf /usr/lib/libx265.a</userinput></screen>
[f9bf7d4a]117
118 </sect2>
119
120 <sect2 role="commands">
121 <title>Command Explanations</title>
[aef261a]122
[3f24c6c]123 <para>
[9a45b052]124 <parameter>-W no-dev</parameter>: This switch is used to suppress warnings
125 intended for the package developers.
[6293999]126 </para>
127
[e75b6d4]128 <para>
129 <parameter>-D GIT_ARCHETYPE=1</parameter>: This switch is needed
130 because the build system will not generate a pkg-config file or install
131 a shared library unless <xref linkend="git"/> is installed. Git isn't
132 required for anything else in this package, so this switch is used to
133 work around it for users who do not want to install Git as a build
134 dependency.
135 </para>
136
[6293999]137 <para>
[875b3b57]138 <command>rm -vf /usr/lib/libx265.a</command>: BLFS does not recommend
[8558044]139 using static libraries.
[f9bf7d4a]140 </para>
[aef261a]141 </sect2>
142
143 <sect2 role="content">
144 <title>Contents</title>
145
146 <segmentedlist>
[d7015e7]147 <segtitle>Installed Program</segtitle>
[aef261a]148 <segtitle>Installed Library</segtitle>
[d7015e7]149 <segtitle>Installed Directories</segtitle>
[aef261a]150
151 <seglistitem>
152 <seg>
153 x265
154 </seg>
155 <seg>
[d7015e7]156 libx265.so
157 </seg>
158 <seg>
159 None
[aef261a]160 </seg>
161 </seglistitem>
162 </segmentedlist>
163
164 <variablelist>
165 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
166 <?dbfo list-presentation="list"?>
167 <?dbhtml list-presentation="table"?>
168
169 <varlistentry id="libx265">
170 <term><filename class="libraryfile">libx265.so</filename></term>
171 <listitem>
172 <para>
173 provides the functions used to encode video streams into the
[4c24eb0a]174 H.265/HEVC format
[aef261a]175 </para>
176 <indexterm zone="x265 libx265">
177 <primary sortas="c-libx265">libx265.so</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 </variablelist>
183
184 </sect2>
185
186</sect1>
Note: See TracBrowser for help on using the repository browser.