summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Release FLAC 1.4.11.4.1Martijn van Beurden2022-09-222-1/+39
|
* Fix a lot of Doxygen errors and add some documentationMartijn van Beurden2022-09-201-2/+2
|
* Include api dir in distributionMartijn van Beurden2022-09-181-6/+27
| | | Also, don't create empty Doxygen tag and api directory
* Release FLAC 1.4.01.4.0Martijn van Beurden2022-09-091-1/+1
|
* Restructure README, API and HTML documentationMartijn van Beurden2022-09-0522-3781/+16
| | | | | | Tool documentation has moved to man directory, other dev docs to README.md and CONTRIBUTING.md. User documentation is already on the website and doesn't really belong in the source code. Also, fix CMake so that it uses Doxyfile.in instead of using defaults.
* Convert docbook to markdownMartijn van Beurden2022-08-093-1757/+0
| | | | | | | | | Currently, the man pages are converted from a docbook document, but the conversion doesn't seem very reliable. Also, the man page is more-or-less duplicated by the html documentation. This commit moves all tool documentation to a markdown document which is readable by itself and can be converted by pandoc to a man page and can be used by Jekyll to populate the website.
* Move changelog to markdown and top directory, add changes in gitMartijn van Beurden2022-08-082-1646/+0
|
* Bulk update copyright dates to 2022Martijn van Beurden2022-07-2621-38/+38
|
* Remove draft designation from isoflac.txtMartijn van Beurden2022-06-141-1/+1
|
* Remove Makefile.lite build systemMartijn van Beurden2022-05-272-30/+1
|
* Remove 'news' from html docMartijn van Beurden2022-04-261-18/+1
|
* Update links to Xiph git in documentationMartijn van Beurden2022-04-264-5/+6
|
* Add support in the encoder for up to 20 bit sample ratesCon Kolivas2022-04-132-2/+2
| | | | | | | Now that many DACs support up to 768kHz, add support for these sample rates to the encoder. Files produced with these sample rates are already decodable by the reference decoder. Update documentation and tests accordingly.
* Set release date in the changelog.Ralph Giles2022-02-201-1/+1
| | | | | | Missed this in the previous commit. Signed-off-by: Ralph Giles <giles@thaumas.net>
* Change version to 1.3.4 and add placeholders for release dateMartijn van Beurden2022-02-202-2/+2
| | | | Signed-off-by: Ralph Giles <giles@thaumas.net>
* Add 1.3.4 to changelogMartijn van Beurden2022-02-201-2/+87
| | | | Signed-off-by: Ralph Giles <giles@thaumas.net>
* Fix building/installing docs with CMakeTGMarkiewicz2021-06-241-1/+1
| | | | | | | Details: - During the installation of the package with CMake, it stops (via fail) when doc files should be copied. It was caused by changing current binary to current source CMake directory.
* CMake polishingevpobr2020-05-141-5/+13
| | | | | | | | | | | | | | * Improve CPU features detection CMAKE_SYSTEM_PROCESSOR is pretty useless (e.g. when compiling with MSVC ARM64 toolchain and Ninja still returns system processor). * Don't build src/utils targets by default Fix compilation for UWP platform. * Add more Visual studio Git ignore patterns * Autogenerate Doxygen docs
* Simplified logic of parsing sizes of rice-partitionsUlrik Mikaelsson2020-05-031-6/+6
| | | | | | | | | | | | > if the partition order is zero, n = frame's blocksize - predictor order > else if this is not the first partition of the subframe, > n = (frame's blocksize / (2^partition order)) > else n = (frame's blocksize / (2^partition order)) - predictor order if the partition order is zero, then partition_number can only be zero if the partition order is zero, then (frame's blocksize / (2^partition order)) is (frame's blocksize / 1) == frame's blocksize
* Bunch of CMake fixesevpobr2020-05-035-30/+25
| | | | | | | | | | | | * Add more Git ignore patterns * Fix Ogg dependency handling (closes #203) * Remove unneeded compiler flag (closes #204) * Fix Visual Studio DLL build error error C2491: 'flac_internal_rename_utf8': definition of dllimport function not allowed (closes #205) * Add alias targets * Reduce number of CMake files * Improve CMake intrinsics detection
* doc: Update to Doxygen 1.7.6.1NotTsunami2019-11-191-131/+695
| | | | | | This will bring our doxyfile closer to the modern world and clean up some warnings in the doxygen output during a regular build. I believe it is pretty fair to use 1.7.6.1 given it released in 2011, with the 1.7.x branch a year prior. The current branch is 1.8, which released 2012, but I believe 1.7.6.1 is sufficient. Updated by running doxygen -u doc/Doxygen.in with Doxygen 1.7.6.1. The only manual change was adding 'Free Lossless Audio Codec' to PROJECT_BRIEF.
* cmake_minimum_required() cleanup:sezero2019-11-151-1/+2
| | | | | | | | | | - document version requirements in the top-level file. - remove incorrect version requirements from sub-dirs. - set min. required version to 3.5 in top-level file. - set minimun required version to 3.9 under docs/ . - make documents building an option (on by default.) so, the tree can be built using cmake-3.5 using -DBUILD_DOCS=0 on the command line.
* Make sure CMake build files end up in release tarballErik de Castro Lopo2019-10-013-3/+3
|
* doc: Add xmlns attributes.Ralph Giles2019-08-0516-16/+16
| | | | validator.w3.org wants a namespace declaration for xhtml.
* Version 1.3.31.3.3Erik de Castro Lopo2019-08-043-2/+92
|
* doc: Remove xhtml validator links.Fabian Greffrath2019-08-0416-48/+0
| | | | | | | | | | | | | | Fix "privacy-breach-w3c-valid-html" lintian error. Don't ping an external site when loading documentation pages since this can be used to track user activity. These links are also broken, since they depend on the referer header, which browsers no longer send to insecure pages for similar privacy reasons. That aspect could be addressed by using https urls for the validator site. Signed-off-by: Ralph Giles <giles@thaumas.net>
* doc: Use empty-element <hr/> tag.Ralph Giles2019-08-041-1/+1
| | | | | | | | | Improve the conformance of the xhtml generated by doxygen by using the self-closing <hr/> tag in the custom footer. Without this, xmllint complains about </body> and </html> end tags inside the still-only <hr>. That syntax is allowed in html but not xml.
* CMake minimum required lowered to 3.1Vitaly Kirsanov2019-05-041-0/+1
|
* CMake support addedVitaliy Kirsanov2019-05-043-0/+49
|
* Fix miscellaneous typos.luz.paz2018-05-245-12/+12
| | | | Found via `codespell -q 3`
* doc: Add notes about subframe sample sizeRuud van Asseldonk2017-06-121-1/+8
|
* Honor user's $(htmldir) and do not override GNU defaults for $(docdir)David Seifert2017-01-153-12/+8
| | | | | | | * HTML files should be installed to $(htmldir), and $(docdir) should not be changed, as this is a user flag in the GNU conventions. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Version 1.3.21.3.2Erik de Castro Lopo2017-01-014-5/+5
|
* Add missing files to Makefile.amErik de Castro Lopo2016-12-111-1/+2
|
* doc/html/changelog.html: Add creditsErik de Castro Lopo2016-12-071-3/+2
|
* doc/html/changelog.html: Add OS/SSE assumptionsErik de Castro Lopo2016-12-061-0/+1
|
* doc/html/changelog.html: More updates for 1.3.2 releaseErik de Castro Lopo2016-12-061-7/+15
|
* Another bulk update of copyright datesErik de Castro Lopo2016-12-0518-35/+35
|
* doc/html/changelog.html: Update for 1.3.2 releaseErik de Castro Lopo2016-12-051-1/+6
|
* Bulk update copyright datesErik de Castro Lopo2016-12-054-4/+4
|
* Correct additional 'MEATADATA' typos.Ralph Giles2016-10-281-4/+4
| | | | | | Thanks to Matthew Gregan for the report. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Flac-in-mp4 draft v0.0.3.Ralph Giles2016-10-051-69/+75
| | | | | | Draft updates in response to feedback from Yusuke Nakamura. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Flac-in-mp4 draft v0.0.2.Ralph Giles2016-10-051-165/+164
| | | | | | Draft updates in response to feedback from David Evans. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Flac-in-mp4 draft v0.0.1.Ralph Giles2016-10-051-31/+30
| | | | | | | Draft updates in response to feedback from Timothy B. Terriberry and Jean-Yves Avenard. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Flac-in-mp4 draft v0.0.0.Ralph Giles2016-10-051-0/+662
| | | | | | | | | | | We've been working on a draft spec for encapsulation of FLAC in the ISO Base Media File Format (mp4). This is the initial draft created by Monty Montgomery based on Yusuke Nakamura's Opus-in-mp4 draft. More details at https://bugzilla.mozilla.org/show_bug.cgi?id=1286097 Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* doc: specify that quantized LPC shift must be non-negativeTristan Matthews2016-01-251-1/+2
| | | | | | Refs http://sourceforge.net/p/flac/bugs/424/ Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* changelog.html: Start on 1.3.2 changelog entryErik de Castro Lopo2016-01-081-0/+85
|
* metaflac: add --scan-replay-gain optionBen Boeckel2015-08-141-0/+10
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Remove traiing whitespace (mostly .c and .h files).Erik de Castro Lopo2014-12-051-2/+2
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Fix some minor word duplicationZoë Blade2014-12-031-1/+1
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>