bump copyright date

master
Rob Sykes 2013-01-08 09:08:03 +00:00
parent 3d3a8523b5
commit 54fdbf1e3b
70 changed files with 70 additions and 70 deletions

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
cmake_minimum_required (VERSION 2.8 FATAL_ERROR) cmake_minimum_required (VERSION 2.8 FATAL_ERROR)

View File

@ -1,4 +1,4 @@
SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
1. Prerequisites: 1. Prerequisites:

View File

@ -1,4 +1,4 @@
SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
This library is free software; you can redistribute it and/or modify it This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by under the terms of the GNU Lesser General Public License as published by

2
README
View File

@ -1,4 +1,4 @@
SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
The SoX Resampler library `libsoxr' performs one-dimensional sample-rate The SoX Resampler library `libsoxr' performs one-dimensional sample-rate
conversion -- it may be used, for example, to resample PCM-encoded audio. conversion -- it may be used, for example, to resample PCM-encoded audio.

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# - Find AVCODEC # - Find AVCODEC

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# - Macro to determine endian type # - Macro to determine endian type

2
configure vendored
View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# Wrapper to allow easier integration with projects using autotools. # Wrapper to allow easier integration with projects using autotools.

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
if (NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") if (NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 1: `One-shot' resample a single block of data in memory. /* Example 1: `One-shot' resample a single block of data in memory.

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 2: resample a raw, single-channel, floating-point data stream from /* Example 2: resample a raw, single-channel, floating-point data stream from

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 3: extends example 2 with multiple channels, multiple datatypes, /* Example 3: extends example 2 with multiple channels, multiple datatypes,

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 4: variant of examples 2 & 3, demonstrating I/O with split channels. /* Example 4: variant of examples 2 & 3, demonstrating I/O with split channels.

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Example 5: Variable-rate resampling (N.B. experimental). A test signal /* Example 5: Variable-rate resampling (N.B. experimental). A test signal

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
if (${BUILD_EXAMPLES}) if (${BUILD_EXAMPLES})

View File

@ -1,4 +1,4 @@
SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
These simple examples show the different ways that an application may These simple examples show the different ways that an application may
interface with libsoxr. Note that real-world applications may also have to interface with libsoxr. Note that real-world applications may also have to

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Common includes etc. for the examples. */ /* Common includes etc. for the examples. */

2
go
View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
build=$1 build=$1

2
go.bat
View File

@ -1,5 +1,5 @@
@echo off @echo off
rem SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net rem SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
rem Licence for this file: LGPL v2.1 See LICENCE for details. rem Licence for this file: LGPL v2.1 See LICENCE for details.
set build=%1 set build=%1

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules) list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# - Find FFTW # - Find FFTW

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# - Find SNDFILE # - Find SNDFILE

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxsrc_lsr_tests_config_included #if !defined soxsrc_lsr_tests_config_included

View File

@ -1,4 +1,4 @@
SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
Cmake is able to configure, build (as either a DLL or a static library), Cmake is able to configure, build (as either a DLL or a static library),
and install libsoxr for general use on MS-Windows as on other OSs. and install libsoxr for general use on MS-Windows as on other OSs.

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* N.B. Pre-configured for typical Win32 systems. Normal procedure is to use /* N.B. Pre-configured for typical Win32 systems. Normal procedure is to use

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxr_config_included #if !defined soxr_config_included

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
add_definitions (${PROJECT_C_FLAGS} -DSOXR_LIB) add_definitions (${PROJECT_C_FLAGS} -DSOXR_LIB)

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if defined SOXR_LIB #if defined SOXR_LIB

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <math.h> #include <math.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <math.h> #include <math.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Concurrent Control with "Readers" and "Writers", P.J. Courtois et al, 1971 */ /* Concurrent Control with "Readers" and "Writers", P.J. Courtois et al, 1971 */

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <limits.h> #include <limits.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxr_data_io_included #if !defined soxr_data_io_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
void lsx_cdft(int, int, double *, int *, double *); void lsx_cdft(int, int, double *, int *, double *);

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "filter.h" #include "filter.h"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "filter.h" #include "filter.h"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "filter.h" #include "filter.h"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
static int * LSX_FFT_BR; static int * LSX_FFT_BR;

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#ifndef fifo_included #ifndef fifo_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "filter.h" #include "filter.h"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxr_filter_included #if !defined soxr_filter_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "half_coefs.h" #include "half_coefs.h"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Down-sample by a factor of 2 using a FIR with odd length (LEN).*/ /* Down-sample by a factor of 2 using a FIR with odd length (LEN).*/

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if defined __GNUC__ #if defined __GNUC__

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxr_internal_included #if !defined soxr_internal_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Wrapper mostly compatible with `libsamplerate'. */ /* Wrapper mostly compatible with `libsamplerate'. */

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#define PFFFT_SIMD_DISABLE #define PFFFT_SIMD_DISABLE

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include "pffft.c" #include "pffft.c"

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Resample using an interpolated poly-phase FIR with length LEN.*/ /* Resample using an interpolated poly-phase FIR with length LEN.*/

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Resample using a non-interpolated poly-phase FIR with length LEN.*/ /* Resample using a non-interpolated poly-phase FIR with length LEN.*/

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <math.h> #include <math.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#define sample_t float #define sample_t float

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#define sample_t float #define sample_t float

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#define sample_t double #define sample_t double

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
void ORDERED_CONVOLVE(int n, void * not_used, DFT_FLOAT * a, const DFT_FLOAT * b) void ORDERED_CONVOLVE(int n, void * not_used, DFT_FLOAT * a, const DFT_FLOAT * b)

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if defined DITHER #if defined DITHER

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined soxr_rint_included #if !defined soxr_rint_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#define PFFT_MACROS_ONLY #define PFFT_MACROS_ONLY

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <assert.h> #include <assert.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#if !defined simd_included #if !defined simd_included

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* *
* This library is free software; you can redistribute it and/or modify it * This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by * under the terms of the GNU Lesser General Public License as published by

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
#include <math.h> #include <math.h>

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* *
* This library is free software; you can redistribute it and/or modify it * This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by * under the terms of the GNU Lesser General Public License as published by

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Experimental variable-rate resampling. */ /* Experimental variable-rate resampling. */

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
add_definitions (${PROJECT_C_FLAGS}) add_definitions (${PROJECT_C_FLAGS})

View File

@ -1,4 +1,4 @@
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
if (${bits} STREQUAL 24) if (${bits} STREQUAL 24)

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
len=8 len=8

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
ir=96000 ir=96000

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
# SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net # SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
# Licence for this file: LGPL v2.1 See LICENCE for details. # Licence for this file: LGPL v2.1 See LICENCE for details.
# Warning: the intermediate signal (piped) is 3.2 Gbytes so may slug the # Warning: the intermediate signal (piped) is 3.2 Gbytes so may slug the

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Utility used to help test the library; not for general consumption. /* Utility used to help test the library; not for general consumption.

View File

@ -1,4 +1,4 @@
/* SoX Resampler Library Copyright (c) 2007-12 robs@users.sourceforge.net /* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net
* Licence for this file: LGPL v2.1 See LICENCE for details. */ * Licence for this file: LGPL v2.1 See LICENCE for details. */
/* Utility used to help test the library; not for general consumption. /* Utility used to help test the library; not for general consumption.