summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2008-02-28 05:34:21 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2008-02-28 05:34:21 +0000
commit82b128050e9e58a34baf8aa188077ddeee2d7a1a (patch)
treee3ae1226e69f8e2140bf2d50877f189e6fa71bcc /examples
parent0a4ecd8ddb708915b26ad69cedf6f8985a2baf5f (diff)
downloadflac-82b128050e9e58a34baf8aa188077ddeee2d7a1a.tar.gz
update copyright for 2008
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am2
-rw-r--r--examples/Makefile.lite2
-rw-r--r--examples/c/Makefile.am2
-rw-r--r--examples/c/decode/Makefile.am2
-rw-r--r--examples/c/decode/file/Makefile.am2
-rw-r--r--examples/c/decode/file/Makefile.lite2
-rw-r--r--examples/c/decode/file/main.c2
-rw-r--r--examples/c/encode/Makefile.am2
-rw-r--r--examples/c/encode/file/Makefile.am2
-rw-r--r--examples/c/encode/file/Makefile.lite2
-rw-r--r--examples/c/encode/file/main.c2
-rw-r--r--examples/cpp/Makefile.am2
-rw-r--r--examples/cpp/decode/Makefile.am2
-rw-r--r--examples/cpp/decode/file/Makefile.am2
-rw-r--r--examples/cpp/decode/file/Makefile.lite2
-rw-r--r--examples/cpp/decode/file/main.cpp2
-rw-r--r--examples/cpp/encode/Makefile.am2
-rw-r--r--examples/cpp/encode/file/Makefile.am2
-rw-r--r--examples/cpp/encode/file/Makefile.lite2
-rw-r--r--examples/cpp/encode/file/main.cpp2
20 files changed, 20 insertions, 20 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 64a49f3c..6019efed 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/Makefile.lite b/examples/Makefile.lite
index abfe657e..bc6823d3 100644
--- a/examples/Makefile.lite
+++ b/examples/Makefile.lite
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/c/Makefile.am b/examples/c/Makefile.am
index b88dca68..60607865 100644
--- a/examples/c/Makefile.am
+++ b/examples/c/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/c/decode/Makefile.am b/examples/c/decode/Makefile.am
index 35bb987b..7dfcc875 100644
--- a/examples/c/decode/Makefile.am
+++ b/examples/c/decode/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/c/decode/file/Makefile.am b/examples/c/decode/file/Makefile.am
index eb18ceb5..100211ba 100644
--- a/examples/c/decode/file/Makefile.am
+++ b/examples/c/decode/file/Makefile.am
@@ -1,5 +1,5 @@
# example_c_decode_file - Simple FLAC file decoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/c/decode/file/Makefile.lite b/examples/c/decode/file/Makefile.lite
index e5070c12..74ecde01 100644
--- a/examples/c/decode/file/Makefile.lite
+++ b/examples/c/decode/file/Makefile.lite
@@ -1,5 +1,5 @@
# example_c_decode_file - Simple FLAC file decoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/c/decode/file/main.c b/examples/c/decode/file/main.c
index 20fafa20..0a159dc7 100644
--- a/examples/c/decode/file/main.c
+++ b/examples/c/decode/file/main.c
@@ -1,5 +1,5 @@
/* example_c_decode_file - Simple FLAC file decoder using libFLAC
- * Copyright (C) 2007 Josh Coalson
+ * Copyright (C) 2007,2008 Josh Coalson
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/examples/c/encode/Makefile.am b/examples/c/encode/Makefile.am
index 35bb987b..7dfcc875 100644
--- a/examples/c/encode/Makefile.am
+++ b/examples/c/encode/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/c/encode/file/Makefile.am b/examples/c/encode/file/Makefile.am
index be98e855..1becb790 100644
--- a/examples/c/encode/file/Makefile.am
+++ b/examples/c/encode/file/Makefile.am
@@ -1,5 +1,5 @@
# example_c_encode_file - Simple FLAC file encoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/c/encode/file/Makefile.lite b/examples/c/encode/file/Makefile.lite
index d8be3269..4955af10 100644
--- a/examples/c/encode/file/Makefile.lite
+++ b/examples/c/encode/file/Makefile.lite
@@ -1,5 +1,5 @@
# example_c_encode_file - Simple FLAC file encoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/c/encode/file/main.c b/examples/c/encode/file/main.c
index d1037e3e..f7a416fd 100644
--- a/examples/c/encode/file/main.c
+++ b/examples/c/encode/file/main.c
@@ -1,5 +1,5 @@
/* example_c_encode_file - Simple FLAC file encoder using libFLAC
- * Copyright (C) 2007 Josh Coalson
+ * Copyright (C) 2007,2008 Josh Coalson
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/Makefile.am b/examples/cpp/Makefile.am
index b88dca68..60607865 100644
--- a/examples/cpp/Makefile.am
+++ b/examples/cpp/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/cpp/decode/Makefile.am b/examples/cpp/decode/Makefile.am
index 35bb987b..7dfcc875 100644
--- a/examples/cpp/decode/Makefile.am
+++ b/examples/cpp/decode/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/cpp/decode/file/Makefile.am b/examples/cpp/decode/file/Makefile.am
index a0d3dbf9..80e9ecef 100644
--- a/examples/cpp/decode/file/Makefile.am
+++ b/examples/cpp/decode/file/Makefile.am
@@ -1,5 +1,5 @@
# example_cpp_decode_file - Simple FLAC file decoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/decode/file/Makefile.lite b/examples/cpp/decode/file/Makefile.lite
index abc93e81..54cd5fcc 100644
--- a/examples/cpp/decode/file/Makefile.lite
+++ b/examples/cpp/decode/file/Makefile.lite
@@ -1,5 +1,5 @@
# example_cpp_decode_file - Simple FLAC file decoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/decode/file/main.cpp b/examples/cpp/decode/file/main.cpp
index 56140503..7c212d94 100644
--- a/examples/cpp/decode/file/main.cpp
+++ b/examples/cpp/decode/file/main.cpp
@@ -1,5 +1,5 @@
/* example_cpp_decode_file - Simple FLAC file decoder using libFLAC
- * Copyright (C) 2007 Josh Coalson
+ * Copyright (C) 2007,2008 Josh Coalson
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/encode/Makefile.am b/examples/cpp/encode/Makefile.am
index 35bb987b..7dfcc875 100644
--- a/examples/cpp/encode/Makefile.am
+++ b/examples/cpp/encode/Makefile.am
@@ -1,5 +1,5 @@
# FLAC - Free Lossless Audio Codec
-# Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
+# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008 Josh Coalson
#
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
diff --git a/examples/cpp/encode/file/Makefile.am b/examples/cpp/encode/file/Makefile.am
index 4a0a8af6..38664511 100644
--- a/examples/cpp/encode/file/Makefile.am
+++ b/examples/cpp/encode/file/Makefile.am
@@ -1,5 +1,5 @@
# example_cpp_encode_file - Simple FLAC file encoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/encode/file/Makefile.lite b/examples/cpp/encode/file/Makefile.lite
index 9ae1b129..2a2819f7 100644
--- a/examples/cpp/encode/file/Makefile.lite
+++ b/examples/cpp/encode/file/Makefile.lite
@@ -1,5 +1,5 @@
# example_cpp_encode_file - Simple FLAC file encoder using libFLAC
-# Copyright (C) 2007 Josh Coalson
+# Copyright (C) 2007,2008 Josh Coalson
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
diff --git a/examples/cpp/encode/file/main.cpp b/examples/cpp/encode/file/main.cpp
index 343ee871..2d09e4cf 100644
--- a/examples/cpp/encode/file/main.cpp
+++ b/examples/cpp/encode/file/main.cpp
@@ -1,5 +1,5 @@
/* example_cpp_encode_file - Simple FLAC file encoder using libFLAC
- * Copyright (C) 2007 Josh Coalson
+ * Copyright (C) 2007,2008 Josh Coalson
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License