Commit Graph

769 Commits

Author SHA1 Message Date
Martijn van Beurden
29a28338c3 Add partial_tukey and punchout_tukey apodization functions
Adds two new apodization functions that seem to perform better than
the apodization functions currently in the codebase and fixes three
existing windows as well.

Its important to note that this patch only affects the encoder stage
that evaluates various possible predictors. Audio encoded with these
new windows will still decode with existing legacy decoders.

= Theory =
These functions are used to window the  audio data at the predictor
stage. These news functions enable the use of only part of the signal
to generate a predictor. This helps  because short transients can
introduce noise into the predictor. The  predictor becomes very good
at prediciting one part of the  signal, instead of mediocre for the
whole block.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2014-09-22 18:03:24 +10:00
Martijn van Beurden
0ae3e4689d Various documentation fixes, merge with website
The html documentation was diff'ed to the current website pages
and all difference were merged into the page they weren't yet
incorporated. This includes lots of small fixes and
improvements.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2014-08-09 12:23:56 +10:00
Erik de Castro Lopo
8e2eea6322 Silence warning message when doxygen disabled. 2013-10-15 18:01:28 +11:00
Martijn van Beurden
733efde227 Fix documentation rice partition order
For some reason all documentation lists the max rice partition
order to be 16, while the maximum is 15. This fixes flac -H, the
man page and the HTML source code documentation

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-09-25 23:33:55 +10:00
Erik de Castro Lopo
99f5a57d2a Fix minor Makefile.am issues arising from 943384d7c3.
Commit 943384d7c3 removed two directories in the doc/ tree and
those directories had to be removed from the Makefile.ams one
level up.
2013-09-18 06:56:42 +10:00
Martijn van Beurden
943384d7c3 Clean up source documentation
This patch removes all content that is better viewed online (i.e.
downloads, links etc.) and not necessary for development.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-09-18 06:10:22 +10:00
Martijn van Beurden
a68082be0b Convert logo to SVG
While developing FLAC Frontend, there where several occasions where
I felt little restrained because the FLAC logo is available only in
gif. I made an SVG version and rendered a new GIF version from it.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-09-17 18:25:08 +10:00
Ulrich Klauer
cd4ddabe0f Language fix: "difference licenses"
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-05-27 18:08:57 +10:00
Ulrich Klauer
0196c0f44c Properly close HTML comments
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-05-27 06:42:43 +10:00
Ulrich Klauer
2bce0d60fe Declare UTF-8 encoding for changelog
The changelog declared "charset=ISO-8859-1", but used a UTF-8 encoded
name. Change the declaration to UTF-8 to fix this.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-05-27 06:41:17 +10:00
Erik de Castro Lopo
b1982fbc5f Set version to 1.3.0 and update coyprights throughout. 2013-05-26 19:17:53 +10:00
Erik de Castro Lopo
d2122a0725 changelog.html : Added entries about RICE2 residue coding method. 2013-05-25 17:51:17 +10:00
Erik de Castro Lopo
6ed380943b Document --apply-replaygain-which-is-not-lossless command line option. 2013-04-28 19:00:30 +10:00
Erik de Castro Lopo
71e36c2e9d doc/html/changelog.html : Updates. 2013-04-07 18:40:34 +10:00
Miroslav Lichvar
1ec6e3a064 Fix option names in documentation and help messages.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-03-29 16:31:15 +11:00
Erik de Castro Lopo
d3dac717ce changelog.html : Updates. 2013-03-17 18:31:46 +11:00
Erik de Castro Lopo
c8f84e243f doc/html/changelog.html : Prepare for 1.3.0 release. 2013-03-10 10:58:57 +11:00
Erik de Castro Lopo
c574ffbd3e doc/html/documentation_tools_flac.html : Tweaks. 2013-03-09 23:56:19 +11:00
Erik de Castro Lopo
9d057c7179 Fix a bunch of WDG validation warnings in HTML docs. 2013-03-05 18:25:15 +11:00
Erik de Castro Lopo
9c024f2bd8 documentation_tools_flac.html : Document --ignore-chunk-sizes command line option. 2013-03-05 17:46:04 +11:00
Erik de Castro Lopo
5eb63fc8e4 documentation_tools_flac.html : Fix WDG HTML validator warnings. 2013-03-05 17:40:57 +11:00
Erik de Castro Lopo
c8adb080b0 Add appropriate WAV channel masks for 7 and 8 channel files.
This commit accepts the new default channel masks for 6.1 and 7.1
surround input WAV files, and writes the corresponding masks when
decoding to WAV without a channel mask from the metadata block.

The local copy of the format spec is also updated with the new text
from the flac-website repository.

Patch from Ralph Giles <giles@mozilla.com>
2013-03-02 14:09:46 +11:00
Ralph Giles
4632f945de Fix the 'distclean' target.
Generated documentation needs to be removed by this target
for 'distcheck' to succeed.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-01-19 11:52:33 +11:00
Olivier Blin
f699788f31 doc: fix out-of-tree build
When building outside of the source tree, the Doxyfile needs to be
generated in the build tree and should point to the proper paths for
include directories and html footer.

The generated api files to install should also be taken from the build
tree instead of the source tree.

Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
2013-01-14 21:52:43 +11:00
Max Horn
66c0a581d2 autogen.sh: replace this by a simple call to autoreconf
The autoreconf tool is provided by autoconf to do what custom
autogen.sh scripts in many projects used to do. Only it is more
robust and widely tested. It has been available for several years,
too. No reason to rely on custom code for this.

Signed-off-by: Max Horn <max@quendi.de>
2012-12-13 08:12:14 +11:00
Miroslav Lichvar
6a1f59b58f Update FSF address. 2012-12-06 06:17:26 +11:00
Avuton Olrich
8019c8e525 Fix --disable-doxygen-docs install 2012-02-01 19:46:27 -08:00
Josh Coalson
dea0f5a044 add 2009 copyright 2009-01-07 07:31:28 +00:00
Josh Coalson
c9ed238c3d Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets (SF#1947353, SF#2182432: https://sourceforge.net/tracker2/?func=detail&aid=1947353&group_id=13478&atid=363478 https://sourceforge.net/tracker2/index.php?func=detail&aid=2182432&group_id=13478&atid=113478) 2009-01-07 07:03:17 +00:00
Josh Coalson
f36d4567c1 convert SF tracker links to new tracker2 system 2009-01-07 06:58:53 +00:00
Josh Coalson
0396b5fa0f Fixes for autotools (SF#1859664: https://sourceforge.net/tracker2/?func=detail&aid=1859664&group_id=13478&atid=313478) 2009-01-07 06:58:04 +00:00
Josh Coalson
d0025bdacd Improved error message when user attempts to decode a non-FLAC file (SF#2222789: https://sourceforge.net/tracker2/?func=detail&aid=2222789&group_id=13478&atid=113478 2009-01-07 06:55:51 +00:00
Josh Coalson
bd161c61fa Improve decoder's ability to distinguish between a FLAC sync code and an MPEG one (SF #2491433 https://sourceforge.net/tracker2/?func=detail&aid=2491433&group_id=13478&atid=113478 2009-01-07 06:54:05 +00:00
Josh Coalson
ee51fc0bae Fix bug in bitreader handling of read callback returning a short count (SF#2490454: https://sourceforge.net/tracker2/?func=detail&aid=2490454&group_id=13478&atid=113478) 2009-01-06 17:14:31 +00:00
Josh Coalson
0915a551eb Fixes for Sun Studio/Forte; us AC_C_INLINE to detect inline keyword for compiler; eliminate floating point calcs in RG analysis array size calculations (SF#1701960: https://sourceforge.net/tracker2/?func=detail&aid=1701960&group_id=13478&atid=313478) 2009-01-03 02:13:17 +00:00
Josh Coalson
494d9ab011 mingw fixes, enable build dll w/ mingw (SF#2000973: https://sourceforge.net/tracker2/?func=detail&aid=2000973&group_id=13478&atid=313478) 2009-01-03 01:59:10 +00:00
Josh Coalson
75e6cabe05 mingw fixes (SF#2209829: https://sourceforge.net/tracker2/?func=detail&aid=2209829&group_id=13478&atid=313478) 2009-01-03 01:55:17 +00:00
Josh Coalson
d75a07c968 fix bug with fractional seconds on some locales (SF#1815517: https://sourceforge.net/tracker2/?func=detail&aid=1815517&group_id=13478&atid=113478) 2009-01-03 01:50:46 +00:00
Josh Coalson
4b0f27011b fix bug with fractional seconds on some locales (SF#1858012: https://sourceforge.net/tracker2/?func=detail&aid=1858012&group_id=13478&atid=113478) 2009-01-03 01:49:01 +00:00
Josh Coalson
d04f46a440 add flacdiff and flactimer utils to source distribution (SF#1911149: https://sourceforge.net/tracker2/?func=detail&aid=1911149&group_id=13478&atid=113478) 2009-01-03 01:43:59 +00:00
Josh Coalson
75d35cfe0b proper handling of variable length arrays (SF#2002481 https://sourceforge.net/tracker2/?func=detail&aid=2002481&group_id=13478&atid=113478) 2009-01-03 01:35:56 +00:00
Josh Coalson
e5c6439074 fixes for windows builds (SF#1756624: https://sourceforge.net/tracker2/?func=detail&aid=1756624&group_id=13478&atid=113478) 2009-01-02 01:28:30 +00:00
Josh Coalson
85c4e9fdc5 Fix bug where flac was disallowing use of --replay-gain when encoding from stdin (SF#1840124: https://sourceforge.net/tracker2/?func=detail&aid=1840124&group_id=13478&atid=113478) 2009-01-02 01:23:59 +00:00
Josh Coalson
63072d70c4 fix libFLAC encoder to default to compression level 5 (SF#1816825: https://sourceforge.net/tracker2/?func=detail&aid=1816825&group_id=13478&atid=113478) 2009-01-02 01:18:56 +00:00
Josh Coalson
402a2a3fb2 fixes for windows builds (SF#1809863: https://sourceforge.net/tracker2/?func=detail&aid=1809863&group_id=13478&atid=113478) 2009-01-02 01:15:36 +00:00
Josh Coalson
a832ef32fb fixes for windows builds (SF#1676822: https://sourceforge.net/tracker2/?func=detail&aid=1676822&group_id=13478&atid=113478) 2009-01-02 01:12:59 +00:00
Josh Coalson
d7f5344a64 add support for Wave64 (SF#1769582: https://sourceforge.net/tracker/index.php?func=detail&aid=1769582&group_id=13478&atid=113478) 2008-09-09 07:49:19 +00:00
Josh Coalson
7617cacb28 add support for RF64 2008-09-09 07:24:23 +00:00
Josh Coalson
1be89c498d add FLAC__format_blocksize_is_subset() 2008-05-27 05:19:52 +00:00
Josh Coalson
82b128050e update copyright for 2008 2008-02-28 05:34:21 +00:00