source: multimedia/libdriv/libtheora.xml@ 3fa825f6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3fa825f6 was 3fa825f6, checked in by Ken Moffat <ken@…>, 10 years ago

more tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@12751 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.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 libtheora-download-http "http://downloads.xiph.org/releases/theora/libtheora-&libtheora-version;.tar.xz">
8 <!ENTITY libtheora-download-ftp " ">
9 <!ENTITY libtheora-md5sum "9eeabf1ad65b7f41533854a59f7a716d">
10 <!ENTITY libtheora-size "1.4 MB">
11 <!ENTITY libtheora-buildsize "13.4 MB (without static libs or API docs and without installing the examples)">
12 <!ENTITY libtheora-time "0.2 SBU">
13]>
14
15<sect1 id="libtheora" xreflabel="libtheora-&libtheora-version;">
16 <?dbhtml filename="libtheora.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libtheora-&libtheora-version;</title>
24
25 <indexterm zone="libtheora">
26 <primary sortas="a-Libtheora">Libtheora</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libtheora</title>
31
32 <para>
33 <application>libtheora</application> is a reference implementation of the
34 Theora video compression format being developed by the Xiph.Org
35 Foundation.
36 </para>
37
38 &lfs75_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&libtheora-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&libtheora-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &libtheora-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &libtheora-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &libtheora-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &libtheora-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">libtheora Dependencies</bridgehead>
63
64 <bridgehead renderas="sect4">Required</bridgehead>
65 <para role="required"><xref linkend="libogg"/></para>
66
67 <bridgehead renderas="sect4">Recommended</bridgehead>
68 <para role="recommended"><xref linkend="libvorbis"/></para>
69
70 <bridgehead renderas="sect4">Optional</bridgehead>
71 <para role="optional"><xref linkend="sdl"/> and
72 <xref linkend="libpng"/> (both to build the example players),
73 <xref linkend="doxygen"/>,
74 <xref linkend="texlive"/>,
75 <ulink url="http://bibtexml.sourceforge.net">BibTex</ulink>, and
76 <ulink url="http://www.xfig.org/">Transfig</ulink>
77 (all four to build the API documentation),
78 <ulink url="http://www.valgrind.org">Valgrind</ulink></para>
79
80 <para condition="html" role="usernotes">User Notes:
81 <ulink url='&blfs-wiki;/Libtheora'/></para>
82
83 </sect2>
84
85 <sect2 role="installation">
86 <title>Installation of libtheora</title>
87
88 <para>Install <application>libtheora</application> by running the following
89 commands:</para>
90
91<screen><userinput>sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c &amp;&amp;
92./configure --prefix=/usr --disable-static &amp;&amp;
93make</userinput></screen>
94
95 <para>If you wish to run the tests, issue: <command>make check</command>.</para>
96
97 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
98
99<screen role="root"><userinput>make install</userinput></screen>
100
101 <para>If you wish to install the examples (so that you can hack on
102 <literal>theora</literal>), install them as the <systemitem
103 class="username">root</systemitem> user:</para>
104
105<screen role="root"><userinput>cd examples/.libs &amp;&amp;
106for E in *; do
107 install -v -m755 $E /usr/bin/theora_${E}
108done</userinput></screen>
109
110 </sect2>
111
112 <sect2 role="commands">
113 <title>Command Explanations</title>
114
115 <para>
116 <command>sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c</command>:
117 This <command>sed</command> fixes build with
118 <application>libpng</application> 1.6.
119 </para>
120
121 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
122 href="../../xincludes/static-libraries.xml"/>
123
124 </sect2>
125
126 <sect2 role="content">
127 <title>Contents</title>
128
129 <segmentedlist>
130 <segtitle>Installed Programs</segtitle>
131 <segtitle>Installed Libraries</segtitle>
132 <segtitle>Installed Directories</segtitle>
133
134 <seglistitem>
135 <seg>None, unless you installed the examples</seg>
136 <seg>libtheora.so, libtheoraenc.so, and
137 libtheoradec.so</seg>
138 <seg>/usr/include/theora and /usr/share/doc/libtheora-&libtheora-version;</seg>
139 </seglistitem>
140 </segmentedlist>
141
142 <variablelist>
143 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
144 <?dbfo list-presentation="list"?>
145 <?dbhtml list-presentation="table"?>
146
147 <varlistentry id="libtheora-lib">
148 <term><filename class='libraryfile'>libtheora*.so</filename></term>
149 <listitem>
150 <para>libraries provide the functions to read and write video
151 files.</para>
152 <indexterm zone="libtheora libtheora-lib">
153 <primary sortas="c-libtheora">libtheora*.so</primary>
154 </indexterm>
155 </listitem>
156 </varlistentry>
157
158 </variablelist>
159
160 </sect2>
161
162</sect1>
Note: See TracBrowser for help on using the repository browser.