Skip to content

Commit 2753d93

Browse files
authored
Merge branch 'xiph:master' into allocfail-fuzzing-metadata
2 parents fb4b946 + 192bf22 commit 2753d93

File tree

259 files changed

+1298
-1188
lines changed

Some content is hidden

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

259 files changed

+1298
-1188
lines changed

.github/workflows/distcheck.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
distcheck:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/checkout@v4
1515

@@ -42,6 +42,13 @@ jobs:
4242
- name: Check with flac test files
4343
run: ./src/flac/flac -t test-files/subset/*.flac test-files/uncommon/0[5-9]*.flac test-files/uncommon/10*.flac
4444

45+
- name: Upload build
46+
uses: actions/upload-artifact@v4
47+
with:
48+
name: dist-tarball
49+
path: |
50+
./flac-*.tar.xz
51+
4552
- name: Upload ABI compliance reports
4653
uses: actions/upload-artifact@v4
4754
with:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ m4/ltsugar.m4
3838
m4/ltversion.m4
3939
m4/lt~obsolete.m4
4040
man/flac.1
41+
man/flac.html
4142
man/metaflac.1
43+
man/metaflac.html
4244
missing
4345
objs/debug
4446
objs/release

AUTHORS

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 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

CMakeLists.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ if(MINGW AND (WITH_FORTIFY_SOURCE OR WITH_STACK_PROTECTOR))
159159
message(WARNING "Could not find libssp in MinGW, stack protection and/or FORTIFY_SOURCE are unavailable")
160160
else()
161161
link_libraries("ssp.a")
162+
# static libraries don't carry over other static libraries in mingw
163+
# we need to export it in the pkg-config
164+
set(FLAC_STATIC_LIBS "-lssp")
162165
endif()
163166
elseif(NOT MSVC)
164167
set(HAVE_LIBSSP 1)
@@ -297,7 +300,15 @@ if(INSTALL_MANPAGES)
297300
OUTPUT man/metaflac.1
298301
COMMAND pandoc --standalone --to man "${CMAKE_SOURCE_DIR}/man/metaflac.md" > man/metaflac.1
299302
)
300-
add_custom_target(man ALL DEPENDS man/flac.1 man/metaflac.1)
303+
add_custom_command(
304+
OUTPUT man/flac.html
305+
COMMAND pandoc --standalone --embed-resources --to html "${CMAKE_SOURCE_DIR}/man/flac.md" > man/flac.html || pandoc --self-contained --to html "${CMAKE_SOURCE_DIR}/man/flac.md" > man/flac.html
306+
)
307+
add_custom_command(
308+
OUTPUT man/metaflac.html
309+
COMMAND pandoc --standalone --embed-resources --to html "${CMAKE_SOURCE_DIR}/man/metaflac.md" > man/metaflac.html || pandoc --self-contained --to html "${CMAKE_SOURCE_DIR}/man/metaflac.md" > man/metaflac.html
310+
)
311+
add_custom_target(man ALL DEPENDS man/flac.1 man/metaflac.1 man/flac.html man/metaflac.html)
301312
install(FILES "${CMAKE_BINARY_DIR}/man/flac.1" "${CMAKE_BINARY_DIR}/man/metaflac.1" DESTINATION "${CMAKE_INSTALL_MANDIR}/man1")
302313
else()
303314
if(EXISTS "${CMAKE_SOURCE_DIR}/man/flac.1" AND EXISTS "${CMAKE_SOURCE_DIR}/man/metaflac.1")

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-2023 Xiph.Org Foundation
2+
Copyright (C) 2011-2024 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

Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!---
22
/* FLAC - Free Lossless Audio Codec
33
* Copyright (C) 2001-2009 Josh Coalson
4-
* Copyright (C) 2011-2023 Xiph.Org Foundation
4+
* Copyright (C) 2011-2024 Xiph.Org Foundation
55
*
66
* This file is part the FLAC project. FLAC is comprised of several
77
* components distributed under different licenses. The codec libraries

configure.ac

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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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
@@ -532,6 +532,7 @@ AC_SUBST(GIT_COMMIT_VERSION_HASH)
532532
AX_CHECK_COMPILE_FLAG([-fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math],HAVE_ASSOC_MATH=yes)
533533
AM_CONDITIONAL(ASSOC_MATH_AVAILABLE, test "x$HAVE_ASSOC_MATH" = "xyes")
534534

535+
AC_SUBST(FLAC_STATIC_LIBS) dnl unused here
535536

536537
AC_CONFIG_FILES([ \
537538
Makefile \

doc/CMakeLists.txt

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
cmake_minimum_required(VERSION 3.9)
22

3-
find_package(Doxygen)
3+
option(BUILD_DOXYGEN "Enable API documentation building via Doxygen if not already present" ON)
44

5-
if (NOT DOXYGEN_FOUND)
6-
return()
7-
endif()
5+
if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/api")
86

9-
option(BUILD_DOXYGEN "Enable API documentation building via Doxygen" ON)
7+
find_package(Doxygen)
108

11-
if (NOT BUILD_DOXYGEN)
12-
return()
13-
endif()
9+
if (NOT DOXYGEN_FOUND)
10+
return()
11+
endif()
1412

15-
set(top_srcdir "${PROJECT_SOURCE_DIR}")
16-
configure_file(Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
13+
if (NOT BUILD_DOXYGEN)
14+
return()
15+
endif()
1716

17+
set(top_srcdir "${PROJECT_SOURCE_DIR}")
18+
configure_file(Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY)
1819

19-
add_custom_target(FLAC-doxygen ALL
20-
COMMAND ${DOXYGEN_EXECUTABLE} Doxyfile
21-
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
22-
COMMENT "Generating API documentation with Doxygen"
23-
VERBATIM )
2420

25-
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/api/"
26-
DESTINATION "${CMAKE_INSTALL_DOCDIR}/api")
21+
add_custom_target(FLAC-doxygen ALL
22+
COMMAND ${DOXYGEN_EXECUTABLE} Doxyfile
23+
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
24+
COMMENT "Generating API documentation with Doxygen"
25+
VERBATIM )
26+
27+
install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/doxytmp/html/"
28+
DESTINATION "${CMAKE_INSTALL_DOCDIR}/api")
29+
else()
30+
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/api/"
31+
DESTINATION "${CMAKE_INSTALL_DOCDIR}/api")
32+
endif()

doc/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flac - Command-line FLAC encoder/decoder
22
# Copyright (C) 2002-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU General Public License

doc/doxygen.footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<hr size="1"/>
33

44
Copyright (c) 2000-2009 Josh Coalson
5-
Copyright (c) 2011-2023 Xiph.Org Foundation
5+
Copyright (c) 2011-2024 Xiph.Org Foundation
66

77
<!-- Copyright (c) 2000-2009 Josh Coalson -->
8-
<!-- Copyright (c) 2011-2023 Xiph.Org Foundation -->
8+
<!-- Copyright (c) 2011-2024 Xiph.Org Foundation -->
99
<!-- Permission is granted to copy, distribute and/or modify this document -->
1010
<!-- under the terms of the GNU Free Documentation License, Version 1.3 -->
1111
<!-- or any later version published by the Free Software Foundation; -->

doc/images/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/c/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/c/decode/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/c/decode/file/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# example_c_decode_file - Simple FLAC file decoder using libFLAC
22
# Copyright (C) 2007-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU General Public License

examples/c/decode/file/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* example_c_decode_file - Simple FLAC file decoder using libFLAC
22
* Copyright (C) 2007-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License

examples/c/encode/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/c/encode/file/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# example_c_encode_file - Simple FLAC file encoder using libFLAC
22
# Copyright (C) 2007-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU General Public License

examples/c/encode/file/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* example_c_encode_file - Simple FLAC file encoder using libFLAC
22
* Copyright (C) 2007-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License

examples/cpp/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/cpp/decode/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/cpp/decode/file/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# example_cpp_decode_file - Simple FLAC file decoder using libFLAC
22
# Copyright (C) 2007-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU General Public License

examples/cpp/decode/file/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* example_cpp_decode_file - Simple FLAC file decoder using libFLAC
22
* Copyright (C) 2007-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License

examples/cpp/encode/Makefile.am

Lines changed: 1 addition & 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-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 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

examples/cpp/encode/file/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# example_cpp_encode_file - Simple FLAC file encoder using libFLAC
22
# Copyright (C) 2007-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# This program is free software; you can redistribute it and/or
66
# modify it under the terms of the GNU General Public License

examples/cpp/encode/file/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* example_cpp_encode_file - Simple FLAC file encoder using libFLAC
22
* Copyright (C) 2007-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License

include/FLAC++/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# libFLAC++ - Free Lossless Audio Codec library
22
# Copyright (C) 2002-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# Redistribution and use in source and binary forms, with or without
66
# modification, are permitted provided that the following conditions

include/FLAC++/all.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC++ - Free Lossless Audio Codec library
22
* Copyright (C) 2002-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC++/decoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC++ - Free Lossless Audio Codec library
22
* Copyright (C) 2002-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC++/encoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC++ - Free Lossless Audio Codec library
22
* Copyright (C) 2002-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC++/export.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC++ - Free Lossless Audio Codec library
22
* Copyright (C) 2002-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC++/metadata.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC++ - Free Lossless Audio Codec library
22
* Copyright (C) 2002-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# libFLAC - Free Lossless Audio Codec library
22
# Copyright (C) 2000-2009 Josh Coalson
3-
# Copyright (C) 2011-2023 Xiph.Org Foundation
3+
# Copyright (C) 2011-2024 Xiph.Org Foundation
44
#
55
# Redistribution and use in source and binary forms, with or without
66
# modification, are permitted provided that the following conditions

include/FLAC/all.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC - Free Lossless Audio Codec library
22
* Copyright (C) 2000-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC/assert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC - Free Lossless Audio Codec library
22
* Copyright (C) 2001-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC/callback.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC - Free Lossless Audio Codec library
22
* Copyright (C) 2004-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

include/FLAC/export.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* libFLAC - Free Lossless Audio Codec library
22
* Copyright (C) 2000-2009 Josh Coalson
3-
* Copyright (C) 2011-2023 Xiph.Org Foundation
3+
* Copyright (C) 2011-2024 Xiph.Org Foundation
44
*
55
* Redistribution and use in source and binary forms, with or without
66
* modification, are permitted provided that the following conditions

0 commit comments

Comments
 (0)