Skip to content

Commit fec556d

Browse files
committed
libFLAC 1.3.1
1 parent 5d7afbd commit fec556d

File tree

1,332 files changed

+24750
-32179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,332 files changed

+24750
-32179
lines changed

.hgignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ CUETools/TestResults/
1818
bin/
1919
flac/src/libFLAC/ia32/*.obj
2020
CUETools/ipch/
21+
flac/src/libFLAC/x64/

CUETools.Codecs.FLAC/CUETools.Codecs.FLAC.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ struct FLAC__Metadata_Chain
5252

5353
extern "C" {
5454
FLAC_API FLAC__bool FLAC__stream_encoder_set_do_md5(FLAC__StreamEncoder *encoder, FLAC__bool value);
55+
FILE *fopen_utf8(const char *filename, const char *mode)
56+
{
57+
return NULL;
58+
}
5559
}
5660

5761
namespace CUETools { namespace Codecs { namespace FLAC {

flac/AUTHORS

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* FLAC - Free Lossless Audio Codec
22
* Copyright (C) 2001-2009 Josh Coalson
3-
* Copyright (C) 2011-2013 Xiph.Org Foundation
3+
* Copyright (C) 2011-2014 Xiph.Org Foundation
44
*
55
* This file is part the FLAC project. FLAC is comprised of several
66
* components distributed under different licenses. The codec libraries
@@ -17,11 +17,27 @@
1717
* distribution.
1818
*/
1919

20+
Current FLAC maintainer: Erik de Castro Lopo <erikd@mega-nerd.com>
2021

21-
FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio
22-
codec developed by Josh Coalson <jcoalson@users.sourceforge.net>.
22+
Original author: Josh Coalson <jcoalson@users.sourceforge.net>
23+
24+
Website : https://www.xiph.org/flac/
25+
26+
FLAC is an Open Source lossless audio codec originally developed by Josh Coalson
27+
between 2001 and 2009. From 2009 to 2012 FLAC was basically unmaintained. In
28+
2012 the Erik de Castro Lopo became the chief maintainer as part of the
29+
Xiph.Org Foundation.
2330

2431
Other major contributors and their contributions:
32+
33+
"lvqcl" <lvqcl@users.sourceforge.net>
34+
* Visual Studio build system.
35+
* Optimisations in the encoder and decoder.
36+
37+
"Janne Hyvärinen" <cse@sci.fi>
38+
* Visual Studio build system.
39+
* Unicode handling on Windows.
40+
2541
"Andrey Astafiev" <andrei@tvcell.ru>
2642
* Russian translation of the HTML documentation
2743

flac/COPYING.Xiph

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright (C) 2000-2009 Josh Coalson
2-
Copyright (C) 2011-2013 Xiph.Org Foundation
2+
Copyright (C) 2011-2014 Xiph.Org Foundation
33

44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions

flac/FLAC-vs2005.sln

Lines changed: 272 additions & 0 deletions
Large diffs are not rendered by default.

flac/FLAC.sln

Lines changed: 249 additions & 254 deletions
Large diffs are not rendered by default.

flac/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FLAC - Free Lossless Audio Codec
22
# Copyright (C) 2001-2009 Josh Coalson
3-
# Copyright (C) 2011-2013 Xiph.Org Foundation
3+
# Copyright (C) 2011-2014 Xiph.Org Foundation
44
#
55
# This file is part the FLAC project. FLAC is comprised of several
66
# components distributed under different licenses. The codec libraries
@@ -39,6 +39,7 @@ EXTRA_DIST = \
3939
COPYING.LGPL \
4040
COPYING.Xiph \
4141
FLAC.sln \
42+
FLAC-vs2005.sln \
4243
Makefile.lite \
4344
autogen.sh \
4445
config.rpath \

0 commit comments

Comments
 (0)