summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathis Rosenhauer <rosenhauer@dkrz.de>2012-11-22 13:46:44 +0100
committerThomas Jahns <jahns@dkrz.de>2013-02-19 11:33:00 +0100
commitaaa258e174cd72df3b74fdbe2429b007233e4119 (patch)
tree15abbff12749057202a8da1d859896a151bac127
parente4924f2c34ab7e61660278a194551b47c3bc7401 (diff)
downloadlibaec-aaa258e174cd72df3b74fdbe2429b007233e4119.tar.gz
libaec-aaa258e174cd72df3b74fdbe2429b007233e4119.tar.bz2
libaec-aaa258e174cd72df3b74fdbe2429b007233e4119.zip
Add license to source files
-rw-r--r--COPYING17
-rw-r--r--src/aec.c54
-rw-r--r--src/decode.c43
-rw-r--r--src/decode.h53
-rw-r--r--src/encode.c43
-rw-r--r--src/encode.h53
-rw-r--r--src/encode_accessors.c52
-rw-r--r--src/encode_accessors.h52
-rw-r--r--src/libaec.h52
9 files changed, 410 insertions, 9 deletions
diff --git a/COPYING b/COPYING
index 283d07e..39867ce 100644
--- a/COPYING
+++ b/COPYING
@@ -21,13 +21,14 @@ are met:
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/src/aec.c b/src/aec.c
index df94f14..2f82c67 100644
--- a/src/aec.c
+++ b/src/aec.c
@@ -1,3 +1,55 @@
+/**
+ * @file aec.c
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * CLI frontend for Adaptive Entropy Coding library
+ *
+ */
+
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
@@ -8,7 +60,7 @@
#include <getopt.h>
#endif
-#include "libaec.h"
+#include <libaec.h>
#define CHUNK 1024
diff --git a/src/decode.c b/src/decode.c
index 3454977..061da95 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -1,6 +1,49 @@
/**
* @file decode.c
+ *
* @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
* @section DESCRIPTION
*
* Adaptive Entropy Decoder
diff --git a/src/decode.h b/src/decode.h
index 230e8f3..d17165c 100644
--- a/src/decode.h
+++ b/src/decode.h
@@ -1,3 +1,56 @@
+/**
+ * @file decode.c
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * Adaptive Entropy Decoder
+ * Based on CCSDS documents 121.0-B-2 and 120.0-G-2
+ *
+ */
+
#ifndef DECODE_H
#define DECODE_H
diff --git a/src/encode.c b/src/encode.c
index 612d33a..73d065e 100644
--- a/src/encode.c
+++ b/src/encode.c
@@ -1,6 +1,49 @@
/**
* @file encode.c
+ *
* @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
* @section DESCRIPTION
*
* Adaptive Entropy Encoder
diff --git a/src/encode.h b/src/encode.h
index f63808a..9f482ba 100644
--- a/src/encode.h
+++ b/src/encode.h
@@ -1,3 +1,56 @@
+/**
+ * @file encode.h
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * Adaptive Entropy Encoder
+ * Based on CCSDS documents 121.0-B-2 and 120.0-G-2
+ *
+ */
+
#ifndef ENCODE_H
#define ENCODE_H
diff --git a/src/encode_accessors.c b/src/encode_accessors.c
index e9cbbff..ea5b69c 100644
--- a/src/encode_accessors.c
+++ b/src/encode_accessors.c
@@ -1,3 +1,55 @@
+/**
+ * @file encode_accessors.c
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * Read various data types from input stream
+ *
+ */
+
#include <config.h>
#if HAVE_STDINT_H
diff --git a/src/encode_accessors.h b/src/encode_accessors.h
index d4b6974..ea4fa8d 100644
--- a/src/encode_accessors.h
+++ b/src/encode_accessors.h
@@ -1,3 +1,55 @@
+/**
+ * @file encode_accessors.h
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * Read various data types from input stream
+ *
+ */
+
#ifndef ENCODE_ACCESSORS_H
#define ENCODE_ACCESSORS_H
diff --git a/src/libaec.h b/src/libaec.h
index 9129a32..d16dad7 100644
--- a/src/libaec.h
+++ b/src/libaec.h
@@ -1,3 +1,55 @@
+/**
+ * @file libaec.h
+ *
+ * @author Mathis Rosenhauer, Deutsches Klimarechenzentrum
+ * @author Moritz Hanke, Deutsches Klimarechenzentrum
+ * @author Joerg Behrens, Deutsches Klimarechenzentrum
+ * @author Luis Kornblueh, Max-Planck-Institut fuer Meteorologie
+ *
+ * @section LICENSE
+ * Copyright 2012
+ *
+ * Mathis Rosenhauer, Luis Kornblueh
+ * Moritz Hanke,
+ * Joerg Behrens
+ *
+ * Deutsches Klimarechenzentrum GmbH Max-Planck-Institut fuer Meteorologie
+ * Bundesstr. 45a Bundesstr. 53
+ * 20146 Hamburg 20146 Hamburg
+ * Germany Germany
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @section DESCRIPTION
+ *
+ * Adaptive Entropy Coding library
+ *
+ */
+
#ifndef LIBAEC_H
#define LIBAEC_H