Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-18 05:40:10 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-18 05:40:10 +0400
commit8b2ff0da5a768bde0f233ea5384aa9e4edcde9f6 (patch)
tree1c1491ffaa709d11f4d328f720e26dd7c3a4cab4
parent30f7f813ea48388305f91e4cc961e866d0d0f49a (diff)
Updated copyright notices
-rw-r--r--libcelt/arch.h5
-rw-r--r--libcelt/bands.c6
-rw-r--r--libcelt/bands.h6
-rw-r--r--libcelt/celt.c6
-rw-r--r--libcelt/celt.h6
-rw-r--r--libcelt/celt_header.h5
-rw-r--r--libcelt/cwrs.c6
-rw-r--r--libcelt/cwrs.h5
-rw-r--r--libcelt/dump_modes.c5
-rw-r--r--libcelt/ecintrin.h4
-rw-r--r--libcelt/entcode.c2
-rw-r--r--libcelt/entcode.h4
-rw-r--r--libcelt/entdec.c4
-rw-r--r--libcelt/entdec.h4
-rw-r--r--libcelt/entenc.c4
-rw-r--r--libcelt/entenc.h4
-rw-r--r--libcelt/fixed_debug.h3
-rw-r--r--libcelt/fixed_generic.h4
-rw-r--r--libcelt/header.c5
-rw-r--r--libcelt/kfft_double.h2
-rw-r--r--libcelt/kfft_single.c2
-rw-r--r--libcelt/kfft_single.h2
-rw-r--r--libcelt/kiss_fft.c6
-rw-r--r--libcelt/kiss_fft.h6
-rw-r--r--libcelt/laplace.c5
-rw-r--r--libcelt/laplace.h5
-rw-r--r--libcelt/mathops.h5
-rw-r--r--libcelt/mdct.c5
-rw-r--r--libcelt/mdct.h5
-rw-r--r--libcelt/mfrngcod.h4
-rw-r--r--libcelt/mfrngdec.c4
-rw-r--r--libcelt/mfrngenc.c4
-rw-r--r--libcelt/modes.c6
-rw-r--r--libcelt/modes.h6
-rw-r--r--libcelt/pitch.c5
-rw-r--r--libcelt/pitch.h5
-rw-r--r--libcelt/psy.c5
-rw-r--r--libcelt/psy.h5
-rw-r--r--libcelt/quant_bands.c5
-rw-r--r--libcelt/quant_bands.h5
-rw-r--r--libcelt/rangedec.c4
-rw-r--r--libcelt/rangeenc.c4
-rw-r--r--libcelt/rate.c5
-rw-r--r--libcelt/rate.h5
-rw-r--r--libcelt/stack_alloc.h3
-rw-r--r--libcelt/testcelt.c5
-rw-r--r--libcelt/vq.c5
-rw-r--r--libcelt/vq.h5
-rw-r--r--tools/celtclient.c1
-rw-r--r--tools/celtdec.c4
-rw-r--r--tools/celtenc.c5
51 files changed, 140 insertions, 91 deletions
diff --git a/libcelt/arch.h b/libcelt/arch.h
index 7eef208..3d803b0 100644
--- a/libcelt/arch.h
+++ b/libcelt/arch.h
@@ -1,4 +1,7 @@
-/* Copyright (C) 2003-2008 Jean-Marc Valin */
+/* Copyright (c) 2003-2008 Jean-Marc Valin
+ Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/**
@file arch.h
@brief Various architecture definitions for CELT
diff --git a/libcelt/bands.c b/libcelt/bands.c
index 0c1b9f7..a0998eb 100644
--- a/libcelt/bands.c
+++ b/libcelt/bands.c
@@ -1,5 +1,7 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
- (C) 2008-2009 Gregory Maxwell */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008-2009 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/bands.h b/libcelt/bands.h
index 5927726..5fb5ee8 100644
--- a/libcelt/bands.h
+++ b/libcelt/bands.h
@@ -1,5 +1,7 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008-2009 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/celt.c b/libcelt/celt.c
index fded655..91b20b7 100644
--- a/libcelt/celt.c
+++ b/libcelt/celt.c
@@ -1,5 +1,7 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
- (C) 2008 Gregory Maxwell */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/celt.h b/libcelt/celt.h
index 7f70b39..37aee27 100644
--- a/libcelt/celt.h
+++ b/libcelt/celt.h
@@ -1,5 +1,7 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
- (C) 2008 Gregory Maxwell */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/**
@file celt.h
@brief Contains all the functions for encoding and decoding audio
diff --git a/libcelt/celt_header.h b/libcelt/celt_header.h
index 0bb5fa5..357a7f0 100644
--- a/libcelt/celt_header.h
+++ b/libcelt/celt_header.h
@@ -1,5 +1,6 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007 CSIRO
+ Copyright (c) 2007-2008 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/cwrs.c b/libcelt/cwrs.c
index d675d25..57dd969 100644
--- a/libcelt/cwrs.c
+++ b/libcelt/cwrs.c
@@ -1,5 +1,7 @@
-/* (C) 2007-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2007-2009 Timothy B. Terriberry
+ Written by Timothy B. Terriberry and Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/cwrs.h b/libcelt/cwrs.h
index aa6eace..c6f4f34 100644
--- a/libcelt/cwrs.h
+++ b/libcelt/cwrs.h
@@ -1,4 +1,7 @@
-/* (C) 2007-2008 Timothy Terriberry */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2007-2009 Timothy B. Terriberry
+ Written by Timothy B. Terriberry and Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/dump_modes.c b/libcelt/dump_modes.c
index dd3b121..8e3b786 100644
--- a/libcelt/dump_modes.c
+++ b/libcelt/dump_modes.c
@@ -1,5 +1,6 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2008 CSIRO
+ Copyright (c) 2008-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/ecintrin.h b/libcelt/ecintrin.h
index 0f64e31..b0bed9f 100644
--- a/libcelt/ecintrin.h
+++ b/libcelt/ecintrin.h
@@ -1,5 +1,5 @@
-/* (C) 2003-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2003-2008 Timothy B. Terriberry
+ Copyright (c) 2008 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/entcode.c b/libcelt/entcode.c
index ecedadf..718b874 100644
--- a/libcelt/entcode.c
+++ b/libcelt/entcode.c
@@ -1,4 +1,4 @@
-/* (C) 2001-2008 Timothy B. Terriberry
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
*/
/*
Redistribution and use in source and binary forms, with or without
diff --git a/libcelt/entcode.h b/libcelt/entcode.h
index 7513c35..4369dfe 100644
--- a/libcelt/entcode.h
+++ b/libcelt/entcode.h
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/entdec.c b/libcelt/entdec.c
index 722c851..ebfda56 100644
--- a/libcelt/entdec.c
+++ b/libcelt/entdec.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/entdec.h b/libcelt/entdec.h
index 36d5274..d006a97 100644
--- a/libcelt/entdec.h
+++ b/libcelt/entdec.h
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/entenc.c b/libcelt/entenc.c
index 095170b..163c39f 100644
--- a/libcelt/entenc.c
+++ b/libcelt/entenc.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/entenc.h b/libcelt/entenc.h
index 49f2752..73f67e7 100644
--- a/libcelt/entenc.h
+++ b/libcelt/entenc.h
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/fixed_debug.h b/libcelt/fixed_debug.h
index 0039ab9..9fe6523 100644
--- a/libcelt/fixed_debug.h
+++ b/libcelt/fixed_debug.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 2003-2008 Jean-Marc Valin */
+/* Copyright (C) 2003-2008 Jean-Marc Valin
+ Copyright (C) 2007-2009 Xiph.Org Foundation */
/**
@file fixed_debug.h
@brief Fixed-point operations with debugging
diff --git a/libcelt/fixed_generic.h b/libcelt/fixed_generic.h
index d4e02af..5e9c94b 100644
--- a/libcelt/fixed_generic.h
+++ b/libcelt/fixed_generic.h
@@ -1,4 +1,6 @@
-/* Copyright (C) 2003-2008 Jean-Marc Valin, CSIRO */
+/* Copyright (C) 2007-2009 Xiph.Org Foundation
+ Copyright (C) 2003-2008 Jean-Marc Valin
+ Copyright (C) 2007-2008 CSIRO */
/**
@file fixed_generic.h
@brief Generic fixed-point operations
diff --git a/libcelt/header.c b/libcelt/header.c
index dddfdd1..928811b 100644
--- a/libcelt/header.c
+++ b/libcelt/header.c
@@ -1,5 +1,6 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/kfft_double.h b/libcelt/kfft_double.h
index c393632..43b38b0 100644
--- a/libcelt/kfft_double.h
+++ b/libcelt/kfft_double.h
@@ -1,4 +1,4 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
+/* Copyright (c) 2008 Xiph.Org Foundation, CSIRO
*/
/*
Redistribution and use in source and binary forms, with or without
diff --git a/libcelt/kfft_single.c b/libcelt/kfft_single.c
index e72c046..8d4dc28 100644
--- a/libcelt/kfft_single.c
+++ b/libcelt/kfft_single.c
@@ -1,4 +1,4 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
+/* Copyright (c) 2008 Xiph.Org Foundation, CSIRO
*/
/*
Redistribution and use in source and binary forms, with or without
diff --git a/libcelt/kfft_single.h b/libcelt/kfft_single.h
index e4f49ea..5f2d673 100644
--- a/libcelt/kfft_single.h
+++ b/libcelt/kfft_single.h
@@ -1,4 +1,4 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
+/* Copyright (c) 2008 Xiph.Org Foundation, CSIRO
*/
/*
Redistribution and use in source and binary forms, with or without
diff --git a/libcelt/kiss_fft.c b/libcelt/kiss_fft.c
index a065e67..0a64c6c 100644
--- a/libcelt/kiss_fft.c
+++ b/libcelt/kiss_fft.c
@@ -1,8 +1,8 @@
/*
Copyright (c) 2003-2004, Mark Borgerding
-Lots of modifications by JMV
-Copyright (c) 2005-2007, Jean-Marc Valin
-Copyright (c) 2008, Jean-Marc Valin, CSIRO
+Lots of modifications by Jean-Marc Valin
+Copyright (c) 2005-2007, Xiph.Org Foundation
+Copyright (c) 2008, Xiph.Org Foundation, CSIRO
All rights reserved.
diff --git a/libcelt/kiss_fft.h b/libcelt/kiss_fft.h
index abddd02..1c46206 100644
--- a/libcelt/kiss_fft.h
+++ b/libcelt/kiss_fft.h
@@ -1,8 +1,8 @@
/*
Copyright (c) 2003-2004, Mark Borgerding
-Lots of modifications by JMV
-Copyright (c) 2005-2007, Jean-Marc Valin
-Copyright (c) 2008, Jean-Marc Valin, CSIRO
+Lots of modifications by Jean-Marc Valin
+Copyright (c) 2005-2007, Xiph.Org Foundation
+Copyright (c) 2008, Xiph.Org Foundation, CSIRO
All rights reserved.
diff --git a/libcelt/laplace.c b/libcelt/laplace.c
index 1eda29c..f09590e 100644
--- a/libcelt/laplace.c
+++ b/libcelt/laplace.c
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/laplace.h b/libcelt/laplace.h
index 34ae905..29e22c8 100644
--- a/libcelt/laplace.h
+++ b/libcelt/laplace.h
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/mathops.h b/libcelt/mathops.h
index 25fe18c..f057650 100644
--- a/libcelt/mathops.h
+++ b/libcelt/mathops.h
@@ -1,4 +1,7 @@
-/* Copyright (C) 2002-2008 Jean-Marc Valin */
+/* Copyright (c) 2002-2008 Jean-Marc Valin
+ Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/**
@file mathops.h
@brief Various math functions
diff --git a/libcelt/mdct.c b/libcelt/mdct.c
index f08bdef..a61d01f 100644
--- a/libcelt/mdct.c
+++ b/libcelt/mdct.c
@@ -1,5 +1,6 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2008 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/mdct.h b/libcelt/mdct.h
index b3d51ed..6bb3859 100644
--- a/libcelt/mdct.h
+++ b/libcelt/mdct.h
@@ -1,5 +1,6 @@
-/* (C) 2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2008 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/mfrngcod.h b/libcelt/mfrngcod.h
index fbd2b25..c4ed4bd 100644
--- a/libcelt/mfrngcod.h
+++ b/libcelt/mfrngcod.h
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/mfrngdec.c b/libcelt/mfrngdec.c
index 5239f4e..a7ddbf2 100644
--- a/libcelt/mfrngdec.c
+++ b/libcelt/mfrngdec.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/mfrngenc.c b/libcelt/mfrngenc.c
index d1f3c31..b1d8e36 100644
--- a/libcelt/mfrngenc.c
+++ b/libcelt/mfrngenc.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/modes.c b/libcelt/modes.c
index 9729a4f..af0d6ca 100644
--- a/libcelt/modes.c
+++ b/libcelt/modes.c
@@ -1,5 +1,7 @@
-/* (C) 2007-2009 Jean-Marc Valin, CSIRO
- (C) 2008 Gregory Maxwell */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/modes.h b/libcelt/modes.h
index a03c25a..4e99d69 100644
--- a/libcelt/modes.h
+++ b/libcelt/modes.h
@@ -1,5 +1,7 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008 Gregory Maxwell
+ Written by Jean-Marc Valin and Gregory Maxwell */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/pitch.c b/libcelt/pitch.c
index 36e6bfc..7e06f45 100644
--- a/libcelt/pitch.c
+++ b/libcelt/pitch.c
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/**
@file pitch.c
@brief Pitch analysis
diff --git a/libcelt/pitch.h b/libcelt/pitch.h
index 6e2e4f8..8668bee 100644
--- a/libcelt/pitch.h
+++ b/libcelt/pitch.h
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/**
@file pitch.h
@brief Pitch analysis
diff --git a/libcelt/psy.c b/libcelt/psy.c
index 96867e6..c4f6979 100644
--- a/libcelt/psy.c
+++ b/libcelt/psy.c
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/psy.h b/libcelt/psy.h
index bf0a51a..b9a2e54 100644
--- a/libcelt/psy.h
+++ b/libcelt/psy.h
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/quant_bands.c b/libcelt/quant_bands.c
index d622694..74eb1e1 100644
--- a/libcelt/quant_bands.c
+++ b/libcelt/quant_bands.c
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/quant_bands.h b/libcelt/quant_bands.h
index f0163e9..28e0000 100644
--- a/libcelt/quant_bands.h
+++ b/libcelt/quant_bands.h
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
- */
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/rangedec.c b/libcelt/rangedec.c
index 901cb79..a8d322b 100644
--- a/libcelt/rangedec.c
+++ b/libcelt/rangedec.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/rangeenc.c b/libcelt/rangeenc.c
index 51ef9c0..0ba3497 100644
--- a/libcelt/rangeenc.c
+++ b/libcelt/rangeenc.c
@@ -1,5 +1,5 @@
-/* (C) 2001-2008 Timothy B. Terriberry
- (C) 2008 Jean-Marc Valin */
+/* Copyright (c) 2001-2008 Timothy B. Terriberry
+ Copyright (c) 2008-2009 Xiph.Org Foundation */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/rate.c b/libcelt/rate.c
index 8114505..6dd4eeb 100644
--- a/libcelt/rate.c
+++ b/libcelt/rate.c
@@ -1,5 +1,6 @@
-/* (C) 2007-2009 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/rate.h b/libcelt/rate.h
index 2c2e1c7..d78e0d8 100644
--- a/libcelt/rate.h
+++ b/libcelt/rate.h
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/stack_alloc.h b/libcelt/stack_alloc.h
index f1ae11f..95f40d4 100644
--- a/libcelt/stack_alloc.h
+++ b/libcelt/stack_alloc.h
@@ -1,4 +1,5 @@
-/* Copyright (C) 2002 Jean-Marc Valin */
+/* Copyright (C) 2002-2003 Jean-Marc Valin
+ Copyright (C) 2007-2009 Xiph.Org Foundation */
/**
@file stack_alloc.h
@brief Temporary memory allocation on stack
diff --git a/libcelt/testcelt.c b/libcelt/testcelt.c
index bcaf391..51e13b1 100644
--- a/libcelt/testcelt.c
+++ b/libcelt/testcelt.c
@@ -1,5 +1,6 @@
-/* (C) 2007 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/vq.c b/libcelt/vq.c
index 429ff4c..c7ece7d 100644
--- a/libcelt/vq.c
+++ b/libcelt/vq.c
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/libcelt/vq.h b/libcelt/vq.h
index f6099ad..6258297 100644
--- a/libcelt/vq.h
+++ b/libcelt/vq.h
@@ -1,5 +1,6 @@
-/* (C) 2007-2008 Jean-Marc Valin, CSIRO
-*/
+/* Copyright (c) 2007-2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Written by Jean-Marc Valin */
/**
@file vq.h
@brief Vector quantisation of the residual
diff --git a/tools/celtclient.c b/tools/celtclient.c
index f55bbfd..879bcec 100644
--- a/tools/celtclient.c
+++ b/tools/celtclient.c
@@ -3,6 +3,7 @@
Copyright (C) 2006 Commonwealth Scientific and Industrial Research
Organisation (CSIRO) Australia
Copyright (C) 2008-2009 Gregory Maxwell
+ Copyright (c) 2007-2009 Xiph.Org Foundation
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
diff --git a/tools/celtdec.c b/tools/celtdec.c
index 11dc361..0f9847d 100644
--- a/tools/celtdec.c
+++ b/tools/celtdec.c
@@ -1,4 +1,6 @@
-/* Copyright (C) 2008 Jean-Marc Valin, CSIRO
+/* Copyright (c) 2002-2007 Jean-Marc Valin
+ Copyright (c) 2008 CSIRO
+ Copyright (c) 2007-2009 Xiph.Org Foundation
File: celtdec.c
Redistribution and use in source and binary forms, with or without
diff --git a/tools/celtenc.c b/tools/celtenc.c
index 8a44d79..b8df2e1 100644
--- a/tools/celtenc.c
+++ b/tools/celtenc.c
@@ -1,5 +1,6 @@
-/* Copyright (C) 2002-2008 Jean-Marc Valin
- Copyright (C) 2008-2009 Gregory Maxwell
+/* Copyright (c) 2002-2007 Jean-Marc Valin
+ Copyright (c) 2007-2009 Xiph.Org Foundation
+ Copyright (c) 2008-2009 Gregory Maxwell
File: celtenc.c
Redistribution and use in source and binary forms, with or without