summaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* merge down from merged-API-layer branch: cvs -q up -dP -j ↵Josh Coalson2006-09-1326-8322/+2330
| | | | API_LAYER_MERGING_BASELINE -j API_LAYER_MERGING_BRANCH
* commentsJosh Coalson2006-07-062-16/+13
|
* change unparseable frame handling, from a fatal error and ↵Josh Coalson2006-07-061-34/+39
| | | | FLAC__STREAM_DECODER_UNPARSEABLE_STREAM state, to a soft error FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM
* complete largefile supportJosh Coalson2006-05-241-0/+5
|
* remove window profiling fieldJosh Coalson2006-05-011-4/+0
|
* default window to tukey(0.5) instead of hannJosh Coalson2006-05-011-2/+2
|
* add set_apodization() to oggflac layersJosh Coalson2006-05-012-0/+6
|
* fix comment typosJosh Coalson2006-04-251-1/+1
|
* add 2206 to copyright noticeJosh Coalson2006-04-2541-41/+41
|
* add support for specifying which apodization functions to use to window data ↵Josh Coalson2006-04-257-0/+120
| | | | before lpc analysis
* add FLAC__metadata_get_cuesheet() and ↵Josh Coalson2006-04-102-5/+45
| | | | FLAC__metadata_object_cuesheet_calculate_cddb_id()
* minor commentsJosh Coalson2005-12-021-1/+1
|
* add support for building on os/2 with emxJosh Coalson2005-09-031-1/+8
|
* allow non-strict mode for reading replaygain tags, to fallback to track tags ↵Josh Coalson2005-09-011-1/+1
| | | | if album tags are not available and vice versa
* more external use of "FLAC tags" instead of "Vorbis comments" to avoid confusionJosh Coalson2005-08-311-2/+2
|
* add shorthand option --remove-replay-gain to metaflacJosh Coalson2005-08-311-0/+5
|
* fix constness in some functionsJosh Coalson2005-01-301-2/+2
|
* fixes for compiling with SunProJosh Coalson2005-01-274-12/+12
|
* merge from FLAC 1.1.1 maintenance branch (-j FLAC_RELEASE_1_1_1__2004_10_01 ↵Josh Coalson2005-01-251-1/+1
| | | | -j FLAC_RELEASE_1_1_1_MAINTENANCE_BRANCH (AKA FLAC_RELEASE_1_1_1_MAINTENANCE__MERGE_TO_TRUNK))
* add 2005 to copyright noticesJosh Coalson2005-01-2541-41/+41
|
* remove superfluous semicolon after namespace closuresJosh Coalson2005-01-255-10/+10
|
* libFLAC++: all metadata object operator=() funcs now return *this; add ↵Josh Coalson2005-01-071-26/+67
| | | | Metadata::*::assign() and FLAC::Metadata::get_tags()
* minor commentsJosh Coalson2004-12-301-1/+1
|
* add vorbiscomment validation functions to format.c and test code; validate ↵Josh Coalson2004-12-303-31/+87
| | | | name part of vorbiscomment in metadata and metadata++ interfaces
* revamp plugin_common to use utf-8 instead of wchar_t as the internal comment ↵Josh Coalson2004-12-301-6/+1
| | | | format
* additions to metadata object api: more vorbiscomment functions, ↵Josh Coalson2004-12-303-44/+181
| | | | trailing-null on vorbis comment field values enforced everywhere
* first pass at making an integer-only flavor of the libraries. move ↵Josh Coalson2004-10-201-1/+0
| | | | FLAC__real out of ordinals.h to src/libFLAC/include/private/float.h, add FLAC__double and FLAC__float and use these everywhere instead of double and float, and don't typedef FLAC__real/float/double when building in integer-only mode. still need to provide integer substitutes in several places.
* fix minor comment typosJosh Coalson2004-09-251-1/+1
|
* add links to the license page in doxygen docsJosh Coalson2004-09-141-4/+4
|
* add comment braces for doxygenJosh Coalson2004-09-141-0/+4
|
* add new requirements to ogg mapping: vorbis comment block must come second ↵Josh Coalson2004-09-103-3/+45
| | | | after streaminfo; first packet must have a packet type byte of 0x7f; packet 0 version must be followed by a 2-byte count of the # of header packets
* fix bug copying a null vorbis comment entryJosh Coalson2004-09-081-2/+2
|
* remove check for config.h and assume everyone has inttypes.h (C99); special ↵Josh Coalson2004-09-021-15/+1
| | | | workaround for MSVC still exists
* remove unneeded check for config.hJosh Coalson2004-09-021-4/+0
|
* fix typo in commentsJosh Coalson2004-07-311-1/+1
|
* add FLAC__metadata_get_tags(), FLAC::Metadata::get_tags()Josh Coalson2004-07-302-6/+32
|
* more acceptable hack to the workaround of nested classes not being able to ↵Josh Coalson2004-07-304-24/+24
| | | | see protected members in the parent with some compilers
* add explanation of new read callbackJosh Coalson2004-07-301-1/+2
|
* add callback.h to header listJosh Coalson2004-07-291-0/+1
|
* extend hack of making decoder_ pointer public to gcc < 2.96Josh Coalson2004-07-274-24/+24
|
* update license verbiageJosh Coalson2004-07-231-5/+4
|
* add pragma to disable annoying MSVC warning C4800Josh Coalson2004-07-231-0/+10
|
* remove the __LIBNAME__ definitionsJosh Coalson2004-07-234-12/+0
|
* max the largest metadata type code be 126, reserving 127 to avoid confusion ↵Josh Coalson2004-07-222-1/+5
| | | | with a frame sync code
* add FLAC::Encoder::*::set_metadata(FLAC::Metadata::Prototype **metadata, ↵Josh Coalson2004-07-221-0/+4
| | | | unsigned num_blocks)
* add an accessor method for the underlying ::FLAC__StreamMetadata objectJosh Coalson2004-07-221-0/+12
|
* add method for skipping an audio frame, plus testsJosh Coalson2004-07-164-9/+83
|
* minor comment fixesJosh Coalson2004-07-163-3/+7
|
* add documentation for new callback-based functionsJosh Coalson2004-07-161-4/+110
|
* add libFLAC++ equivalent callback-based chain reading/writing and testsJosh Coalson2004-07-151-0/+6
|