mirror of https://github.com/xiph/flac
minor formatting changes
This commit is contained in:
parent
419e6594ff
commit
cd66fc0786
|
@ -133,7 +133,7 @@ such a program is covered only if its contents constitute a work based
|
|||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
|
|
2
README
2
README
|
@ -22,7 +22,7 @@ codec developed by Josh Coalson.
|
|||
|
||||
FLAC is comprised of 1) `libFLAC', a library which implements
|
||||
reference encoders and decoders, licensed under the GNU Lesser
|
||||
General Public License (LGPL); 2) `flac', a command-line program for
|
||||
General Public License (LGPL); 2) `flac', a command-line program for
|
||||
encoding and decoding files, licensed under the GNU General public
|
||||
License (GPL); 3) `metaflac', a command-line program for editing
|
||||
FLAC metadata, licensed under the GPL; 4) player plugins for XMMS
|
||||
|
|
|
@ -257,25 +257,25 @@
|
|||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><option>-0</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 0 -b 1152 -r 2,2
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-1</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 0 -b 1152 -M -r 2,2
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-2</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 0 -b 1152 -m -r 3
|
||||
</para>
|
||||
|
@ -284,25 +284,25 @@
|
|||
|
||||
<varlistentry>
|
||||
<term><option>-3</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 6 -b 4608 -r 3,3
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-4</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 8 -b 4608 -M -r 3,3
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-5</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 8 -b 4608 -m -r 3,3
|
||||
</para>
|
||||
|
@ -311,16 +311,16 @@
|
|||
|
||||
<varlistentry>
|
||||
<term><option>-6</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 8 -b 4608 -m -r 4
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
<varlistentry>
|
||||
<term><option>-7</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 8 -b 4608 -m -e -r 6
|
||||
</para>
|
||||
|
@ -338,14 +338,14 @@
|
|||
|
||||
<varlistentry>
|
||||
<term><option>-9</option></term>
|
||||
|
||||
|
||||
<listitem>
|
||||
<para>Synonymous with -l 32 -b 4608 -m -e -r 16 -p
|
||||
(very slow!)</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
|
||||
</listitem>
|
||||
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ endif
|
|||
|
||||
if FLaC__NO_ASM
|
||||
else
|
||||
if FLaC__CPU_IA32
|
||||
if FLaC__CPU_IA32
|
||||
if FLaC__HAS_NASM
|
||||
SUBDIRS = ia32 .
|
||||
libFLAC_la_LIBADD = ia32/libFLAC-asm.la
|
||||
|
|
|
@ -905,7 +905,7 @@ cident FLAC__lpc_compute_residual_from_qlp_coefficients_asm_ia32_mmx
|
|||
sub ebx, 2
|
||||
jg .mmx_4_loop_i
|
||||
jmp .mmx_end
|
||||
|
||||
|
||||
.mmx_4more:
|
||||
shl eax, 2
|
||||
neg eax
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
# test_streams - Simple test pattern generator
|
||||
# Copyright (C) 2000,2001 Josh Coalson
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
# test_streams - Simple test pattern generator
|
||||
# Copyright (C) 2000,2001 Josh Coalson
|
||||
#
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
|
Loading…
Reference in New Issue