diff --git a/Octave/format.h b/Octave/format.h index 18843cee..ce769b2c 100644 --- a/Octave/format.h +++ b/Octave/format.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/Octave/octave_test.m b/Octave/octave_test.m index 3740e7b8..25a922e8 100644 --- a/Octave/octave_test.m +++ b/Octave/octave_test.m @@ -1,4 +1,4 @@ -# Copyright (C) 2007 Erik de Castro Lopo +# Copyright (C) 2007-2011 Erik de Castro Lopo # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by diff --git a/Octave/sndfile.cc b/Octave/sndfile.cc index e75e3279..6e9cd44c 100644 --- a/Octave/sndfile.cc +++ b/Octave/sndfile.cc @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by @@ -367,7 +367,7 @@ string_of_minor_format (int format) case SF_FORMAT_G723_40 : return "g723_40" ; default : break ; } ; - + return "unknown" ; } /* string_of_minor_format */ diff --git a/Octave/sndfile_load.m b/Octave/sndfile_load.m index d13c21a2..c66198fa 100644 --- a/Octave/sndfile_load.m +++ b/Octave/sndfile_load.m @@ -1,4 +1,4 @@ -## Copyright (C) 2002 Erik de Castro Lopo +## Copyright (C) 2002-2011 Erik de Castro Lopo ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -33,7 +33,7 @@ samplingrate = -1 ; wavedata = -1 ; -eval (sprintf ('load -f %s', filename)) ; +eval (sprintf ('load -f %s', filename)) ; if (samplerate > 0), fs = samplerate ; @@ -42,7 +42,7 @@ elseif (samplingrate > 0), else error ("Not able to find sample rate.") ; endif - + if (max (size (wavedata)) > 1), data = wavedata ; else diff --git a/Octave/sndfile_play.m b/Octave/sndfile_play.m index c0631d94..e8a34a74 100644 --- a/Octave/sndfile_play.m +++ b/Octave/sndfile_play.m @@ -1,4 +1,4 @@ -## Copyright (C) 2002 Erik de Castro Lopo +## Copyright (C) 2002-2011 Erik de Castro Lopo ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/Octave/sndfile_save.m b/Octave/sndfile_save.m index cddbc648..5b7e7c7d 100644 --- a/Octave/sndfile_save.m +++ b/Octave/sndfile_save.m @@ -1,4 +1,4 @@ -## Copyright (C) 2002 Erik de Castro Lopo +## Copyright (C) 2002-2011 Erik de Castro Lopo ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by diff --git a/configure.ac b/configure.ac index a590be26..34a5fae4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# Copyright (C) 1999-2010 Erik de Castro Lopo (erikd AT mega-nerd DOT com). +# Copyright (C) 1999-2011 Erik de Castro Lopo (erikd AT mega-nerd DOT com). dnl Require autoconf version AC_PREREQ(2.57) diff --git a/examples/generate.c b/examples/generate.c index 3ad1577a..8a923329 100644 --- a/examples/generate.c +++ b/examples/generate.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/examples/list_formats.c b/examples/list_formats.c index c529247d..6d462f07 100644 --- a/examples/list_formats.c +++ b/examples/list_formats.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/examples/make_sine.c b/examples/make_sine.c index 3e760333..ec8a8302 100644 --- a/examples/make_sine.c +++ b/examples/make_sine.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/examples/sfprocess.c b/examples/sfprocess.c index 42c98bde..5c7db288 100644 --- a/examples/sfprocess.c +++ b/examples/sfprocess.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/examples/sndfile-to-text.c b/examples/sndfile-to-text.c index d7d6492d..7a7a2191 100644 --- a/examples/sndfile-to-text.c +++ b/examples/sndfile-to-text.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2009 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/examples/sndfilehandle.cc b/examples/sndfilehandle.cc index 693a4422..c9a1931a 100644 --- a/examples/sndfilehandle.cc +++ b/examples/sndfilehandle.cc @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/programs/common.c b/programs/common.c index 75ae6020..89e512b4 100644 --- a/programs/common.c +++ b/programs/common.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** Copyright (C) 2008 George Blood Audio ** ** All rights reserved. diff --git a/programs/common.h b/programs/common.h index d232b836..69cb7a0c 100644 --- a/programs/common.h +++ b/programs/common.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-cmp.c b/programs/sndfile-cmp.c index bd12e011..a612bd0c 100644 --- a/programs/sndfile-cmp.c +++ b/programs/sndfile-cmp.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2008-2011 Erik de Castro Lopo ** Copyright (C) 2008 Conrad Parker -** Copyright (C) 2008-2010 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-concat.c b/programs/sndfile-concat.c index 1a1d8f0d..ddfa7cbc 100644 --- a/programs/sndfile-concat.c +++ b/programs/sndfile-concat.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-convert.c b/programs/sndfile-convert.c index d3fe5426..2f080a7a 100644 --- a/programs/sndfile-convert.c +++ b/programs/sndfile-convert.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-deinterleave.c b/programs/sndfile-deinterleave.c index 2ae07f63..df80b042 100644 --- a/programs/sndfile-deinterleave.c +++ b/programs/sndfile-deinterleave.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2009-2010 Erik de Castro Lopo +** Copyright (C) 2009-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-info.c b/programs/sndfile-info.c index 58a057e9..fab84b15 100644 --- a/programs/sndfile-info.c +++ b/programs/sndfile-info.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-interleave.c b/programs/sndfile-interleave.c index 56c7326a..0e2cee0e 100644 --- a/programs/sndfile-interleave.c +++ b/programs/sndfile-interleave.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2009-2010 Erik de Castro Lopo +** Copyright (C) 2009-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-metadata-get.c b/programs/sndfile-metadata-get.c index 34fadec4..812e1bad 100644 --- a/programs/sndfile-metadata-get.c +++ b/programs/sndfile-metadata-get.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2008-2011 Erik de Castro Lopo ** Copyright (C) 2008-2010 George Blood Audio -** Written by Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-metadata-set.c b/programs/sndfile-metadata-set.c index f67bba2f..09d62ced 100644 --- a/programs/sndfile-metadata-set.c +++ b/programs/sndfile-metadata-set.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2008-2011 Erik de Castro Lopo ** Copyright (C) 2008-2010 George Blood Audio -** Written by Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/sndfile-salvage.c b/programs/sndfile-salvage.c index 3c555930..a69a5430 100644 --- a/programs/sndfile-salvage.c +++ b/programs/sndfile-salvage.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2010 Erik de Castro Lopo +** Copyright (C) 2010-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/programs/test-sndfile-metadata-set.py b/programs/test-sndfile-metadata-set.py index a83c814d..a21a36b3 100755 --- a/programs/test-sndfile-metadata-set.py +++ b/programs/test-sndfile-metadata-set.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2008 Erik de Castro Lopo +# Copyright (C) 2008-2011 Erik de Castro Lopo # # All rights reserved. # diff --git a/regtest/checksum.c b/regtest/checksum.c index 863fbed7..7f433a41 100644 --- a/regtest/checksum.c +++ b/regtest/checksum.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/regtest/database.c b/regtest/database.c index f439f685..c8b71802 100644 --- a/regtest/database.c +++ b/regtest/database.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/regtest/regtest.h b/regtest/regtest.h index 589f386d..567d97be 100644 --- a/regtest/regtest.h +++ b/regtest/regtest.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/regtest/sndfile-regtest.c b/regtest/sndfile-regtest.c index f7db490b..a28caa2d 100644 --- a/regtest/sndfile-regtest.c +++ b/regtest/sndfile-regtest.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/src/G72x/g72x.h b/src/G72x/g72x.h index 785a5d09..d7631e6d 100644 --- a/src/G72x/g72x.h +++ b/src/G72x/g72x.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/G72x/g72x_test.c b/src/G72x/g72x_test.c index 3959efe6..79cabce1 100644 --- a/src/G72x/g72x_test.c +++ b/src/G72x/g72x_test.c @@ -1,21 +1,21 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo -** +** Copyright (C) 1999-2011 Erik de Castro Lopo +** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. -** +** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. -** +** ** You should have received a copy of the GNU General Public License -** along with this program; if not, write to the Free Software +** along with this program; if not, write to the Free Software ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - + #include #include #include @@ -77,20 +77,20 @@ main (int argc, char *argv []) return 0 ; } /* main */ -static void +static void g721_test (void) { return ; } /* g721_test */ -static void +static void g723_test (double margin) { static double orig_buffer [BUFFER_SIZE] ; static short orig [BUFFER_SIZE] ; static short data [BUFFER_SIZE] ; G72x_STATE encoder_state, decoder_state ; - + long k ; int code, position, max_err ; @@ -104,10 +104,10 @@ g723_test (double margin) memset (data, 0, BUFFER_SIZE * sizeof (short)) ; memset (orig, 0, BUFFER_SIZE * sizeof (short)) ; - + printf (" g723_test : ") ; fflush (stdout) ; - + gen_signal_double (orig_buffer, 32000.0, BUFFER_SIZE) ; for (k = 0 ; k < BUFFER_SIZE ; k++) orig [k] = (short) orig_buffer [k] ; @@ -144,13 +144,13 @@ g723_test (double margin) #define SIGNAL_MAXVAL 30000.0 #define DECAY_COUNT 1000 -static void +static void gen_signal_double (double *gendata, double scale, int gendatalen) { int k, ramplen ; double amp = 0.0 ; - + ramplen = DECAY_COUNT ; - + for (k = 0 ; k < gendatalen ; k++) { if (k <= ramplen) amp = scale * k / ((double) ramplen) ; @@ -160,11 +160,11 @@ gen_signal_double (double *gendata, double scale, int gendatalen) gendata [k] = amp * (0.4 * sin (33.3 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE)) + 0.3 * cos (201.1 * 2.0 * M_PI * ((double) (k+1)) / ((double) SAMPLE_RATE))) ; } ; - + return ; } /* gen_signal_double */ -static int +static int error_function (double data, double orig, double margin) { double error ; @@ -174,7 +174,7 @@ error_function (double data, double orig, double margin) error = fabs (data - orig) / 3000.0 ; else error = fabs (data - orig) / fabs (orig) ; - + if (error > margin) { printf ("\n\n*******************\nError : %f\n", error) ; return 1 ; @@ -182,21 +182,21 @@ error_function (double data, double orig, double margin) return 0 ; } /* error_function */ -static int +static int oct_save_short (short *a, short *b, int len) { FILE *file ; int k ; if (! (file = fopen ("error.dat", "w"))) return 1 ; - + fprintf (file, "# Not created by Octave\n") ; - + fprintf (file, "# name: a\n") ; fprintf (file, "# type: matrix\n") ; fprintf (file, "# rows: %d\n", len) ; fprintf (file, "# columns: 1\n") ; - + for (k = 0 ; k < len ; k++) fprintf (file, "% d\n", a [k]) ; @@ -204,7 +204,7 @@ oct_save_short (short *a, short *b, int len) fprintf (file, "# type: matrix\n") ; fprintf (file, "# rows: %d\n", len) ; fprintf (file, "# columns: 1\n") ; - + for (k = 0 ; k < len ; k++) fprintf (file, "% d\n", b [k]) ; diff --git a/src/Makefile.am b/src/Makefile.am index 6c6e77f9..ad325da7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -67,7 +67,7 @@ genfiles : test_endswap.c $(SYMBOL_FILES) # need access to the internals of the SF_PRIVATE struct. check: $(noinst_PROGRAMS) - @if [ -x /usr/bin/python2.6 ]; then $(srcdir)/binheader_writef_check.py $(srcdir)/*.c ; fi + @if [ -x /usr/bin/python ]; then $(srcdir)/binheader_writef_check.py $(srcdir)/*.c ; fi ./test_main$(EXEEXT) #====================================================================== diff --git a/src/aiff.c b/src/aiff.c index 9aff55b5..0113ba65 100644 --- a/src/aiff.c +++ b/src/aiff.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** Copyright (C) 2005 David Viens ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/alaw.c b/src/alaw.c index d90431fc..6d06b4bb 100644 --- a/src/alaw.c +++ b/src/alaw.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/au.c b/src/au.c index b56ca915..0ac3bf3c 100644 --- a/src/au.c +++ b/src/au.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/audio_detect.c b/src/audio_detect.c index 9e73bc5d..775077e7 100644 --- a/src/audio_detect.c +++ b/src/audio_detect.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/avr.c b/src/avr.c index 78502315..dd09b46c 100644 --- a/src/avr.c +++ b/src/avr.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2004-2009 Erik de Castro Lopo +** Copyright (C) 2004-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/binheader_writef_check.py b/src/binheader_writef_check.py index 75237349..adfc5f96 100755 --- a/src/binheader_writef_check.py +++ b/src/binheader_writef_check.py @@ -1,6 +1,6 @@ -#!/usr/bin/python2.6 +#!/usr/bin/python -# Copyright (C) 2006-2010 Erik de Castro Lopo +# Copyright (C) 2006-2011 Erik de Castro Lopo # # All rights reserved. # diff --git a/src/broadcast.c b/src/broadcast.c index af2e50e4..27c6743f 100644 --- a/src/broadcast.c +++ b/src/broadcast.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2006-2011 Erik de Castro Lopo ** Copyright (C) 2006 Paul Davis -** Copyright (C) 2006-2010 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/caf.c b/src/caf.c index a88f1c14..f73c5855 100644 --- a/src/caf.c +++ b/src/caf.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/chanmap.c b/src/chanmap.c index 944742eb..9a9f7f0f 100644 --- a/src/chanmap.c +++ b/src/chanmap.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2009 Erik de Castro Lopo +** Copyright (C) 2009-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/chanmap.h b/src/chanmap.h index 9eb8d4fa..8af409db 100644 --- a/src/chanmap.h +++ b/src/chanmap.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2009 Erik de Castro Lopo +** Copyright (C) 2009-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/chunk.c b/src/chunk.c index 98ff05ae..dc17aaea 100644 --- a/src/chunk.c +++ b/src/chunk.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2009 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/command.c b/src/command.c index 3cc68157..aae2a271 100644 --- a/src/command.c +++ b/src/command.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/common.c b/src/common.c index 77580534..619240f9 100644 --- a/src/common.c +++ b/src/common.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/common.h b/src/common.h index 0f6513f7..fc0f28f3 100644 --- a/src/common.h +++ b/src/common.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/create_symbols_file.py b/src/create_symbols_file.py index 92448f12..f2cab122 100755 --- a/src/create_symbols_file.py +++ b/src/create_symbols_file.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2009 Erik de Castro Lopo +# Copyright (C) 2003-2011 Erik de Castro Lopo # # All rights reserved. # diff --git a/src/dither.c b/src/dither.c index d6284ac7..d149bc1b 100644 --- a/src/dither.c +++ b/src/dither.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/double64.c b/src/double64.c index b6179277..425088bb 100644 --- a/src/double64.c +++ b/src/double64.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/dwd.c b/src/dwd.c index 877487de..e87ec014 100644 --- a/src/dwd.c +++ b/src/dwd.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/dwvw.c b/src/dwvw.c index 3347c813..562f0151 100644 --- a/src/dwvw.c +++ b/src/dwvw.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/file_io.c b/src/file_io.c index da6bb70b..44f1b5a3 100644 --- a/src/file_io.c +++ b/src/file_io.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2010 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** Copyright (C) 2003 Ross Bencina ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/flac.c b/src/flac.c index 8d7662d5..7949b0a9 100644 --- a/src/flac.c +++ b/src/flac.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2004-2010 Erik de Castro Lopo +** Copyright (C) 2004-2011 Erik de Castro Lopo ** Copyright (C) 2004 Tobias Gehrig ** ** This program is free software ; you can redistribute it and/or modify diff --git a/src/float32.c b/src/float32.c index 1b684204..4a87cefc 100644 --- a/src/float32.c +++ b/src/float32.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/g72x.c b/src/g72x.c index 8fe52d2d..99729d34 100644 --- a/src/g72x.c +++ b/src/g72x.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/gsm610.c b/src/gsm610.c index 8ec4291f..b16594ec 100644 --- a/src/gsm610.c +++ b/src/gsm610.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/htk.c b/src/htk.c index 19023b42..25390f1d 100644 --- a/src/htk.c +++ b/src/htk.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/id3.c b/src/id3.c index 69e13edf..a1a189e1 100644 --- a/src/id3.c +++ b/src/id3.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2010 Erik de Castro Lopo +** Copyright (C) 2010-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/ima_adpcm.c b/src/ima_adpcm.c index d2b2601a..fdebbe90 100644 --- a/src/ima_adpcm.c +++ b/src/ima_adpcm.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/ima_oki_adpcm.c b/src/ima_oki_adpcm.c index 5a598ae3..399d2e4a 100644 --- a/src/ima_oki_adpcm.c +++ b/src/ima_oki_adpcm.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2007-2011 Erik de Castro Lopo ** Copyright (c) 2007 -** Copyright (C) 2007-2009 Erik de Castro Lopo ** ** 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 @@ -139,7 +139,7 @@ ima_oki_adpcm_encode_block (IMA_OKI_ADPCM * state) /* ** The codec expects an even number of input samples. - ** + ** ** Samples should always be passed in even length blocks. If the last block to ** be encoded is odd length, extend that block by one zero valued sample. */ diff --git a/src/ima_oki_adpcm.h b/src/ima_oki_adpcm.h index 52d34864..86241e7a 100644 --- a/src/ima_oki_adpcm.h +++ b/src/ima_oki_adpcm.h @@ -1,6 +1,6 @@ /* +** Copyright (C) 2007-2011 Erik de Castro Lopo ** Copyright (c) 2007 -** Copyright (C) 2007-2009 Erik de Castro Lopo ** ** 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 diff --git a/src/interleave.c b/src/interleave.c index 0f8be2d1..ca9d7b40 100644 --- a/src/interleave.c +++ b/src/interleave.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/ircam.c b/src/ircam.c index ea20c88e..4aa1173a 100644 --- a/src/ircam.c +++ b/src/ircam.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/macbinary3.c b/src/macbinary3.c index d9b1ad43..184cc18f 100644 --- a/src/macbinary3.c +++ b/src/macbinary3.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/macos.c b/src/macos.c index cbedb890..5f6c5319 100644 --- a/src/macos.c +++ b/src/macos.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/mat4.c b/src/mat4.c index 474b717c..3471e34c 100644 --- a/src/mat4.c +++ b/src/mat4.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/mat5.c b/src/mat5.c index 13137db2..338477e0 100644 --- a/src/mat5.c +++ b/src/mat5.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/mpc2k.c b/src/mpc2k.c index 75bb3c6b..b741aacb 100644 --- a/src/mpc2k.c +++ b/src/mpc2k.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2009 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by @@ -38,7 +38,7 @@ ** 1 byte: loopMode (0 no loop, 1 forward looping) ** 1 byte: number of beat in loop ** 1 uint16: sampleRate -** +** ** DATA ** Data are always non compressed 16 bits interleaved */ diff --git a/src/ms_adpcm.c b/src/ms_adpcm.c index 32512da1..d62a2ed5 100644 --- a/src/ms_adpcm.c +++ b/src/ms_adpcm.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/new.c b/src/new.c index 6456481a..23f3087f 100644 --- a/src/new.c +++ b/src/new.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/nist.c b/src/nist.c index 8808ec8c..cd3afac8 100644 --- a/src/nist.c +++ b/src/nist.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/ogg.c b/src/ogg.c index ad06b303..20e02287 100644 --- a/src/ogg.c +++ b/src/ogg.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2010 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** Copyright (C) 2007 John ffitch ** ** This program is free software ; you can redistribute it and/or modify diff --git a/src/paf.c b/src/paf.c index c72ab29e..6595f29b 100644 --- a/src/paf.c +++ b/src/paf.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/pcm.c b/src/pcm.c index e1fa7b17..ec450bcd 100644 --- a/src/pcm.c +++ b/src/pcm.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/pvf.c b/src/pvf.c index 9adc0647..4ea24b6b 100644 --- a/src/pvf.c +++ b/src/pvf.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/raw.c b/src/raw.c index 99e19d0e..e5dc49e2 100644 --- a/src/raw.c +++ b/src/raw.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/rf64.c b/src/rf64.c index 91fcd736..d40bfab8 100644 --- a/src/rf64.c +++ b/src/rf64.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2010 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** Copyright (C) 2009 Uli Franke ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/rx2.c b/src/rx2.c index 521e09a7..0aa1bcf2 100644 --- a/src/rx2.c +++ b/src/rx2.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sd2.c b/src/sd2.c index 5ab08da1..9ef10a91 100644 --- a/src/sd2.c +++ b/src/sd2.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** Copyright (C) 2004 Paavo Jumppanen ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/sds.c b/src/sds.c index fbea7810..17c7036b 100644 --- a/src/sds.c +++ b/src/sds.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2010 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sf_unistd.h b/src/sf_unistd.h index bac14d4b..9fca68ef 100644 --- a/src/sf_unistd.h +++ b/src/sf_unistd.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sfconfig.h b/src/sfconfig.h index 4fcd58fe..1ed1f273 100644 --- a/src/sfconfig.h +++ b/src/sfconfig.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sfendian.h b/src/sfendian.h index 2c8a908c..386361c6 100644 --- a/src/sfendian.h +++ b/src/sfendian.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sndfile.c b/src/sndfile.c index 53cbc89a..bdb93c0e 100644 --- a/src/sndfile.c +++ b/src/sndfile.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sndfile.h.in b/src/sndfile.h.in index 3155a43d..3777e5f5 100644 --- a/src/sndfile.h.in +++ b/src/sndfile.h.in @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/sndfile.hh b/src/sndfile.hh index 2ed4dea2..d7e6fe2d 100644 --- a/src/sndfile.hh +++ b/src/sndfile.hh @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2010 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** All rights reserved. ** diff --git a/src/strings.c b/src/strings.c index 26ff0dc7..73f12f40 100644 --- a/src/strings.c +++ b/src/strings.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2010 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/svx.c b/src/svx.c index 30e02189..b611f760 100644 --- a/src/svx.c +++ b/src/svx.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_audio_detect.c b/src/test_audio_detect.c index 9c6db45b..9706249e 100644 --- a/src/test_audio_detect.c +++ b/src/test_audio_detect.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007-2010 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_broadcast_var.c b/src/test_broadcast_var.c index 2bfb2830..1f0240fd 100644 --- a/src/test_broadcast_var.c +++ b/src/test_broadcast_var.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2010 Erik de Castro Lopo +** Copyright (C) 2010-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_conversions.c b/src/test_conversions.c index cb03975b..34600b0a 100644 --- a/src/test_conversions.c +++ b/src/test_conversions.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2006-2009 Erik de Castro Lopo +** Copyright (C) 2006-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_endswap.tpl b/src/test_endswap.tpl index 70ea721b..ad7cee17 100644 --- a/src/test_endswap.tpl +++ b/src/test_endswap.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 2002-2005 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_file_io.c b/src/test_file_io.c index c32621b0..08fccebd 100644 --- a/src/test_file_io.c +++ b/src/test_file_io.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_float.c b/src/test_float.c index 5d47747b..9d0b09d8 100644 --- a/src/test_float.c +++ b/src/test_float.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2006-2009 Erik de Castro Lopo +** Copyright (C) 2006-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_ima_oki_adpcm.c b/src/test_ima_oki_adpcm.c index 440b962b..6c937d11 100644 --- a/src/test_ima_oki_adpcm.c +++ b/src/test_ima_oki_adpcm.c @@ -1,6 +1,6 @@ /* +** Copyright (C) 2007-2011 Erik de Castro Lopo ** Copyright (c) 2007 -** Copyright (C) 2007-2009 Erik de Castro Lopo ** ** 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 diff --git a/src/test_log_printf.c b/src/test_log_printf.c index 3b3f485c..de9d45bc 100644 --- a/src/test_log_printf.c +++ b/src/test_log_printf.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_main.c b/src/test_main.c index 5dac2f50..66925144 100644 --- a/src/test_main.c +++ b/src/test_main.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2010 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_main.h b/src/test_main.h index bbd6de8c..53b73116 100644 --- a/src/test_main.h +++ b/src/test_main.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2010 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/test_strncpy_crlf.c b/src/test_strncpy_crlf.c index 5ae8702d..3157ef84 100644 --- a/src/test_strncpy_crlf.c +++ b/src/test_strncpy_crlf.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2010 Erik de Castro Lopo +** Copyright (C) 2010-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/txw.c b/src/txw.c index 8174bf93..fce10959 100644 --- a/src/txw.c +++ b/src/txw.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/ulaw.c b/src/ulaw.c index 1aad5154..c6ff7b84 100644 --- a/src/ulaw.c +++ b/src/ulaw.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/voc.c b/src/voc.c index c3fc2d77..d13b0331 100644 --- a/src/voc.c +++ b/src/voc.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/vox_adpcm.c b/src/vox_adpcm.c index e484cb1a..579a5d07 100644 --- a/src/vox_adpcm.c +++ b/src/vox_adpcm.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/w64.c b/src/w64.c index 96483cf3..d5619065 100644 --- a/src/w64.c +++ b/src/w64.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/wav.c b/src/wav.c index ea954516..270084c2 100644 --- a/src/wav.c +++ b/src/wav.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** Copyright (C) 2004-2005 David Viens ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/wav_w64.c b/src/wav_w64.c index e47c7169..43891295 100644 --- a/src/wav_w64.c +++ b/src/wav_w64.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** Copyright (C) 2004-2005 David Viens ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/wav_w64.h b/src/wav_w64.h index b3c395a4..9b2914ab 100644 --- a/src/wav_w64.h +++ b/src/wav_w64.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/windows.c b/src/windows.c index 843999e0..387afdda 100644 --- a/src/windows.c +++ b/src/windows.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2009 Erik de Castro Lopo +** Copyright (C) 2009-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/src/wve.c b/src/wve.c index f48a89ab..c13e7ab9 100644 --- a/src/wve.c +++ b/src/wve.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** Copyright (C) 2007 Reuben Thomas ** ** This program is free software; you can redistribute it and/or modify diff --git a/src/xi.c b/src/xi.c index 8e15e99f..ee60a4bd 100644 --- a/src/xi.c +++ b/src/xi.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU Lesser General Public License as published by diff --git a/tests/aiff_rw_test.c b/tests/aiff_rw_test.c index 92f82224..273818d6 100644 --- a/tests/aiff_rw_test.c +++ b/tests/aiff_rw_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/alaw_test.c b/tests/alaw_test.c index 14ace9da..09174821 100644 --- a/tests/alaw_test.c +++ b/tests/alaw_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/benchmark.tpl b/tests/benchmark.tpl index e1a6f3cc..2a3c7905 100644 --- a/tests/benchmark.tpl +++ b/tests/benchmark.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/checksum_test.c b/tests/checksum_test.c index 52007e3a..544da934 100644 --- a/tests/checksum_test.c +++ b/tests/checksum_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2009 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/command_test.c b/tests/command_test.c index 1a10f81a..8fe4d9c7 100644 --- a/tests/command_test.c +++ b/tests/command_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2010 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/cpp_test.cc b/tests/cpp_test.cc index cb0e37b6..19f0d880 100644 --- a/tests/cpp_test.cc +++ b/tests/cpp_test.cc @@ -1,5 +1,5 @@ /* -** Copyright (C) 2006-2010 Erik de Castro Lopo +** Copyright (C) 2006-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/dft_cmp.c b/tests/dft_cmp.c index ddec0ccd..c902769f 100644 --- a/tests/dft_cmp.c +++ b/tests/dft_cmp.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/dft_cmp.h b/tests/dft_cmp.h index 349e0a06..3cbdd118 100644 --- a/tests/dft_cmp.h +++ b/tests/dft_cmp.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/dither_test.c b/tests/dither_test.c index d9c4fb82..6c570ffb 100644 --- a/tests/dither_test.c +++ b/tests/dither_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2009 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/dwvw_test.c b/tests/dwvw_test.c index ab3804b7..649fe2c3 100644 --- a/tests/dwvw_test.c +++ b/tests/dwvw_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/error_test.c b/tests/error_test.c index cb531ee7..9df14b8c 100644 --- a/tests/error_test.c +++ b/tests/error_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/external_libs_test.c b/tests/external_libs_test.c index 8d20cbd4..86b02907 100644 --- a/tests/external_libs_test.c +++ b/tests/external_libs_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2008-2009 Erik de Castro Lopo +** Copyright (C) 2008-2011 Erik de Castro Lopo ** ** This program is free software ; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/fix_this.c b/tests/fix_this.c index 574f7168..8eabad27 100644 --- a/tests/fix_this.c +++ b/tests/fix_this.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/floating_point_test.tpl b/tests/floating_point_test.tpl index 443ec0a3..2bb6b867 100644 --- a/tests/floating_point_test.tpl +++ b/tests/floating_point_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/generate.c b/tests/generate.c index e1454ed5..d759385c 100644 --- a/tests/generate.c +++ b/tests/generate.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007-2009 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/generate.h b/tests/generate.h index 6de6160f..709ea611 100644 --- a/tests/generate.h +++ b/tests/generate.h @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007-2009 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/header_test.tpl b/tests/header_test.tpl index 488e128a..9caebdaa 100644 --- a/tests/header_test.tpl +++ b/tests/header_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software ; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/headerless_test.c b/tests/headerless_test.c index 4300a1f1..62035890 100644 --- a/tests/headerless_test.c +++ b/tests/headerless_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/largefile_test.c b/tests/largefile_test.c index 73c11ef8..328a589a 100644 --- a/tests/largefile_test.c +++ b/tests/largefile_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2006-2009 Erik de Castro Lopo +** Copyright (C) 2006-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/locale_test.c b/tests/locale_test.c index 7d2f20e3..b67d549c 100644 --- a/tests/locale_test.c +++ b/tests/locale_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2005-2009 Erik de Castro Lopo +** Copyright (C) 2005-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/lossy_comp_test.c b/tests/lossy_comp_test.c index 8947da02..e871760e 100644 --- a/tests/lossy_comp_test.c +++ b/tests/lossy_comp_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/misc_test.c b/tests/misc_test.c index ab66078e..dedfabc1 100644 --- a/tests/misc_test.c +++ b/tests/misc_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software ; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/multi_file_test.c b/tests/multi_file_test.c index 8ac1595d..041f3980 100644 --- a/tests/multi_file_test.c +++ b/tests/multi_file_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/ogg_test.c b/tests/ogg_test.c index b3b8327f..63f3bdae 100644 --- a/tests/ogg_test.c +++ b/tests/ogg_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007-2009 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/pcm_test.tpl b/tests/pcm_test.tpl index 3d2f928d..949ad4ed 100644 --- a/tests/pcm_test.tpl +++ b/tests/pcm_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/peak_chunk_test.c b/tests/peak_chunk_test.c index 6627c56f..14656aa0 100644 --- a/tests/peak_chunk_test.c +++ b/tests/peak_chunk_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/pedantic-header-test.sh.in b/tests/pedantic-header-test.sh.in index ffd57222..8b196280 100644 --- a/tests/pedantic-header-test.sh.in +++ b/tests/pedantic-header-test.sh.in @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (C) 2010 Erik de Castro Lopo +# Copyright (C) 2010-2011 Erik de Castro Lopo # # All rights reserved. # diff --git a/tests/pipe_test.tpl b/tests/pipe_test.tpl index f1256336..52155565 100644 --- a/tests/pipe_test.tpl +++ b/tests/pipe_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/raw_test.c b/tests/raw_test.c index e7bbe5d6..9c788d10 100644 --- a/tests/raw_test.c +++ b/tests/raw_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2002-2009 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/rdwr_test.tpl b/tests/rdwr_test.tpl index c6fbed8d..dc862e2f 100644 --- a/tests/rdwr_test.tpl +++ b/tests/rdwr_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 2010 Erik de Castro Lopo +** Copyright (C) 2010-2011 Erik de Castro Lopo ** ** This program is free software ; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/scale_clip_test.tpl b/tests/scale_clip_test.tpl index 4c5e43aa..d8a8b32d 100644 --- a/tests/scale_clip_test.tpl +++ b/tests/scale_clip_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/sftest.c b/tests/sftest.c index 63688e05..78a9f7fa 100644 --- a/tests/sftest.c +++ b/tests/sftest.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/sfversion.c b/tests/sfversion.c index 9127851b..c464f086 100644 --- a/tests/sfversion.c +++ b/tests/sfversion.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/stdin_test.c b/tests/stdin_test.c index bb384385..1d941bd3 100644 --- a/tests/stdin_test.c +++ b/tests/stdin_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/stdio_test.c b/tests/stdio_test.c index 048d7d2f..80a696cf 100644 --- a/tests/stdio_test.c +++ b/tests/stdio_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/stdout_test.c b/tests/stdout_test.c index 5e7308a0..042a59a3 100644 --- a/tests/stdout_test.c +++ b/tests/stdout_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2009 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/string_test.c b/tests/string_test.c index c73a649b..11e2efd3 100644 --- a/tests/string_test.c +++ b/tests/string_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2003-2010 Erik de Castro Lopo +** Copyright (C) 2003-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/test_wrapper.sh.in b/tests/test_wrapper.sh.in index 2edda440..c91073e9 100644 --- a/tests/test_wrapper.sh.in +++ b/tests/test_wrapper.sh.in @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2008-2010 Erik de Castro Lopo +# Copyright (C) 2008-2011 Erik de Castro Lopo # # All rights reserved. # diff --git a/tests/ulaw_test.c b/tests/ulaw_test.c index 26f14bba..d504c4ac 100644 --- a/tests/ulaw_test.c +++ b/tests/ulaw_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/utils.tpl b/tests/utils.tpl index 9464574e..a82f3c4b 100644 --- a/tests/utils.tpl +++ b/tests/utils.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template h c +] /* -** Copyright (C) 2002-2010 Erik de Castro Lopo +** Copyright (C) 2002-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/virtual_io_test.c b/tests/virtual_io_test.c index cb1ac397..1aae063d 100644 --- a/tests/virtual_io_test.c +++ b/tests/virtual_io_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 1999-2009 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/vorbis_test.c b/tests/vorbis_test.c index 89a6a456..9f5797fd 100644 --- a/tests/vorbis_test.c +++ b/tests/vorbis_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2007-2009 Erik de Castro Lopo +** Copyright (C) 2007-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/win32_ordinal_test.c b/tests/win32_ordinal_test.c index 3b5da836..ce8723f9 100644 --- a/tests/win32_ordinal_test.c +++ b/tests/win32_ordinal_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2006-2009 Erik de Castro Lopo +** Copyright (C) 2006-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/win32_test.c b/tests/win32_test.c index 853ee8b1..d0d9f211 100644 --- a/tests/win32_test.c +++ b/tests/win32_test.c @@ -1,5 +1,5 @@ /* -** Copyright (C) 2001-2010 Erik de Castro Lopo +** Copyright (C) 2001-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by diff --git a/tests/write_read_test.tpl b/tests/write_read_test.tpl index 5a94bcc3..b4daa55d 100644 --- a/tests/write_read_test.tpl +++ b/tests/write_read_test.tpl @@ -1,6 +1,6 @@ [+ AutoGen5 template c +] /* -** Copyright (C) 1999-2010 Erik de Castro Lopo +** Copyright (C) 1999-2011 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by