Changeset 5e9008a for multimedia/libdriv


Ignore:
Timestamp:
01/10/2006 05:55:50 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:
f7ae70f
Parents:
5d678ec
Message:

Fixed broken commands in the XviD instructions

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • multimedia/libdriv/xvid.xml

    r5d678ec r5e9008a  
    77  <!ENTITY xvid-download-http "http://downloads.xvid.org/downloads/xvidcore-&xvid-version;.tar.bz2">
    88  <!ENTITY xvid-download-ftp  " ">
    9   <!ENTITY xvid-md5sum       "359eebc5fb496a2bf7b15010059e7897">
     9  <!ENTITY xvid-md5sum        "359eebc5fb496a2bf7b15010059e7897">
    1010  <!ENTITY xvid-size          "598 KB">
    11   <!ENTITY xvid-buildsize     "6.7 MB">
     11  <!ENTITY xvid-buildsize     "8.5 MB">
    1212  <!ENTITY xvid-time          "0.2 SBU">
    1313]>
     
    3333<sect2 role="package">
    3434  <title>Introduction to XviD</title>
    35 
    36 <!--
    37 OpenDivX or Xvid?
    38 
    39 OpenDivX is a free implementation of the mpeg4-codec. Alas, the
    40 developers at ProjectMayo didn't gratefully release their actual source
    41 in compileable versions, so the displeasure of the users majority
    42 canalized into a new project named Xvid.
    43 
    44 Xvid development was interrupted in Autumn 2002 due to a code-theft
    45 the developers at Sigma design committed but it is continued now.
    46 
    47 For worse luck, OpenDivX and Xvid are using the same header file
    48 names (an issue that wouldn't be resolved easily) and function
    49 namespace, so you'll have to choose which one to use.
    50 
    51 I personally vote for Xvid, because the installation from sources
    52 is much smoother. If you use mencoder and transcode at the same time,
    53 you may want to choose different codecs for each.
    54 -->
    5535
    5636    <para><application>XviD</application> is an MPEG-4
     
    10181
    10282<screen role="root"><userinput>make install &amp;&amp;
    103 chmod -v 644 /usr/lib/libxvidcore.a &amp;&amp;
    104 ln -v -sf libxvidcore.so.4.0 /usr/lib/libxvidcore.so.4 &amp;&amp;
     83chmod -v 755 /usr/lib/libxvidcore.so.4.1 &amp;&amp;
     84ln -v -sf libxvidcore.so.4.1 /usr/lib/libxvidcore.so.4 &amp;&amp;
    10585ln -v -sf libxvidcore.so.4 /usr/lib/libxvidcore.so &amp;&amp;
    10686install -v -m755 -d /usr/share/doc/xvidcore-&xvid-version;/examples &amp;&amp;
     87install -v -m644 ../../doc/* /usr/share/doc/xvidcore-1.1.0 &amp;&amp;
    10788install -v -m644 ../../examples/* \
    10889    /usr/share/doc/xvidcore-&xvid-version;/examples</userinput></screen>
     
    157138    </variablelist>
    158139
    159 <!--
    160 <para>Following features of MPEG-4 are supported:</para>
    161 <para><emphasis>I, P Frame encoding</emphasis></para>
    162 <para>I-Frames are image frames, while P-Frames are Pattern Frames.
    163 Image Frames contain full images. P-Frames contain patterns of what changes in
    164 the image, thusly saving a lot of space.</para>
    165 <para><emphasis>PMVFast and EPZS with diamond a sqare pattern motion
    166 estimation</emphasis></para>
    167 <para>Fast Motion detection that can refer a square or diamond
    168 shaped pattern to different directions.</para>
    169 <para><emphasis>inter4v mode</emphasis></para>
    170 <para>Fast interpolation ability.</para>
    171 <para><emphasis>fullpixel and halfpixel precision</emphasis></para>
    172 <para>Even halfpixel movements can be encoded. Better precision
    173 results in better compression at better quality.</para>
    174 <para><emphasis>both MPEG-4 and H263 quantizations</emphasis></para>
    175 <para>MPEG-4 is the standard DivX was derived from. H263 is a
    176 slightly changed subset of that standard made by Microsoft. Quantization
    177 means to map the quantity of color values to numbers.</para>
    178 <para><emphasis>custom quant matrices</emphasis></para>
    179 <para>The quantization can be done using custom matrices,
    180 possibly giving better results if the matrix is made to suit the video
    181 data. Every normal user should be fine with the default matrix that comes
    182 with <application>XviD</application>.</para>
    183 <para><emphasis>Adaptive quantization / Luminance masking</emphasis></para>
    184 <para>Qantization and Luminance masking are variant, depending
    185 on the input material, therefore providing better results on dark or very
    186 contrasting images.</para>
    187 -->
    188 
    189140  </sect2>
    190141
Note: See TracChangeset for help on using the changeset viewer.