diff --git a/CHANGELOG.md b/CHANGELOG.md index 29223a7b529a26aa41730d100f1df61a17e1b0c1..731b5301dd6908cc1423d190a2352687f7ac04f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,22 @@ # libaec Changelog All notable changes to libaec will be documented in this file. -## [1.1.0] +## [1.1.0] - 2023-08-21 ### Changed - Rename aec executable to graec. This avoids a name clash with the library itself in cmake builds using the Ninja - generator. Furthermore, the executable and its manpage will not be - installed any more since it is mainly used for internal testing and - benchmarking. + generator. Furthermore, the executable and its manual page will not + be installed any more since it is mainly used for internal testing + and benchmarking. + +- The include file libaec.h now contains version information. + +### Added +- Support for decoding data ranges by Eugen Betke. You can now start + decoding at previously noted offsets of reference samples. New API + functions allow you to extract possible offsets and decode ranges + from encoded data. ## [1.0.6] - 2021-09-17 diff --git a/CMakeLists.txt b/CMakeLists.txt index 40abf5675de8ba88153f9c4c871de123b865a10f..2fe3a9470d26f62840a7b72cd47a1c4d907d62c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.13...3.19) -project(libaec LANGUAGES C VERSION 1.0.6) +project(libaec LANGUAGES C VERSION 1.1.0) # Automatically export symbols for Windows DLLs set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) diff --git a/LICENSE.txt b/LICENSE.txt index 3f4751f7ea0449153572a10cc69fe4ab5081c697..b39f7358e199d59fa04b523b82d85306b27f4e3e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh +Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index c976d7a05f12cc9103062b9d6a54a61544e3323c..e4466538dd8461bff901d181cd5de1573c88c122 100644 --- a/README.md +++ b/README.md @@ -218,8 +218,8 @@ The actual values of coding parameters are in fact only relevant for efficiency and performance. Data integrity only depends on consistency of the parameters. -The exact length of the original data is not preserved and must also be -transmitted out of band. The decoder can produce additional output +The exact length of the original data is not preserved and must also +be transmitted out of band. The decoder can produce additional output depending on whether the original data ended on a block boundary or on zero blocks. The output data must therefore be truncated to the correct length. This can also be achieved by providing an output @@ -227,12 +227,16 @@ buffer of just the correct length. ### Decoding data ranges -The Libaec library has functionality that allows individual data areas to be decoded without having to decode the entire file. -This allows efficient access to the data. +The Libaec library has functionality that allows individual data areas +to be decoded without having to decode the entire file. This allows +efficient access to the data. -This is possible because AEC-encoded data consists of independent blocks. -It is, therefore, possible to decode individual blocks if their offsets are known. -The Libaec library can capture the offsets when encoding or decoding the data and make them available to the user. +This is possible because AEC-encoded data consists of independent +blocks. It is, therefore, possible to decode individual blocks if +their offsets are known. If the preprocessor requires reference +samples, then decoding can commence only at blocks containing a +reference sample. The Libaec library can capture the offsets when +encoding or decoding the data and make them available to the user. The following example shows how to obtain the offsets. @@ -274,10 +278,11 @@ The following example shows how to obtain the offsets. ... ``` -The offsets can then be used to decode ranges of data. -The procedure is similar to the previous section, but use aec_decode_range() instead of aec_decode() and pass the offsets and the range as parameters. -The decoded ranges are written to the buffer as a stream. -When decoding the ranges into the individual buffers, set strm.total_out to zero. +The offsets can then be used to decode ranges of data. The procedure +is similar to the previous section, but use aec_decode_range() instead +of aec_decode() and pass the offsets and the range as parameters. The +decoded ranges are written to the buffer as a stream. When decoding +the ranges into the individual buffers, set strm.total_out to zero. ```c #include <libaec.h> diff --git a/configure.ac b/configure.ac index e2ba962fc3f76b92ff71b19730908f24b6b4acc8..afafb49da5e4824a15eedc99be8a7d7a17932b9f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ AC_PREREQ([2.64]) m4_define([VERSION_MAJOR], [1]) -m4_define([VERSION_MINOR], [0]) -m4_define([VERSION_PATCH], [6]) +m4_define([VERSION_MINOR], [1]) +m4_define([VERSION_PATCH], [0]) AC_INIT([libaec], [VERSION_MAJOR.VERSION_MINOR.VERSION_PATCH], [rosenhauer@dkrz.de]) diff --git a/include/libaec.h.in b/include/libaec.h.in index 147f9b4be06f159da8ad7c7f1eaa82850fe720da..26d2fe86f775cdeaada37cf1bdadff10bb249a28 100644 --- a/include/libaec.h.in +++ b/include/libaec.h.in @@ -2,7 +2,7 @@ * @file libaec.h * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/include/szlib.h b/include/szlib.h index 256b3a4084f582ac0148cef50dfa4bbf8bb315e6..6922a02fa4d049ac512358a6f97a25bb584a55ed 100644 --- a/include/szlib.h +++ b/include/szlib.h @@ -2,7 +2,7 @@ * @file szlib.h * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c664efa14d29f8bed911b1799d5d73942964d948..4c7fbfbc4ce4faf35d10f91f28f57958c0a65850 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,7 +22,7 @@ add_library(aec_shared SHARED "$<TARGET_OBJECTS:aec>") target_link_libraries(aec_shared PUBLIC aec) set_target_properties(aec_shared PROPERTIES - VERSION 0.0.12 + VERSION 0.1.0 SOVERSION 0 OUTPUT_NAME aec PUBLIC_HEADER ${CMAKE_CURRENT_BINARY_DIR}/../include/libaec.h) diff --git a/src/Makefile.am b/src/Makefile.am index 084b2376dc1979d7c92b5bf8a19948ac309d89bc..be452d47575f631d1d7c58ed1ffe1b43b9aadf90 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include \ lib_LTLIBRARIES = libaec.la libsz.la libaec_la_SOURCES = encode.c encode_accessors.c decode.c vector.c\ encode.h encode_accessors.h decode.h vector.h -libaec_la_LDFLAGS = -version-info 0:12:0 -no-undefined +libaec_la_LDFLAGS = -version-info 1:0:1 -no-undefined libsz_la_SOURCES = sz_compat.c libsz_la_LIBADD = libaec.la diff --git a/src/decode.c b/src/decode.c index 5b68e2a5cd43d9d5e06857e8ab8b02beb1da74a1..b742e2cfe40ee3ab8ba96ad2aa2b0e980f66836e 100644 --- a/src/decode.c +++ b/src/decode.c @@ -2,7 +2,7 @@ * @file decode.c * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/decode.h b/src/decode.h index a033ad4a2865be941ff60aad0a48c1e1cdd1d5cf..4bb8111a65bdcb6ec6da9395308ea39cefa9c29f 100644 --- a/src/decode.h +++ b/src/decode.h @@ -2,7 +2,7 @@ * @file decode.h * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/encode.c b/src/encode.c index b87a36474c9a64c36f739714d1338e0360278494..77043895ef9ec9fbcb31a4f5db78d3d9a0dd81d4 100644 --- a/src/encode.c +++ b/src/encode.c @@ -2,7 +2,7 @@ * @file encode.c * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/encode.h b/src/encode.h index 05c5862422b6d6de4527029479f82b014ead778a..940a562b6f4c75d77a031f67a4c46ce11075764f 100644 --- a/src/encode.h +++ b/src/encode.h @@ -2,7 +2,7 @@ * @file encode.h * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/encode_accessors.c b/src/encode_accessors.c index 077a884f498b647bc8b7936d0e65a7e40d6fbc9b..7e5f901d1497c6f1a99c11e429fa4621249c0075 100644 --- a/src/encode_accessors.c +++ b/src/encode_accessors.c @@ -2,7 +2,7 @@ * @file encode_accessors.c * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/encode_accessors.h b/src/encode_accessors.h index 10d0efe3fafdea00d3540562daf8a6ecca251b59..734747fc627774d6e57d1116a46cdc575e9b7104 100644 --- a/src/encode_accessors.h +++ b/src/encode_accessors.h @@ -2,7 +2,7 @@ * @file encode_accessors.h * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/graec.c b/src/graec.c index e537327e397f1ce9f5884cfe702ec389a81cc60b..3591dbb0c7e240fc8fa883830b10a9580fb8616c 100644 --- a/src/graec.c +++ b/src/graec.c @@ -2,7 +2,7 @@ * @file aec.c * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/sz_compat.c b/src/sz_compat.c index 3d3344af108d6b73352571af64f9ad21ed7e0a92..a9a5398a35307cc7c49f8e49e01896982b1fb906 100644 --- a/src/sz_compat.c +++ b/src/sz_compat.c @@ -2,7 +2,7 @@ * @file sz_compat.c * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/utime.c b/src/utime.c index 33e667b982db81ab1f67fd1308acddf29104054b..aa32a7a29fdb38059af601ddc1d7450c5d227310 100644 --- a/src/utime.c +++ b/src/utime.c @@ -4,7 +4,7 @@ * @author Thomas Jahns, Deutsches Klimarechenzentrum * * @section LICENSE - * Copyright 2021 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh + * Copyright 2023 Mathis Rosenhauer, Moritz Hanke, Joerg Behrens, Luis Kornblueh * All rights reserved. * * Redistribution and use in source and binary forms, with or without