diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2015-08-29 18:32:11 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2015-08-29 18:32:11 +0200 |
| commit | 415fa18ad93493b7073a69cda3af27863537185b (patch) | |
| tree | e6b1d00bc42efc0f2268bdbe13e4bd9b566c6e57 /src/jpeg-utils.cpp | |
| parent | b57363dbf58c275a7684281022db376ed412601b (diff) | |
| download | cataract-415fa18ad93493b7073a69cda3af27863537185b.tar.xz | |
jpeg-utils: Unify media libraries initialization
Both MagickWand and exiv2 needs some initialization and cleanup, move
it to jpeg-utils for clean includes in cgg.c.
Also add explicit exiv2 XMP initialization as stated on
http://dev.exiv2.org/projects/exiv2/wiki/Thread_safety:
"The XMP SDK initialization function is not mutex protected, thus
Exiv2::XmpParser::initialize is not thread-safe. Therefore, multi-threaded
applications need to ensure that this XMP function is serialized, e.g.,
by calling them from an initialization section which is run before any
threads are started."
See also https://bugs.kde.org/show_bug.cgi?id=166424
Diffstat (limited to 'src/jpeg-utils.cpp')
| -rw-r--r-- | src/jpeg-utils.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/jpeg-utils.cpp b/src/jpeg-utils.cpp index 965d751..2d85d3b 100644 --- a/src/jpeg-utils.cpp +++ b/src/jpeg-utils.cpp @@ -35,6 +35,26 @@ struct ExifDataPrivate { }; +/* + * Thread-safe ImageMagick and exiv2 libraries initialization and cleanup + */ +void +init_jpeg_utils (void) +{ + MagickWandGenesis(); + /* http://dev.exiv2.org/projects/exiv2/wiki/Thread_safety */ + /* https://bugs.kde.org/show_bug.cgi?id=166424 */ + Exiv2::XmpParser::initialize(); +} + +void +destroy_jpeg_utils (void) +{ + Exiv2::XmpParser::terminate(); + MagickWandTerminus(); +} + + static void shift_time (struct tm *tm, int offset_min) { |
