summaryrefslogtreecommitdiffstats
path: root/main/jasper/jpc_dec.c.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-06 13:56:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-06 13:56:54 +0000
commiteb390ee12a235bd64ed6ca1941b10f6c96409754 (patch)
treee1f806a8b1c16556f47649b54c2293b4c1e9526b /main/jasper/jpc_dec.c.patch
parent0e22835ead81ba577b7899f9a0cdf5cb6dc759d2 (diff)
main/jasper: new aport
A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard http://www.ece.uvic.ca/~mdadams/jasper/
Diffstat (limited to 'main/jasper/jpc_dec.c.patch')
-rw-r--r--main/jasper/jpc_dec.c.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/main/jasper/jpc_dec.c.patch b/main/jasper/jpc_dec.c.patch
new file mode 100644
index 00000000000..ae1cd0617ea
--- /dev/null
+++ b/main/jasper/jpc_dec.c.patch
@@ -0,0 +1,18 @@
+diff -urN jasper-1.900.1/src/libjasper/jpc/jpc_dec.c jasper-1.900.1-fix/src/libjasper/jpc/jpc_dec.c
+--- jasper-1.900.1/src/libjasper/jpc/jpc_dec.c 2007-01-19 14:43:07.000000000 -0700
++++ jasper-1.900.1-fix/src/libjasper/jpc/jpc_dec.c 2008-03-06 16:51:12.000000000 -0700
+@@ -1069,12 +1069,12 @@
+ /* Apply an inverse intercomponent transform if necessary. */
+ switch (tile->cp->mctid) {
+ case JPC_MCT_RCT:
+- assert(dec->numcomps == 3);
++ assert(dec->numcomps >= 3);
+ jpc_irct(tile->tcomps[0].data, tile->tcomps[1].data,
+ tile->tcomps[2].data);
+ break;
+ case JPC_MCT_ICT:
+- assert(dec->numcomps == 3);
++ assert(dec->numcomps >= 3);
+ jpc_iict(tile->tcomps[0].data, tile->tcomps[1].data,
+ tile->tcomps[2].data);
+ break;