* [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17
@ 2020-08-16 12:09 Fabrice Fontaine
2020-08-16 20:48 ` Yann E. MORIN
2020-08-28 16:47 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-08-16 12:09 UTC (permalink / raw)
To: buildroot
Fixes:
- http://autobuild.buildroot.org/results/656e2232a0566ba8f7826a87b1fab9cc2c3d8e46
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
...0001-Fix-build-of-grfmt_jpeg2000-cpp.patch | 37 +++++++++++++++++++
1 file changed, 37 insertions(+)
create mode 100644 package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
diff --git a/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch b/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
new file mode 100644
index 0000000000..683dd95d97
--- /dev/null
+++ b/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
@@ -0,0 +1,37 @@
+From f66fc199a20882c546fa31142e9c0f5a8b3cf983 Mon Sep 17 00:00:00 2001
+From: Florian Jung <flo@windfis.ch>
+Date: Wed, 29 Jul 2020 18:51:55 +0200
+Subject: [PATCH] Fix build of grfmt_jpeg2000.cpp
+
+libjasper has recently changed `jas_matrix_get` from a macro to an inline function
+(389951d071 in https://github.com/jasper-software/jasper), causing the build to fail.
+
+[Retrieved (and backported) from:
+https://github.com/opencv/opencv/commit/f66fc199a20882c546fa31142e9c0f5a8b3cf983]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ modules/imgcodecs/src/grfmt_jpeg2000.cpp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/modules/highgui/src/grfmt_jpeg2000.cpp b/modules/highgui/src/grfmt_jpeg2000.cpp
+index fe69f80c86f..0f4d28d6f4d 100644
+--- a/modules/highgui/src/grfmt_jpeg2000.cpp
++++ b/modules/highgui/src/grfmt_jpeg2000.cpp
+@@ -377,7 +377,7 @@ bool Jpeg2KDecoder::readComponent8u( uchar *data, void *_buffer,
+
+ for( y = 0; y < yend - ystart; )
+ {
+- jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
++ jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
+ uchar* dst = data + (y - yoffset) * step - xoffset;
+
+ if( xstep == 1 )
+@@ -443,7 +443,7 @@ bool Jpeg2KDecoder::readComponent16u( unsigned short *data, void *_buffer,
+
+ for( y = 0; y < yend - ystart; )
+ {
+- jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
++ jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
+ ushort* dst = data + (y - yoffset) * step - xoffset;
+
+ if( xstep == 1 )
--
2.27.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17
2020-08-16 12:09 [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17 Fabrice Fontaine
@ 2020-08-16 20:48 ` Yann E. MORIN
2020-08-28 16:47 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-08-16 20:48 UTC (permalink / raw)
To: buildroot
Fabrice, All,
On 2020-08-16 14:09 +0200, Fabrice Fontaine spake thusly:
> Fixes:
> - http://autobuild.buildroot.org/results/656e2232a0566ba8f7826a87b1fab9cc2c3d8e46
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> ...0001-Fix-build-of-grfmt_jpeg2000-cpp.patch | 37 +++++++++++++++++++
> 1 file changed, 37 insertions(+)
> create mode 100644 package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
>
> diff --git a/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch b/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
> new file mode 100644
> index 0000000000..683dd95d97
> --- /dev/null
> +++ b/package/opencv/0001-Fix-build-of-grfmt_jpeg2000-cpp.patch
> @@ -0,0 +1,37 @@
> +From f66fc199a20882c546fa31142e9c0f5a8b3cf983 Mon Sep 17 00:00:00 2001
> +From: Florian Jung <flo@windfis.ch>
> +Date: Wed, 29 Jul 2020 18:51:55 +0200
> +Subject: [PATCH] Fix build of grfmt_jpeg2000.cpp
> +
> +libjasper has recently changed `jas_matrix_get` from a macro to an inline function
> +(389951d071 in https://github.com/jasper-software/jasper), causing the build to fail.
> +
> +[Retrieved (and backported) from:
> +https://github.com/opencv/opencv/commit/f66fc199a20882c546fa31142e9c0f5a8b3cf983]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + modules/imgcodecs/src/grfmt_jpeg2000.cpp | 4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/modules/highgui/src/grfmt_jpeg2000.cpp b/modules/highgui/src/grfmt_jpeg2000.cpp
> +index fe69f80c86f..0f4d28d6f4d 100644
> +--- a/modules/highgui/src/grfmt_jpeg2000.cpp
> ++++ b/modules/highgui/src/grfmt_jpeg2000.cpp
> +@@ -377,7 +377,7 @@ bool Jpeg2KDecoder::readComponent8u( uchar *data, void *_buffer,
> +
> + for( y = 0; y < yend - ystart; )
> + {
> +- jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
> ++ jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
> + uchar* dst = data + (y - yoffset) * step - xoffset;
> +
> + if( xstep == 1 )
> +@@ -443,7 +443,7 @@ bool Jpeg2KDecoder::readComponent16u( unsigned short *data, void *_buffer,
> +
> + for( y = 0; y < yend - ystart; )
> + {
> +- jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 );
> ++ jas_seqent_t* pix_row = jas_matrix_getref( buffer, y / ystep, 0 );
> + ushort* dst = data + (y - yoffset) * step - xoffset;
> +
> + if( xstep == 1 )
> --
> 2.27.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread* [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17
2020-08-16 12:09 [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17 Fabrice Fontaine
2020-08-16 20:48 ` Yann E. MORIN
@ 2020-08-28 16:47 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-08-28 16:47 UTC (permalink / raw)
To: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Fixes:
> - http://autobuild.buildroot.org/results/656e2232a0566ba8f7826a87b1fab9cc2c3d8e46
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2020.02.x and 2020.05.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-08-28 16:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-16 12:09 [Buildroot] [PATCH 1/1] package/opencv: fix build with jasper >= 2.0.17 Fabrice Fontaine
2020-08-16 20:48 ` Yann E. MORIN
2020-08-28 16:47 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox