1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
|
Author: Alastair McKinstry <mckinstry@debian.org>
Description: Remove jasper from Debian
Forwarded: not-needed
Last-Updated: 2018-02-4
Index: g2clib-1.6.2/enc_jpeg2000.c
===================================================================
--- g2clib-1.6.2.orig/enc_jpeg2000.c
+++ g2clib-1.6.2/enc_jpeg2000.c
@@ -1,8 +1,8 @@
/** @file
*/
-#ifndef USE_JPEG2000
+#ifndef USE_JASPER
void dummy_enc_jpeg2000(void) {}
-#else /* USE_JPEG2000 */
+#else /* USE_JASPER */
#include <stdio.h>
#include <stdlib.h>
Index: g2clib-1.6.2/dec_jpeg2000.c
===================================================================
--- g2clib-1.6.2.orig/dec_jpeg2000.c
+++ g2clib-1.6.2/dec_jpeg2000.c
@@ -1,8 +1,8 @@
/** @file
*/
-#ifndef USE_JPEG2000
+#ifndef USE_JASPER
void dummy_dec_jpeg200(void) {}
-#else /* USE_JPEG2000 */
+#else /* USE_JASPER */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Index: g2clib-1.6.2/makefile
===================================================================
--- g2clib-1.6.2.orig/makefile
+++ g2clib-1.6.2/makefile
@@ -10,7 +10,7 @@ SHELL=/bin/sh
#
# In addition, INC must include all directories where the above
# mentioned include files can be found.
-DEFS=-DUSE_JPEG2000 -DUSE_PNG
+DEFS=-DUSE_OPENJPEG -DUSE_PNG
#
# Please make sure to include all idirectories where include files
@@ -18,6 +18,7 @@ DEFS=-DUSE_JPEG2000 -DUSE_PNG
#
#INC=-I/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.1/include
+INC=$(shell pkg-config --cflags libopenjp2)
#
# This "C" source code contains many uses of the C++
@@ -103,7 +104,7 @@ $(LIB): $(LIB)(gridtemplates.o) \
clean:
rm -f *.o *.a *.so grib2c.pc lib*
-LIBS= `pkg-config --libs libpng` -ljasper -lm
+LIBS= `pkg-config --libs libpng` -lopenjp2 -lm
OBJS:= gridtemplates.o \
drstemplates.o \
pdstemplates.o \
@@ -137,6 +138,7 @@ OBJS:= gridtemplates.o \
pngunpack.o \
dec_jpeg2000.o \
enc_jpeg2000.o \
+ jpeg2000_openjpeg.o \
dec_png.o \
enc_png.o \
g2_create.o \
Index: g2clib-1.6.2/jpeg2000_openjpeg.c
===================================================================
--- /dev/null
+++ g2clib-1.6.2/jpeg2000_openjpeg.c
@@ -0,0 +1,415 @@
+#ifndef USE_OPENJPEG
+ void dummy_openjpeg(void) {}
+#else
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
+#include <stdbool.h>
+#include "grib2.h"
+#include "openjpeg.h"
+
+#define GRIB_SUCCESS 0
+#define GRIB_DECODING_ERROR -3
+#define GRIB_ENCODING_ERROR -14 /* match openjpeg in grib_api */
+
+/* opj_* Helper code from https://groups.google.com/forum/#!topic/openjpeg/8cebr0u7JgY */
+typedef struct
+{
+ OPJ_UINT8* pData;
+ OPJ_SIZE_T dataSize;
+ OPJ_SIZE_T offset;
+ // j2k_encode_helper *helper;
+} opj_memory_stream;
+
+
+static void openjpeg_warning(const char *msg, void *client_data)
+{
+ fprintf(stderr,"OPENJPEG: %s",msg);
+}
+
+static void openjpeg_error(const char *msg, void *client_data)
+{
+ fprintf(stderr,"OPENJPEG ERROR: %s",msg);
+}
+
+static void openjpeg_info(const char *msg, void *client_data)
+{
+ fprintf(stderr,"OPENJPEG INFO: %s",msg);
+}
+
+
+static OPJ_SIZE_T opj_memory_stream_read(void *buffer, OPJ_SIZE_T nb_bytes, void * p_user_data)
+{
+ opj_memory_stream* mstream = (opj_memory_stream*) p_user_data; //Our data.
+ OPJ_SIZE_T nb_bytes_read = nb_bytes;
+
+ //Check if the current offset is outside our data buffer.
+ if (mstream->offset >= mstream->dataSize)
+ return (OPJ_SIZE_T) -1;
+
+ //Check if we are reading more than we have.
+ if (nb_bytes > (mstream->dataSize - mstream->offset))
+ nb_bytes_read = mstream->dataSize - mstream->offset;
+
+ memcpy(buffer, &(mstream->pData[mstream->offset]), nb_bytes_read);
+ mstream->offset += nb_bytes_read;
+ return nb_bytes_read;
+}
+
+static OPJ_SIZE_T opj_memory_stream_write(void *buffer, OPJ_SIZE_T nb_bytes, void *user_data)
+{
+ opj_memory_stream* mstream = (opj_memory_stream*) user_data; // our data
+ OPJ_SIZE_T nb_bytes_write = nb_bytes;
+
+ if (mstream->offset >= mstream->dataSize)
+ return (OPJ_SIZE_T)-1;
+ if (nb_bytes > (mstream->dataSize - mstream->offset))
+ nb_bytes_write = mstream->dataSize - mstream->offset;
+
+ memcpy(&(mstream->pData[mstream->offset]), buffer, nb_bytes_write);
+ mstream->offset += nb_bytes_write;
+ return nb_bytes_write;
+}
+
+static OPJ_OFF_T opj_memory_stream_skip(OPJ_OFF_T nb_bytes, void *user_data)
+{
+ opj_memory_stream* mstream = (opj_memory_stream*) user_data;
+ OPJ_SIZE_T l_nb_bytes;
+
+ if (nb_bytes < 0)
+ return -1;
+ l_nb_bytes = (OPJ_SIZE_T) nb_bytes;
+ if (l_nb_bytes > mstream->dataSize - mstream->offset)
+ nb_bytes = mstream->dataSize - mstream->offset;
+ mstream->offset += l_nb_bytes;
+ return l_nb_bytes;
+}
+
+static OPJ_BOOL opj_memory_stream_seek(OPJ_OFF_T nb_bytes, void * user_data)
+{
+ opj_memory_stream* mstream = (opj_memory_stream*) user_data;
+
+ if (nb_bytes < 0)
+ return OPJ_FALSE;
+ if (nb_bytes >(OPJ_OFF_T) mstream->dataSize)
+ return OPJ_FALSE;
+ mstream->offset = (OPJ_SIZE_T) nb_bytes;
+}
+
+static void opj_memory_stream_do_nothing(void * p_user_data)
+{
+ OPJ_ARG_NOT_USED(p_user_data);
+}
+
+// Create a stream to use memory as the input or output
+static opj_stream_t* opj_stream_create_default_memory_stream(opj_memory_stream* memoryStream, OPJ_BOOL is_read_stream)
+{
+ opj_stream_t* stream;
+
+ if (!(stream = opj_stream_default_create(is_read_stream)))
+ return (NULL);
+ if (is_read_stream)
+ opj_stream_set_read_function(stream, opj_memory_stream_read);
+ else
+ opj_stream_set_write_function(stream, opj_memory_stream_write);
+
+ opj_stream_set_seek_function(stream, opj_memory_stream_seek);
+ opj_stream_set_skip_function(stream, opj_memory_stream_skip);
+ opj_stream_set_user_data(stream, memoryStream, opj_memory_stream_do_nothing);
+ opj_stream_set_user_data_length(stream, memoryStream->dataSize);
+ return stream;
+}
+
+int dec_jpeg2000(char *injpc,g2int bufsize,g2int *outfld)
+/*$$$ SUBPROGRAM DOCUMENTATION BLOCK
+* . . . .
+* SUBPROGRAM: dec_jpeg2000 Decodes JPEG2000 code stream
+* PRGMMR: McKinstry DATE: 2016-08-29
+*
+* ABSTRACT: This Function decodes a JPEG2000 code stream specified in the
+* JPEG2000 Part-1 standard (i.e., ISO/IEC 15444-1) using Openpeg
+* Software version 2.1
+* Openjpeg is available at http://www.openjpeg.org/
+*
+* PROGRAM HISTORY LOG:
+* 2016-08-29 Alastair McKinstry
+*
+* USAGE: int dec_jpeg2000(char *injpc,g2int bufsize,g2int *outfld)
+*
+* INPUT ARGUMENTS:
+* injpc - Input JPEG2000 code stream.
+* bufsize - Length (in bytes) of the input JPEG2000 code stream.
+*
+* OUTPUT ARGUMENTS:
+* outfld - Output matrix of grayscale image values.
+*
+* RETURN VALUES :
+* 0 = Successful decode
+* -3 = Error decode jpeg2000 code stream.
+* -5 = decoded image had multiple color components.
+* Only grayscale is expected.
+*
+* REMARKS:
+*
+* Requires OpenJPEG software, 2.1 or later.
+*
+* ATTRIBUTES:
+* LANGUAGE: C
+*
+*$$$*/
+
+{
+ int err = GRIB_SUCCESS;
+ g2int i;
+ unsigned long mask;
+ size_t n_vals, count;
+ double *val;
+
+ opj_dparameters_t parameters = {0,}; /* decompression parameters */
+ opj_codec_t *codec = NULL;
+ opj_image_t *image = NULL;
+ opj_stream_t *stream = NULL;
+ opj_image_comp_t comp = {0,};
+ opj_image_cmptparm_t cmptparm = {0,};
+ opj_memory_stream mstream;
+
+ /* set decoding parameters to default values */
+ opj_set_default_decoder_parameters(¶meters);
+ parameters.decod_format = 1; /* J
+
+ /* get a decoder handle */
+ codec = opj_create_decompress(OPJ_CODEC_J2K);
+
+ opj_set_info_handler(codec, openjpeg_info, NULL);
+ opj_set_warning_handler(codec, openjpeg_warning, NULL);
+ opj_set_error_handler(codec, openjpeg_error,NULL);
+
+ /* initialize our memory stream */
+ mstream.pData = injpc;
+ mstream.dataSize = bufsize;
+ mstream.offset = 0;
+ /* open a byte stream from memory stream */
+ stream = opj_stream_create_default_memory_stream( &mstream, OPJ_STREAM_READ);
+
+ /* setup the decoder decoding parameters using user parameters */
+ if (!opj_setup_decoder(codec, ¶meters)) {
+ err = GRIB_DECODING_ERROR;
+ goto cleanup;
+ }
+
+ if (!opj_read_header(stream, codec, &image)) {
+ err = GRIB_DECODING_ERROR;
+ goto cleanup;
+ }
+ if (!opj_decode(codec, stream, image)) {
+ err = GRIB_DECODING_ERROR;
+ goto cleanup;
+ }
+
+ // sanity checks
+ //if ( !(*n_vals <= image->comps[0].w * image->comps[0].h) ) {
+ // err = GRIB_DECODING_ERROR;
+ // goto cleanup;
+ //}
+ if ( (image->numcomps != 1) || !(image->x1 * image->y1) ) {
+ err = GRIB_DECODING_ERROR;
+ goto cleanup;
+ }
+ assert(image->comps[0].sgnd == 0);
+ assert(comp.prec <= sizeof(image->comps[0].data[0])*8 - 1); /* BR: -1 because I don't know what happens if the sign bit is set */
+
+ assert(image->comps[0].prec < sizeof(mask)*8-1);
+
+ outfld = image->comps[0].data;
+ mask = (1 << image->comps[0].prec) - 1;
+
+ count = image->comps[0].w * image->comps[0].h;
+ val = (double *) outfld;
+ for(i = 0; i <count ; i++)
+ outfld[i] &= mask;
+
+ cleanup:
+ /* close the byte stream */
+ if( codec && stream ) opj_end_decompress(codec,stream);
+ if (codec) opj_destroy_codec(codec);
+ if (stream) opj_stream_destroy(stream);
+ if (image) opj_image_destroy(image);
+
+ return err;
+
+
+}
+
+int enc_jpeg2000(unsigned char *cin,g2int width,g2int height,g2int nbits,
+ g2int ltype, g2int ratio, g2int retry, char *outjpc,
+ g2int jpclen)
+/*$$$ SUBPROGRAM DOCUMENTATION BLOCK
+ * . . . .
+ * SUBPROGRAM: enc_jpeg2000 Encodes JPEG2000 code stream
+ * PRGMMR: Gilbert ORG: W/NP11 DATE: 2002-12-02
+ *
+ * ABSTRACT: This Function encodes a grayscale image into a JPEG2000 code stream
+ * specified in the JPEG2000 Part-1 standard (i.e., ISO/IEC 15444-1)
+ * using Openjpeg software
+ * Openjpeg is available at http://www.ece.uvic.ca/~mdadams/jasper/.
+ *
+ * PROGRAM HISTORY LOG:
+ * 2016-03-15 McKinstry - Implementation based on Jasper original
+ *
+ * USAGE: int enc_jpeg2000(unsigned char *cin,g2int width,g2int height,
+ * g2int nbits, g2int ltype, g2int ratio,
+ * g2int retry, char *outjpc, g2int jpclen)
+ *
+ * INPUT ARGUMENTS:
+ * cin - Packed matrix of Grayscale image values to encode.
+ * width - width of image
+ * height - height of image
+ * nbits - depth (in bits) of image. i.e number of bits
+ * used to hold each data value
+ * ltype - indicator of lossless or lossy compression
+ * = 1, for lossy compression
+ * != 1, for lossless compression
+ * ratio - target compression ratio. (ratio:1)
+ * Used only when ltype == 1.
+ * retry - Pointer to option type.
+ * 1 = try increasing number of guard bits
+ * otherwise, no additional options
+ * jpclen - Number of bytes allocated for new JPEG2000 code stream in
+ * outjpc.
+ *
+ * INPUT ARGUMENTS:
+ * outjpc - Output encoded JPEG2000 code stream
+ *
+ * RETURN VALUES :
+ * > 0 = Length in bytes of encoded JPEG2000 code stream
+ * -3 = Error decode jpeg2000 code stream.
+ * -5 = decoded image had multiple color components.
+ * Only grayscale is expected.
+ *
+ * ATTRIBUTES:
+ * LANGUAGE: C
+ */
+{
+ int err = GRIB_SUCCESS;
+ int rwcnt, i;
+ const int numcomps = 1;
+ opj_cparameters_t parameters = {0,}; /* compression parameters */
+ opj_image_t *image = NULL;
+ opj_image_cmptparm_t cmptparm = {0,};
+ opj_codec_t *codec = NULL;
+ opj_stream_t *stream = NULL;
+ int *data;
+ long num_values;
+ double *values;
+ double reference_value = 0; /* FIXME need to set these */
+ double divisor = 1;
+ double decimal = 0;
+ opj_memory_stream mstream;
+
+ /* set encoding parameters to default values */
+ opj_set_default_encoder_parameters(¶meters);
+ parameters.tcp_numlayers = 1;
+ parameters.cp_disto_alloc = 1;
+ if (ltype) {
+ parameters.tcp_rates[0] = ratio; /* target compression ratio */
+ } else {
+ parameters.tcp_rates[0] = 0.0;
+ }
+
+ /* initialize image component */
+ cmptparm.prec = nbits;
+ cmptparm.bpp = nbits; /* Not sure about this one and the previous. What is the difference? */
+ cmptparm.sgnd = 0;
+ cmptparm.dx = 1;
+ cmptparm.dy = 1;
+ cmptparm.w = width;
+ cmptparm.h = height;
+
+ /* open a byte stream */
+ stream = opj_stream_default_create(true);
+
+ /* create the image */
+ image = opj_image_create(numcomps, &cmptparm, OPJ_CLRSPC_GRAY);
+ if(!image) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ image->x0 = 0;
+ image->y0 = 0;
+ image->x1 = width;
+ image->y1 = height;
+ num_values = width * height;
+
+ assert(cmptparm.prec <= sizeof(image->comps[0].data[0])*8 - 1); /* BR: -1 because I don't know what happens if the sign bit is set */
+ assert(num_values == image->comps[0].h * image->comps[0].w);
+
+ /* Simple packing */
+ data = image->comps[0].data;
+ for(i=0;i< num_values;i++){
+ unsigned long unsigned_val = (unsigned long)((((values[i]*decimal)-(reference_value))*divisor)+0.5);
+ data[i] = unsigned_val;
+ }
+
+ /* get a J2K compressor handle */
+ codec = opj_create_compress(OPJ_CODEC_J2K);
+
+ /* catch events using our callbacks and give a local context */
+ opj_set_info_handler(codec, openjpeg_warning, NULL);
+ opj_set_warning_handler(codec, openjpeg_warning, NULL);
+ opj_set_error_handler(codec, openjpeg_error,NULL);
+
+ /* setup the encoder parameters using the current image and user parameters */
+ if (!opj_setup_encoder(codec, ¶meters, image)) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ /* get a J2K compressor handle */
+ codec = opj_create_compress(OPJ_CODEC_J2K);
+
+ opj_set_info_handler(codec, openjpeg_info, NULL);
+ opj_set_warning_handler(codec, openjpeg_warning, NULL);
+ opj_set_error_handler(codec, openjpeg_error, NULL);
+
+ /* setup the encoder parameters using the current image and user parameters */
+ if (!opj_setup_encoder(codec, ¶meters, image)) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ /* open a byte stream for writing */
+ mstream.pData = (OPJ_UINT8*) outjpc;
+ mstream.offset = 0;
+ // mstream.dataSize = helper->buffer_size;
+ if (! (stream = opj_stream_create_default_memory_stream( &mstream, OPJ_STREAM_WRITE)) ) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+ if (!opj_start_compress(codec, image, stream)) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ /* encode image */
+ if (!opj_encode(codec, stream)) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ if (!opj_end_compress(codec, stream)) {
+ err = GRIB_ENCODING_ERROR;
+ goto cleanup;
+ }
+
+ cleanup:
+ if (codec) opj_destroy_codec(codec);
+ if (stream) opj_stream_destroy(stream);
+ if (image) opj_image_destroy(image);
+
+ // return length if ok, err otherwise
+ return (err < 0 ? err : mstream.offset);
+}
+
+#endif /* USE_OPENJPEG */
|