Skip to content

Commit

Permalink
version bump and updated copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
jniemann66 committed Mar 3, 2024
1 parent b69e0c0 commit 5682c1c
Show file tree
Hide file tree
Showing 26 changed files with 39 additions and 24 deletions.
15 changes: 15 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ else()
if(NOT CMAKE_CONFIGURATION_TYPES)
# single-config build (build type decided by CMAKE_BUILD_TYPE )


# for single-config builds, add additional configurations
set (CMAKE_CXX_FLAGS_RELEASEAVX ${CMAKE_CXX_FLAGS_RELEASE_INIT} " -DUSE_AVX -mavx")
set (CMAKE_CXX_FLAGS_RELEASEQUADMATH ${CMAKE_CXX_FLAGS_RELEASE_INIT} " -DUSE_QUADMATH")
Expand Down Expand Up @@ -130,6 +131,7 @@ else()
endif()

else()
message(STATUS "compiler flags: ${CMAKE_CXX_FLAGS_RELEASE_INIT}")
message(STATUS "mingw dll location is here: ${MINGW_PREFIX}/bin")
if(CMAKE_BUILD_TYPE STREQUAL "ReleaseQuadmath")
set(CMAKE_CXX_EXTENSIONS TRUE) # -std=gnu++11 instead of -std=c++11
Expand Down Expand Up @@ -163,7 +165,20 @@ else()

endif()

# include(CheckIPOSupported)
# check_ipo_supported(RESULT iposupported OUTPUT error)

add_executable(ReSampler main.cpp)

# if(iposupported)
# message(STATUS "IPO / LTO enabled")
# set_property(TARGET ReSampler PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
# else()
# message(STATUS "IPO / LTO not supported: <${error}>")
# endif()

target_link_libraries(ReSampler ReSamplerLib)

endif()


2 changes: 1 addition & 1 deletion FIRFilter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion ReSampler.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
4 changes: 2 additions & 2 deletions ReSampler.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down Expand Up @@ -39,7 +39,7 @@

namespace ReSampler {

const std::string strVersion("2.1.0");
const std::string strVersion("2.1.1");
const std::string strUsage("usage: ReSampler -i <inputfile> [-o <outputfile>] -r <samplerate> [-b <bitformat>] [-n [<normalization factor>]]\n");
const std::string strExtraOptions(
"--help\n"
Expand Down
2 changes: 1 addition & 1 deletion alignedmalloc.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion biquad.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion conversioninfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion csv.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion dff.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion ditherer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion dsf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion effect.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion effectchain.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion factorial.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion fadeeffect.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion fraction.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion iqdemodulator.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion mpxdecode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion noiseshape.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion osspecific.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion raiitimer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion srconvert.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 - 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2016 - 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
2 changes: 1 addition & 1 deletion stereoimager.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Judd Niemann - All Rights Reserved.
* Copyright (C) 2024 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
Expand Down
Binary file added tests/inputs/44khz_sweep-3dBFS_32f.pk
Binary file not shown.
Binary file added tests/inputs/48khz_sweep-3dBFS_32f.pk
Binary file not shown.

0 comments on commit 5682c1c

Please sign in to comment.