99495be
From f66fc199a20882c546fa31142e9c0f5a8b3cf983 Mon Sep 17 00:00:00 2001
99495be
From: Florian Jung <flo@windfis.ch>
99495be
Date: Wed, 29 Jul 2020 18:51:55 +0200
99495be
Subject: [PATCH] Fix build of grfmt_jpeg2000.cpp
99495be
99495be
libjasper has recently changed `jas_matrix_get` from a macro to an inline function
99495be
(389951d071 in https://github.com/jasper-software/jasper), causing the build to fail.
99495be
---
99495be
 modules/imgcodecs/src/grfmt_jpeg2000.cpp | 4 ++--
99495be
 1 file changed, 2 insertions(+), 2 deletions(-)
99495be
99495be
diff --git a/modules/imgcodecs/src/grfmt_jpeg2000.cpp b/modules/imgcodecs/src/grfmt_jpeg2000.cpp
99495be
index fe69f80c86f..0f4d28d6f4d 100644
99495be
--- a/modules/imgcodecs/src/grfmt_jpeg2000.cpp
99495be
+++ b/modules/imgcodecs/src/grfmt_jpeg2000.cpp
99495be
@@ -377,7 +377,7 @@ bool  Jpeg2KDecoder::readComponent8u( uchar *data, void *_buffer,
99495be
 
99495be
     for( y = 0; y < yend - ystart; )
99495be
     {
99495be
-        jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
99495be
+        jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
99495be
         uchar* dst = data + (y - yoffset) * step - xoffset;
99495be
 
99495be
         if( xstep == 1 )
99495be
@@ -443,7 +443,7 @@ bool  Jpeg2KDecoder::readComponent16u( unsigned short *data, void *_buffer,
99495be
 
99495be
     for( y = 0; y < yend - ystart; )
99495be
     {
99495be
-        jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
99495be
+        jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
99495be
         ushort* dst = data + (y - yoffset) * step - xoffset;
99495be
 
99495be
         if( xstep == 1 )