summaryrefslogtreecommitdiff
path: root/src/utils
Commit message (Collapse)AuthorAgeFilesLines
* Use of BUILD_SHARED_LIBS addedVitaliy Kirsanov2019-05-042-2/+2
|
* Fixed dependencies on win_utf8_ioВиталий Кирсанов2019-05-041-0/+3
|
* FLAC now depends on win_utf8_ioVitaliy Kirsanov2019-05-042-4/+2
| | | | Accidently found this missing dependency
* CMake support addedVitaliy Kirsanov2019-05-043-0/+12
|
* stdint.h fixes for MSVS 2005/2008Erik de Castro Lopo2017-01-192-0/+4
| | | | | | | This adds a new msvc2005_int.h header file which is "force included" as needed by the MSVS project file. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Yet more purging of `unsigned` typeErik de Castro Lopo2017-01-151-7/+7
|
* Fix build with MSVC if UNICODE is enabledErik de Castro Lopo2017-01-041-3/+3
| | | | | Patch-from: "lvqcl.mail" <lvqcl.mail@gmail.com> Closes: https://sourceforge.net/p/flac/bugs/447/
* More Makefile.lite fixesErik de Castro Lopo2016-12-211-0/+1
| | | | Patch-from: Robert Kausch <robert.kausch@freac.org>
* Bulk update copyright datesErik de Castro Lopo2016-12-057-7/+7
|
* libFLAC: Remove win_utf8_io dependencyErik de Castro Lopo2016-02-081-6/+2
| | | | Path-from: lvqcl <lvqcl.mail@gmail.com>
* Fix dependencies for MSVCErik de Castro Lopo2016-01-311-0/+3
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Fix some cppcheck reportsJulien Nabet2016-01-231-1/+1
| | | | | | | | | | | | * src/libFLAC/metadata_iterators.c:3247: (error) va_list `va` was opened but not closed with va_end(). * src/share/grabbag/snprintf.c:66: (error) va_list `va` was opened but not closed with va_end(). * src/utils/flactimer/main.cpp:84: (warning) Either the condition `!fout` is redundant or there is possible null pointer dereference. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com> Closes: https://github.com/xiph/flac/pull/8
* flacdiff: Improve error msg outputErik de Castro Lopo2016-01-101-2/+2
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Update copyright years to include 2014.Erik de Castro Lopo2014-11-257-7/+7
|
* Makefile.ams: Add MSVS project files to EXTRA_DIST.Erik de Castro Lopo2014-07-092-0/+4
| | | | Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Add project files for Visual Studio 2010 and later.Erik de Castro Lopo2014-07-064-0/+380
| | | | | | Also allows building for x86-64 Windows. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* src/ : Remove un-needed MSVC6 workaround.Erik de Castro Lopo2014-07-041-4/+1
| | | | | | | | MSVC6 was not able to cast from a uint64_t to a double and this commit removes some #ifdef hackery designed to work around this problem. Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Update Makefile.lite build system.Evan Ramos2014-06-242-0/+8
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Fix all instances of '#if HAVE_CONFIG_H'.Erik de Castro Lopo2014-03-241-1/+1
| | | | | | Should be '#ifdef HAVE_CONFIG_H'. Closes: https://sourceforge.net/p/flac/bugs/410/
* Vcproj file updates.Erik de Castro Lopo2013-10-042-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | rplaces OutputDirectory="..\..\..\..\objs\debug\bin" with OutputDirectory="$(SolutionDir)objs\$(ConfigurationName)\bin and so on. Rmoves OutputFile="..\..\objs\debug\lib\$(ProjectName).lib when possible. Also, in the current version "Whole program optimization" compiler option is set, but the corresponding linker option isn't. From MSDN: "If you do not explicitly specify /LTCG when you pass /GL or MSIL modules to the linker, the linker eventually detects this and restarts the link by using /LTCG. Explicitly specify /LTCG when you pass /GL and MSIL modules to the linker for the fastest possible build performance." So /LTCG option was added too. Debug build now uses libogg_static.lib from .\objs\debug\lib folder. (the dependency for both release and debug is objs\$(ConfigurationName)\lib\libogg_static.lib) Patch-from: lvqcl <lvqcl.mail@gmail.com>
* Add missing config.h includesCristian Rodríguez2013-06-051-0/+4
| | | | | | All C and C++ files must include config.h Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Language fix: "difference licenses"Ulrich Klauer2013-05-271-1/+1
| | | | Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Set version to 1.3.0 and update coyprights throughout.Erik de Castro Lopo2013-05-267-7/+14
|
* For windows, make UTF-8 mode into a runtime choice.Erik de Castro Lopo2013-04-072-159/+0
| | | | | | | | The smaller patch makes the utf-8 library use ANSI codepage by default. When frontends call the "get_utf8_argv" function it changes Unicode conversion codepage from ANSI to UTF-8. Patch from Janne Hyvärinen <cse@sci.fi>.
* flactimer patches from Janne Hyvärinen <cse@sci.fi>.Erik de Castro Lopo2013-04-022-5/+7
|
* Purge more strcpy/strcat usage.Erik de Castro Lopo2013-04-011-2/+2
|
* Purge FLAC__STRINGS_IN_UTF8 from VC project files.Erik de Castro Lopo2013-04-012-2/+2
|
* Huge Windows utf8 I/O patch.Erik de Castro Lopo2013-03-293-2/+168
| | | | Patch from Janne Hyvärinen <cse@sci.fi>.
* More Microsoft Visual Studio project file updates.Erik de Castro Lopo2013-03-181-2/+2
| | | | Patch from Janne Hyvärinen <cse@sci.fi>.
* Fix a couple of Windows 2Gig file size issues.Erik de Castro Lopo2013-03-141-15/+10
| | | | Patch submitted by Janne Hyvärinen <cse@sci.fi>.
* Purge old un-maintained MSVC 6 project files.Erik de Castro Lopo2013-03-104-202/+0
|
* Fix VC project files to use /objs/ directory instead of /obj/ directory.Erik de Castro Lopo2013-01-024-12/+12
|
* Fix all Makefile.lite to use /objs/ directory instead of /obj/ directory.Erik de Castro Lopo2013-01-022-2/+2
|
* Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build systemHendricks2662013-01-022-2/+44
| | | | | | | | | | | | | | | | | | | | | This is a patch to allow building of the project using MSYS, MinGW, and MinGW-w64 with the following invocation: make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils examples This patch addresses eight points: 1. `uname -p` in MSYS returns "unknown" so we must use `gcc -dumpmachine` to gain information about the target, 32-bit or 64-bit. 2. MinGW-w64 does not ship with a working iconv.h, so we must disable it under this specific compiler. 3. The code requires <inttypes.h> in a handful of C files, but config.mk did not contain -DHAVE_INTTYPES_H, which under the full build process (I assume) is added by autoconf. 4. The compiler complained when lround() in lpc.c was static, so it is no longer static. 5. Additional scattered linking directives (and reordering) (particularly FLAC, grabbag, and replaygain_analysis) were necessary to build some of the components. 6. The Makefile.lite build system benefited from some cleanup, particularly by rigorously defining all entries, factoring redundancy, and establishing dependencies. (Some typos were fixed too.) 7. Shared objects on Windows use .dll, not .so. (Added *.dll, *.dylib, and *.exe to .gitignore.) 8. To allow more freedom using Makefile.lite without configure, I added the variables USE_OGG and USE_ICONV which can toggle these two components in the build process. ex: make -f Makefile.lite examples USE_OGG=0 USE_ICONV=0 These improvements make use of some use-time Makefile variable expansion. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
* Update FSF address.Miroslav Lichvar2012-12-065-15/+15
|
* Port David Robinson's equalloudfilt.m MATLAB script to scilab so that the ↵Earl Chew2012-02-261-0/+115
| | | | | | ReplayGain filter settings can be generated using an OpenSource tool. Signed-off-by: Earl Chew <earl_chew@yahoo.com>
* Use the correct project filenames for flactimer.Ralph Giles2012-02-021-2/+2
| | | | | | | 'make dist' was failing because src/utils/flactime/Makefile.am listed 'flactime' instead of 'flactimer' as the base name of the MSVC project files. Since the files uses the 'flactimer' name internally, I updated the Makefile rather than the filenames.
* add 2009 copyrightJosh Coalson2009-01-076-6/+6
|
* typoJosh Coalson2009-01-031-1/+1
|
* add flacdiff and flactimer utils to source distribution (SF#1911149: ↵Josh Coalson2009-01-033-0/+61
| | | | https://sourceforge.net/tracker2/?func=detail&aid=1911149&group_id=13478&atid=113478)
* update Makefile.lite system to work on x86_64 linuxJosh Coalson2008-09-141-1/+1
|
* remove VCWebDeploymentTool item for better proj compatibility with vs9Josh Coalson2008-06-032-12/+0
|
* update copyright for 2008Josh Coalson2008-02-283-3/+3
|
* minor commentsJosh Coalson2007-09-131-3/+3
|
* msvc fixesJosh Coalson2007-09-121-6/+11
|
* fix guidJosh Coalson2007-08-281-3/+3
|
* initial importJosh Coalson2007-08-283-0/+471
|
* improvements to compile/link optionsJosh Coalson2007-07-161-3/+9
|
* minor syntaxJosh Coalson2007-07-071-1/+1
|
* msvc fixesJosh Coalson2007-05-111-3/+9
|