Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Mathis Rosenhauer
libaec
Commits
ec3d49e5
Commit
ec3d49e5
authored
Feb 04, 2015
by
Mathis Rosenhauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump.
parent
a6d9b578
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
24 additions
and
16 deletions
+24
-16
CMakeLists.txt
CMakeLists.txt
+2
-2
ChangeLog
ChangeLog
+8
-0
configure.ac
configure.ac
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+2
-2
src/Makefile.am
src/Makefile.am
+2
-2
src/aec.c
src/aec.c
+1
-1
src/decode.c
src/decode.c
+1
-1
src/decode.h
src/decode.h
+1
-1
src/encode.c
src/encode.c
+1
-1
src/encode.h
src/encode.h
+1
-1
src/encode_accessors.c
src/encode_accessors.c
+1
-1
src/encode_accessors.h
src/encode_accessors.h
+1
-1
src/libaec.h
src/libaec.h
+1
-1
src/utime.c
src/utime.c
+1
-1
No files found.
CMakeLists.txt
View file @
ec3d49e5
...
...
@@ -6,7 +6,7 @@ INCLUDE(cmake/macros.cmake)
PROJECT
(
libaec
)
SET
(
libaec_VERSION_MAJOR 0
)
SET
(
libaec_VERSION_MINOR 3
)
SET
(
libaec_VERSION_PATCH
1
)
SET
(
libaec_VERSION_PATCH
2
)
SET
(
CMAKE_BUILD_TYPE Release
)
ENABLE_TESTING
()
...
...
@@ -51,7 +51,7 @@ SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY
"libaec - Adaptive Entropy Coding library"
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR
"0"
)
SET
(
CPACK_PACKAGE_VERSION_MINOR
"3"
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
"
1
"
)
SET
(
CPACK_PACKAGE_VERSION_PATCH
"
2
"
)
SET
(
CPACK_PACKAGE_INSTALL_DIRECTORY
"libaec"
)
SET
(
CPACK_RESOURCE_FILE_LICENSE
"
${
PROJECT_SOURCE_DIR
}
/COPYING"
)
SET
(
CPACK_RESOURCE_FILE_README
"
${
PROJECT_SOURCE_DIR
}
/README"
)
...
...
ChangeLog
View file @
ec3d49e5
2015-02-04 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3.2
Allow nonconforming block sizes in SZ mode.
Performance improvement for decoder.
2014-10-23 Mathis Rosenhauer <rosenhauer@dkrz.de>
v0.3.1
...
...
configure.ac
View file @
ec3d49e5
AC_PREREQ([2.64])
AC_INIT([libaec], [0.3.
1
], [rosenhauer@dkrz.de])
AC_INIT([libaec], [0.3.
2
], [rosenhauer@dkrz.de])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
...
...
src/CMakeLists.txt
View file @
ec3d49e5
SET
(
libaec_SRCS encode.c encode_accessors.c decode.c
)
ADD_LIBRARY
(
aec
${
LIB_TYPE
}
${
libaec_SRCS
}
)
SET_TARGET_PROPERTIES
(
aec PROPERTIES
SOVERSION 0.0.
2
SOVERSION 0.0.
3
)
ADD_LIBRARY
(
sz
${
LIB_TYPE
}
sz_compat.c
)
SET_TARGET_PROPERTIES
(
sz PROPERTIES
SOVERSION 2.0.
2
SOVERSION 2.0.
1
)
TARGET_LINK_LIBRARIES
(
sz aec
)
...
...
src/Makefile.am
View file @
ec3d49e5
lib_LTLIBRARIES
=
libaec.la libsz.la
libaec_la_SOURCES
=
encode.c encode_accessors.c decode.c
\
encode.h encode_accessors.h decode.h
libaec_la_LDFLAGS
=
-version-info
0:
2
:0
libaec_la_LDFLAGS
=
-version-info
0:
3
:0
libsz_la_SOURCES
=
sz_compat.c
libsz_la_LIBADD
=
libaec.la
libsz_la_LDFLAGS
=
-version-info
2:
2
:0
libsz_la_LDFLAGS
=
-version-info
2:
1
:0
include_HEADERS
=
libaec.h szlib.h
...
...
src/aec.c
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file aec.c
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.c
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file decode.c
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/decode.h
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file decode.c
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.c
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file encode.c
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode.h
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file encode.h
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.c
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file encode_accessors.c
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/encode_accessors.h
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file encode_accessors.h
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/libaec.h
View file @
ec3d49e5
...
...
@@ -2,7 +2,7 @@
* @file libaec.h
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
src/utime.c
View file @
ec3d49e5
...
...
@@ -4,7 +4,7 @@
* @author Thomas Jahns, Deutsches Klimarechenzentrum
*
* @section LICENSE
* Copyright 2012 - 201
4
* Copyright 2012 - 201
5
*
* Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
* Deutsches Klimarechenzentrum GmbH
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment