Changeset f5d262aa


Ignore:
Timestamp:
01/12/2006 08:26:23 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 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
Children:
16f349dd
Parents:
ff6ec19d
Message:

Updates to the FFmpeg instructions: added a patch and dependency URLs to fix the AMR support and added additional documentation installation commands

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rff6ec19d rf5d262aa  
    1 <!ENTITY day          "11">
     1<!ENTITY day          "12">
    22<!ENTITY month        "01">
    33<!ENTITY year         "2006">
  • introduction/welcome/changelog.xml

    rff6ec19d rf5d262aa  
    4343
    4444    <listitem>
     45      <para>January 12th, 2006</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Updates to the FFmpeg instructions: added a patch and
     49          dependency URLs to fix the AMR support and added additional
     50          documentation installation commands.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4556      <para>January 11, 2006</para>
    4657      <itemizedlist>
  • multimedia/videoutils/ffmpeg.xml

    rff6ec19d rf5d262aa  
    99  <!ENTITY ffmpeg-md5sum        "ea5587e3c66d50b1503b82ac4179c303">
    1010  <!ENTITY ffmpeg-size          "1.6 MB">
    11   <!ENTITY ffmpeg-buildsize     "50 MB">
    12   <!ENTITY ffmpeg-time          "0.9 SBU">
     11  <!ENTITY ffmpeg-buildsize     "62.9 MB (built with all dependencies)">
     12  <!ENTITY ffmpeg-time          "1.0 SBU">
    1313]>
    1414
     
    7272        url="&patch-root;/ffmpeg-&ffmpeg-version;-gcc4-1.patch"/></para>
    7373      </listitem>
     74      <listitem>
     75        <para>Required patch: <ulink
     76        url="&patch-root;/ffmpeg-&ffmpeg-version;-amr_fixes-1.patch"/></para>
     77      </listitem>
    7478    </itemizedlist>
    7579
     
    8589    <xref linkend="mplayer"/> (for the shared post-processing library),
    8690    <ulink url="http://sourceforge.net/projects/faac">FAAC</ulink>,
    87     <ulink url="http://sourceforge.net/projects/faac">FAAD2</ulink> and
     91    <ulink url="http://sourceforge.net/projects/faac">FAAD2</ulink>,
     92    <ulink url="http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-540.zip">
     93    AMR narrowband (floating point)</ulink> or
     94    <ulink url="http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-530.zip">
     95    AMR naarrowband (fixed point)</ulink>,
     96    <ulink url="http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26204-530.zip">
     97    AMR wideband</ulink>, and
    8898    <xref linkend="tex"/> (to build HTML documentation)</para>
    8999
     
    102112
    103113<screen><userinput>patch -Np1 -i ../ffmpeg-&ffmpeg-version;-gcc4-1.patch &amp;&amp;
    104 sed -i -e "s/static uint64/const uint64/" \
     114patch -Np1 -i ../ffmpeg-&ffmpeg-version;-amr_fixes-1.patch &amp;&amp;
     115sed -i "s/static uint64/const uint64/" \
    105116    libavcodec/liba52/resample_mmx.c &amp;&amp;
    106117./configure --prefix=/usr --enable-shared \
     
    109120
    110121    <para>If you have <application>TeX</application> installed, the man pages
    111     and documentation were built during the <command>make</command> process.
    112     Skip to the <systemitem class="username">root</systemitem> user installation
    113     steps. If you do not have <application>TeX</application> installed, use the
     122    and HTML documentation were built during the <command>make</command>
     123    process. Skip to the <systemitem class="username">root</systemitem> user
     124    installation steps if you don't need other formats of the documentation, or
     125    issue any or all of the following commands to create the additional
     126    formats.</para>
     127
     128<screen><userinput>for DOCFILE in faq ffmpeg-doc ffplay-doc ffserver-doc hooks
     129do
     130    texi2pdf -b $DOCFILE.texi
     131    texi2dvi -b $DOCFILE.texi
     132    dvips -o $DOCFILE.ps $DOCFILE.dvi
     133    makeinfo --plaintext --force -o $DOCFILE.txt $DOCFILE.texi
     134done</userinput></screen>
     135
     136    <para>If you do not have <application>TeX</application> installed, use the
    114137    following command to build the man pages:</para>
    115138
    116 <screen><userinput>make -C doc {ffmpeg,ffserver,ffplay}.1</userinput></screen>
     139<screen><userinput>make -C doc ff{mpeg,play,server}.1</userinput></screen>
    117140
    118141    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     
    120143<screen role="root"><userinput>make install</userinput></screen>
    121144
    122     <para>If you have <application>TeX</application> installed (which caused
    123     the HTML documentation to be built earlier), install the documentation by
    124     issuing the following commands as the <systemitem
    125     class="username">root</systemitem> user:</para>
     145    <para>If you have <application>TeX</application> installed on your system,
     146    install the documentation by issuing the following commands as the
     147    <systemitem class="username">root</systemitem> user (modify the command
     148    appropriately to reflect the documentation formats you've created):</para>
    126149
    127150<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/ffmpeg-&ffmpeg-version; &amp;&amp;
    128 install -v -m644 doc/*.html /usr/share/doc/ffmpeg-&ffmpeg-version;</userinput></screen>
     151install -v -m644 doc/*.{html,dvi,pdf,ps,txt}
     152    /usr/share/doc/ffmpeg-&ffmpeg-version;</userinput></screen>
    129153
    130154  </sect2>
     
    135159    <para><command>sed -i -e "s/static uint64/const uint64/"
    136160    libavcodec/liba52/resample_mmx.c</command>: This command fixes an issue
    137     on machines with MMX capability and use <application>GCC</application>-3.4.x
    138     to compile in A52 support using the <option>--enable-a52</option> parameter
    139     passed to the <command>configure</command> script.</para>
     161    on machines with MMX capability and use <application>GCC</application> >=
     162    3.4.x to compile in A52 support using the <option>--enable-a52</option>
     163    parameter passed to the <command>configure</command> script.</para>
    140164
    141165    <para><parameter>--enable-shared</parameter>: This switch is needed to
     
    154178    <para><option>--enable-<replaceable>[codec]</replaceable></option>: Review
    155179    the available options and codecs using the
    156     <command>./configure --help</command> command.</para>
     180    <command>./configure --help</command> command. Also review the information
     181    at the end of the configure script (<command>cat</command> the file or view
     182    it using a text editor) for information about building support for the AMR
     183    codecs.</para>
    157184
    158185  </sect2>
     
    265292
    266293</sect1>
    267 
Note: See TracChangeset for help on using the changeset viewer.