Bug 58906 - 0.22.0 does not find openjpeg-2.0.0
Summary: 0.22.0 does not find openjpeg-2.0.0
Status: RESOLVED FIXED
Alias: None
Product: poppler
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: x86-64 (AMD64) Linux (All)
: medium normal
Assignee: poppler-bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-31 13:04 UTC by treeve
Modified: 2015-01-04 23:03 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments
initial attempt at openjpeg2 support (11.57 KB, patch)
2013-01-01 14:05 UTC, Adrian Johnson
Details | Splinter Review
new attempt for openjpeg2 support (12.66 KB, patch)
2013-09-03 12:38 UTC, Thomas Freitag
Details | Splinter Review
rebased new attempt for openjpeg2 support (12.61 KB, patch)
2014-05-09 08:18 UTC, Thomas Freitag
Details | Splinter Review
initial attempt at openjpeg2 support (12.12 KB, patch)
2014-05-09 11:48 UTC, Adrian Johnson
Details | Splinter Review
initial attempt at openjpeg2 support (13.26 KB, patch)
2014-05-09 14:35 UTC, Thomas Freitag
Details | Splinter Review
Initial attempt at openjpeg2 support (16.89 KB, patch)
2014-05-10 05:39 UTC, Adrian Johnson
Details | Splinter Review
See Comment #19 (6.10 KB, text/plain)
2014-05-10 18:33 UTC, tarlou.gd
Details
extended openjpeg2 support (5.28 KB, patch)
2014-05-11 07:20 UTC, Thomas Freitag
Details | Splinter Review
cmake (3.48 KB, patch)
2014-09-26 12:02 UTC, Adrian Johnson
Details | Splinter Review
PDF blurrier in openjpeg2 codepath than openjpeg1 (112.56 KB, application/octet-string)
2014-09-28 15:19 UTC, Albert Astals Cid
Details
Initial attempt at openjpeg2 support (17.29 KB, patch)
2014-10-08 12:01 UTC, Adrian Johnson
Details | Splinter Review

Description treeve 2012-12-31 13:04:35 UTC
openjpeg-2.0.0 installs the following files on my system

/usr/include
/usr/include/openjpeg-2.0
/usr/include/openjpeg-2.0/openjpeg.h
/usr/include/openjpeg-2.0/opj_config.h
/usr/include/openjpeg-2.0/opj_stdint.h
/usr/lib
/usr/lib/libopenjp2.so
/usr/lib/libopenjp2.so.2.0.0
/usr/lib/libopenjp2.so.6
/usr/lib/openjpeg-2.0
/usr/lib/openjpeg-2.0/OpenJPEGConfig.cmake
/usr/lib/openjpeg-2.0/OpenJPEGTargets.cmake
/usr/lib/openjpeg-2.0/OpenJPEGTargets-noconfig.cmake

I am using cmake-2.10.2
Comment 1 Adrian Johnson 2013-01-01 14:05:22 UTC
Created attachment 72361 [details] [review]
initial attempt at openjpeg2 support

This is an initial attempt at openjpeg 2 support. I've created JPEG2000Stream2 .cc files for the new openjpeg2 API but it should probably be merged into JPEG2000Stream.cc with some #ifdefs.

The build conf changes are incomplete due to the lack of pkg-config support in 2.0. I only created the minimal changes to get it to compile. LIBOPENJPEG_CFLAGS needs to be specified when running configure.

I found some additional regressions in openjpeg 2.0:
http://code.google.com/p/openjpeg/issues/detail?id=206

in addition to the regressions already in 1.5.1:
http://code.google.com/p/openjpeg/issues/detail?id=205

and the missing pkgconfig support:
http://code.google.com/p/openjpeg/issues/detail?id=68

So for now I recommend using openjpeg 1.5.0. When there is a new version that fixes the regressions and restores pkgconfig support I'll finish off this patch.
Comment 2 Thomas Freitag 2013-09-03 12:38:48 UTC
Created attachment 85114 [details] [review]
new attempt for openjpeg2 support

When try to render  when rendering http://www.eci.org/_media/downloads/altona_test_suite/eci_altona-test-suite-v2_technical2_x4.pdf with Your patch for openjpeg2, I got a huge number of error messages and no one of the jp2 compressed images were shown. I tried it also with the actual master version of openjpeg 2.x available over svn, but then I got immediately an assert.

1. I looked a little bit around and found out, that we have to set the user_data_length with opj_stream_set_user_data_length to avoid the assert, therefore I went back to read the complete jp2 stream into memory first to get a correct length for the stream.
2. Then I discovered that we have to implement the skip_function and have to return always the input value, even if it tries to skip over the end of the stream.

With these corrections I was able to render the PDF nearly completely, only two images are missing in the rendered output. But these two images are images in LAB colorspace, and it seems, as if openjpeg has no support for LAB images. 

@Adrian: I don't know which PDFs causes Your regressions, but I think that there is a great chance that my patch solves that, too. So it would be nice if You can tell me what are the problematic PDFs and / or test my patch with these PDF again.
Comment 3 Albert Astals Cid 2013-09-25 19:35:20 UTC
Do you guys think its worth trying to share code between the two openjpeg implementations? I did a quick diff and i'm undecided about if it's a good idea or not, so since you guys have probably looked more at it, what do you think?
Comment 4 Adrian Johnson 2013-09-25 21:46:33 UTC
(In reply to comment #3)
> Do you guys think its worth trying to share code between the two openjpeg
> implementations? 

That is my intention. I'm still waiting for openjpeg to release a new version that restores pkg-config support before I finished this patch. It has been fixed in their subversion repository.
Comment 5 Albert Astals Cid 2013-09-26 00:03:33 UTC
Mabe ping them in their mailing list/personal mail? With something like a "Yo guys, we really need this, it'd be cool if you did a release"
Comment 6 muffinpoop123 2013-10-27 18:41:32 UTC
Hi, since the last comment, the openjpeg2 pkg-config support issue has been closed and there was mention of backporting the fix, but no action has been taken.
http://code.google.com/p/openjpeg/issues/detail?id=68
Comment 7 Thomas Freitag 2014-05-09 08:18:01 UTC
Created attachment 98733 [details] [review]
rebased  new attempt for openjpeg2 support

I rebased my new attempt for openjpeg2 support, because I need it to continue working on bug 68986.

@Adrian: in April they released openjpeg 2.1. Are You able to have a look if the pkg-config support is now available again? Should be according to the issue tracker. If so, can we try to work on a final fix for this bug?
Comment 8 Adrian Johnson 2014-05-09 08:53:45 UTC
(In reply to comment #7)
> @Adrian: in April they released openjpeg 2.1. Are You able to have a look if
> the pkg-config support is now available again? Should be according to the
> issue tracker. If so, can we try to work on a final fix for this bug?

I can have a look. Can you provide your changes as a separate git commit instead of combined with my commit.
Comment 9 Thomas Freitag 2014-05-09 08:56:50 UTC
(In reply to comment #8)
> (In reply to comment #7)
> > @Adrian: in April they released openjpeg 2.1. Are You able to have a look if
> > the pkg-config support is now available again? Should be according to the
> > issue tracker. If so, can we try to work on a final fix for this bug?
> 
> I can have a look. Can you provide your changes as a separate git commit
> instead of combined with my commit.

Should I merge it JPEG2000Stream.cc with some #ifdefs instead of using separate files?
Comment 10 Adrian Johnson 2014-05-09 11:48:08 UTC
Created attachment 98748 [details] [review]
initial attempt at openjpeg2 support

I've updated my patch to support openjpeg2 with pkg-config support. I've also merged the JPEG2000Stream2.cc changes into JPEG2000Stream.cc.

Thomas, you should be able to rebase your changes onto this.
Comment 11 Thomas Freitag 2014-05-09 13:57:00 UTC
(In reply to comment #10)
> Created attachment 98748 [details] [review] [review]
> initial attempt at openjpeg2 support
> 
> I've updated my patch to support openjpeg2 with pkg-config support. I've
> also merged the JPEG2000Stream2.cc changes into JPEG2000Stream.cc.
> 
> Thomas, you should be able to rebase your changes onto this.

I first just applied Your patch, the configure now works fine, it detects openjpeg 2.1. BUT: when I try to compile it (without any changes from me), I got

JPEG2000Stream.cc: In member function 'void JPXStream::init()':
JPEG2000Stream.cc:231:3: warning: 'void opj_stream_set_user_data(void**, void*)' is deprecated (declared at /usr/local/include/openjpeg-2.1/openjpeg.h:1082) [-Wdeprecated-declarations]
JPEG2000Stream.cc:231:47: error: too many arguments to function 'void opj_stream_set_user_data(void**, void*)'
In file included from JPEG2000Stream.h:21:0,
                 from JPEG2000Stream.cc:17:
/usr/local/include/openjpeg-2.1/openjpeg.h:1082:1: note: declared here
JPEG2000Stream.cc:231:47: warning: 'void opj_stream_set_user_data(void**, void*)' is deprecated (declared at /usr/local/include/openjpeg-2.1/openjpeg.h:1082) [-Wdeprecated-declarations]
make[3]: *** [JPEG2000Stream.lo] Fehler 1

I looked into the openjpeg 2,0 header files, it's the same, opj_stream_set_user_data only accepts two arguments, so I'm wondering how You get it compiled. Okay, if I apply my changes, we'll get it compiled again. But will we get my patch compiled on any installation???
Comment 12 Thomas Freitag 2014-05-09 14:35:53 UTC
Created attachment 98764 [details] [review]
initial attempt at openjpeg2 support

I merged now my changes to Adrian's patch. I think, we can give it a try and commit it to master if nobody finds a problem.
Comment 13 Adrian Johnson 2014-05-10 05:39:15 UTC
Created attachment 98805 [details] [review]
Initial attempt at openjpeg2 support

The opj_stream_set_user_data function has changed between 2.0.1 and 2.1.0. I've updated my patch to handle this difference. I've also moved openjpeg.h into the .cc file to avoid polluting the global namespace and added an OPENJPEG_VERSION macro to make it easier to check the version as I don't think this will be the last time that openjpeg breaks API.
Comment 14 Adrian Johnson 2014-05-10 05:42:44 UTC
(In reply to comment #12)
> Created attachment 98764 [details] [review] [review]
> initial attempt at openjpeg2 support
> 
> I merged now my changes to Adrian's patch. I think, we can give it a try and
> commit it to master if nobody finds a problem.

I suggest attaching your changes as a separate commit so your code gets committed under your name and my code gets committed under my name.

> +  unsigned char *buf = str->toUnsignedChars(&length, bufSize);

Where does this get freed? Looks like a memory leak.
Comment 15 Thomas Freitag 2014-05-10 07:38:35 UTC
(In reply to comment #14)
> (In reply to comment #12)
> > Created attachment 98764 [details] [review] [review] [review]
> > initial attempt at openjpeg2 support
> > 
> > I merged now my changes to Adrian's patch. I think, we can give it a try and
> > commit it to master if nobody finds a problem.
> 
> I suggest attaching your changes as a separate commit so your code gets
> committed under your name and my code gets committed under my name.

Ok, I'll wait until Your code is committed and then look if my changes are still necessary.

> 
> > +  unsigned char *buf = str->toUnsignedChars(&length, bufSize);
> 
> Where does this get freed? Looks like a memory leak.

Thanks for the hint. I'll keep that in mind if my code changes are still needed.
Comment 16 Adrian Johnson 2014-05-10 08:00:50 UTC
(In reply to comment #15)
> Ok, I'll wait until Your code is committed and then look if my changes are
> still necessary.

My patch won't work without your changes so we need your patch before mine can be committed to allow testing with openjpeg2.
Comment 17 Thomas Freitag 2014-05-10 08:35:23 UTC
(In reply to comment #16)
> 
> My patch won't work without your changes so we need your patch before mine
> can be committed to allow testing with openjpeg2.

So You mean I should do a git diff against Your changes so we see only my changes on top of Yours? I'm not really experienced in git, but I'll try to find out how to do it on monday (I'm busy with other things this weekend)
Comment 18 Adrian Johnson 2014-05-10 09:41:03 UTC
git clone git://git.freedesktop.org/git/poppler/poppler
git config user.name "your name"
git config user.email "your@email.com"
git checkout -b openjpeg # create new branch and switch to it
git am < adrian.patch # import my commit
<make your changes>
git commit -a # commit your changes
git format-patch HEAD^ # export last commit as a patch (use HEAD~n for last n commits)
Comment 19 tarlou.gd 2014-05-10 18:32:03 UTC
Hello,

I was trying to completely remove openjpeg 1 from my computer these days, and I was so lucky to find this work. (What a coincidence!) Thanks for your patches! That helped a lot.

And here is a bug report for the patch. It does not work on the file http://fanat1k.ru/tmp/test_pdf.pdf (It was from this post https://github.com/mozilla/pdf.js/issues/2788.)

The reason is the file needs OPJ_CODEC_J2K, but jpxData->pos was not set to 0 when OPJ_CODEC_JP2 decoding failed and started to try OPJ_CODEC_J2K. Maybe you can move the jpxData definition (and stream) to init2, and that should solve the problem. (If I'm not wrong, probably you might also need to release variables stream and decoder after the "error:" line to avoid memory leak.)

A better solution is to determine the format before decoding. I checked some codes from ghostscript. If the first two bytes of buf is 0xFF, 0x4F, then use OPJ_CODEC_J2K; otherwise use OPJ_CODEC_JP2. We can safely ignore OPJ_CODEC_JPT, because it is not implemented in openjpeg. (See the code of opj_create_decompress in libopenjpeg/openjpeg.c in opengjpeg 1.5.1 or src/lib/openjp2/openjpeg.c in openjpeg 2.1.0.)

I attached the JPEG2000Stream.cc file I'm using. (It is basically your patch with some tweaks.) I also removed opj_end_decompress (is it useful?) and restored the skip function to the way it should be (it should return jpxData->pos instead of skip). And it works perfectly on the above test_pdf.pdf file. There are also no openjpeg errors for the pdf file in provided "Comment #2" (but there is an error from poppler, which seems doesn't matter). Hope this will be useful.
Comment 20 tarlou.gd 2014-05-10 18:33:54 UTC
Created attachment 98827 [details]
See Comment #19
Comment 21 Thomas Freitag 2014-05-11 07:20:48 UTC
Created attachment 98833 [details] [review]
extended openjpeg2 support

Thanks to Adrian: this patch is now created on top of Adrian's patch and it solves the problems of comment 2.
I also free buf now.
Last but not least thanks to tarlou.gd@gmail.com: with this hint I encountered that at least with openjpeg2 opj_stream_t cannot be used twice with different encoder, therefore I create now always a new one, so this patch also renders the PDF of comment 19
Comment 22 Adrian Johnson 2014-05-29 22:30:44 UTC
Albert, these patches are ready for review.
Comment 23 Albert Astals Cid 2014-06-01 22:09:28 UTC
I know, sorry i've been terribily busy lately, it's on my list of things to regtest
Comment 24 Adrian Johnson 2014-09-23 23:35:41 UTC
Any update on the review?
Comment 25 Albert Astals Cid 2014-09-24 19:46:08 UTC
I can nothing but excuse myself again, i'll put it at the top of my todo.
Comment 26 Albert Astals Cid 2014-09-24 20:18:04 UTC
The cmake build system seems to be broken (still have not tried to use openjpeg2, just openjpeg1), I get

Linking CXX executable pdfdetach
../libpoppler.so.46.0.0: undefined reference to `JPXStream::init()'

Please fix it.

I'll try to compile using auto* and test
Comment 27 Albert Astals Cid 2014-09-24 20:22:37 UTC
Hmmm, you are using pkgconfig to check for openjpeg but my openjpeg donwload as no pkgconfig file, how does that work for you guys?
Comment 28 Adrian Johnson 2014-09-24 22:13:37 UTC
Openjpeg 2.0.0 has missing pkgconfig support. pkgconfig support was restored in subsequent versions (2.0.1 and 2.1.0).

As 2.0.0 has some serious regressions compared with the 1.x versions I decided it was not worth adding the extra complexity to the build files to detect that version.
Comment 29 Albert Astals Cid 2014-09-24 22:21:38 UTC
Where do you get those? I can't find them at https://code.google.com/p/openjpeg/downloads/list :S
Comment 30 Adrian Johnson 2014-09-24 22:28:00 UTC
They have changed their download location but have not updated all their links. Click on "News" on the left side of the home page.

Downloads are at https://code.google.com/p/openjpeg/wiki/Downloads
Comment 31 Adrian Johnson 2014-09-26 12:02:05 UTC
Created attachment 106920 [details] [review]
cmake

I am not familiar with cmake. I managed to copy and paste together something that seems to work.
Comment 32 Albert Astals Cid 2014-09-28 15:19:13 UTC
Various issues:

 * Rendering the pdf that i will attach with opengjpeg2 renders a much blurrier text at the bottom than with openjpeg1, can you have a look as to why that happens?

* Using configure and openjpeg2 in an non standard dir i get

/home/tsdgeos/devel/poppler/glib/tmp-introspect13BDMh/.libs/lt-Poppler-0.18: error while loading shared libraries: libopenjp2.so.7: cannot open shared object file: No such file or directory


* The cmake support is still not good, i hacked it up to work, don't really remember the changes, i'm attaching the whole files, and after everything else is solved i guess i can just copy&paste or something http://paste.kde.org/pn1ufckym http://paste.kde.org/ph1jbuvn0 http://paste.kde.org/pxbkd570d http://paste.kde.org/pt9tiqs4s
Comment 33 Albert Astals Cid 2014-09-28 15:19:55 UTC
Created attachment 107013 [details]
PDF blurrier in openjpeg2 codepath than openjpeg1
Comment 34 Thomas Freitag 2014-09-29 10:13:24 UTC
(In reply to comment #33)
> Created attachment 107013 [details]
> PDF blurrier in openjpeg2 codepath than openjpeg1

I see what You mean. But in my eyes it is a change in the openjpeg implementation. Do the following:

./utils/pdfimages -all moo.pdf ./moo-img/moo

and the with openjpeg 1:

j2k_to_image -i ./moo-img/moo-000.jp2 -o moo-oj1.tif

and with openjpeg 2:

opj_decompress -i ./moo-img/moo-000.jp2 -o moo-oj2.tif

You'll see the same differences in the output as You see with poppler. And I don't find any way to get it decompressed with version 2 as it was done with version 1.
Comment 35 Thomas Freitag 2014-09-29 11:15:09 UTC
(In reply to comment #33)
> Created attachment 107013 [details]
> PDF blurrier in openjpeg2 codepath than openjpeg1

Seems to be https://code.google.com/p/openjpeg/issues/detail?id=254
Comment 36 Thomas Freitag 2014-09-29 11:32:36 UTC
(In reply to comment #35)
> (In reply to comment #33)
> > Created attachment 107013 [details]
> > PDF blurrier in openjpeg2 codepath than openjpeg1
> 
> Seems to be https://code.google.com/p/openjpeg/issues/detail?id=254

I can confirm that it the patch of comment #12 solves it
Comment 37 Thomas Freitag 2014-09-29 11:40:07 UTC
(In reply to comment #36)
> (In reply to comment #35)
> > (In reply to comment #33)
> > > Created attachment 107013 [details]
> > > PDF blurrier in openjpeg2 codepath than openjpeg1
> > 
> > Seems to be https://code.google.com/p/openjpeg/issues/detail?id=254
> 
> I can confirm that it the patch of comment #12 solves it

Of course https://code.google.com/p/openjpeg/issues/detail?id=254#c12 is meant, not our comment #12
Comment 38 Albert Astals Cid 2014-09-29 21:06:46 UTC
Asked if those patches are going to make it to a release, at this point, does it make sense to pick openjpeg2 over openjpeg1 when we know it gives us less quality?
Comment 39 Thomas Freitag 2014-09-30 07:48:32 UTC
(In reply to comment #38)
> Asked if those patches are going to make it to a release, at this point,
> does it make sense to pick openjpeg2 over openjpeg1 when we know it gives us
> less quality?

1. According the comments on the openjpeg bug the jp2 image included the PDF You attached is invalid, s. https://code.google.com/p/openjpeg/issues/detail?id=254#c11
2. If we wait until all "bugs" are solved we can wait at the Greeks calends :-) , and probably support of openjpeg 1 will be suspended earlier.
3. Some other bugs /features are solved i.e. in openjpeg 2.1 which will no more be fixed in openjpeg 1, see i.e. eci altona testsuite v2.
4. But I think we can discuss about what openjpeg version should be used by default if both are installed
Comment 40 Adrian Johnson 2014-09-30 13:54:32 UTC
(In reply to comment #32)
> * Using configure and openjpeg2 in an non standard dir i get
> 
> /home/tsdgeos/devel/poppler/glib/tmp-introspect13BDMh/.libs/lt-Poppler-0.18:
> error while loading shared libraries: libopenjp2.so.7: cannot open shared
> object file: No such file or directory

I can reproduce this on Debian Testing if I install openjpeg2 in a directory that is not /usr/local or the directory I install poppler into.

This problem is beyond my understanding of automake and libtool. From what I can find out on google this is not caused by anything in my patch but is caused by the Debian libtool which has been modified to disallow -rpath to non standard locations (https://wiki.debian.org/RpathIssue).

It seems to be this setting that is causing the problem:
 $ grep link_all_deplibs= libtool
 link_all_deplibs=no

Compiling and installing an unpatched libtool fixes the problem.

Other solutions include putting the openjpeg2 lib in LD_LIBRARY_PATH or installing it in the same prefix as poppler.
Comment 41 Albert Astals Cid 2014-10-07 22:25:48 UTC
There seems to be some movement at https://code.google.com/p/openjpeg/issues/detail?id=254 that's good

I know openjpeg2 can have some fixes/features versus 1, but sincerely i'd prefer we at least don't regress and prefer 1 over 2 (for the moment) so people stay at least as they are in the pdfs they had.

what everyone else thinks?
Comment 42 Thomas Freitag 2014-10-08 07:52:11 UTC
(In reply to Albert Astals Cid from comment #41)
> There seems to be some movement at
> https://code.google.com/p/openjpeg/issues/detail?id=254 that's good
> 
> I know openjpeg2 can have some fixes/features versus 1, but sincerely i'd
> prefer we at least don't regress and prefer 1 over 2 (for the moment) so
> people stay at least as they are in the pdfs they had.
> 
> what everyone else thinks?

That would be okay for me. 

But just another idea: openjpeg 2.x is not available as debian package in the moment. So if someone want to use it he has to download the sources, compile and install it. This should be done only on a development system, and a developer should know what he does :-) So in my eyes: if I have installed it I also want to use it.

On a "normal" system still only openjpeg 1.3 is installed.
Comment 43 Adrian Johnson 2014-10-08 12:01:03 UTC
Created attachment 107553 [details] [review]
Initial attempt at openjpeg2 support

> I know openjpeg2 can have some fixes/features versus 1, but sincerely
> i'd prefer we at least don't regress and prefer 1 over 2 (for the
> moment) so people stay at least as they are in the pdfs they had.

I agree that regressions are unacceptable. I've updated my patch to default to openjpeg1 and provide the option to select openjpeg2.
Comment 44 Adrian Johnson 2014-12-15 11:52:51 UTC
Albert, ping
Comment 45 Albert Astals Cid 2014-12-15 19:27:23 UTC
I know, i know, sorrry. It's on the todo list for xmas where i will hopefully have some time.
Comment 46 Albert Astals Cid 2014-12-24 11:21:44 UTC
I'm going to complain about broken cmake again, while i find out how the hell to use auto* i haven't used for a long time to test the rest of the patch.
Comment 47 Albert Astals Cid 2014-12-24 11:27:33 UTC
That was a bit too rude, excuse my bad xmas manners.
Comment 48 Albert Astals Cid 2014-12-24 14:43:05 UTC
Ok, so i've run the reg test with openjpeg1 and all is fine, openjpeg2 code asserts in lots of places.

I guess is how we want to proceed. I'd suggest:
 * Get the cmake code done
 * Commit
 * Create a master "openjpeg2 regresses" bug in our bugzilla
 * Create a child bug for every file that i have that regresses
 * Try to get the openjpeg2 devels to fix openjpeg.

Comments?
Comment 49 Thomas Freitag 2014-12-28 11:32:29 UTC
(In reply to Albert Astals Cid from comment #48)
> Ok, so i've run the reg test with openjpeg1 and all is fine, openjpeg2 code
> asserts in lots of places.
> 
> I guess is how we want to proceed. I'd suggest:
>  * Get the cmake code done
>  * Commit
>  * Create a master "openjpeg2 regresses" bug in our bugzilla
>  * Create a child bug for every file that i have that regresses
>  * Try to get the openjpeg2 devels to fix openjpeg.
> 
> Comments?

That's ok for me. Just one question: which openjpeg2 code do You use? As far as I remember when I used the subversion checkout there are not so many asserts in my regression test.
Comment 50 Albert Astals Cid 2015-01-02 16:06:27 UTC
> That's ok for me. Just one question: which openjpeg2 code do You use? As far
> as I remember when I used the subversion checkout there are not so many
> asserts in my regression test.

I'm using 2.1.0-2 as packaged in ubuntu
Comment 51 Albert Astals Cid 2015-01-04 21:55:52 UTC
Ok, i've pushed everything and made the tweaks for the cmake code myself.

Will close this one and start a reg test against openjpeg2 as said in one of the comments.
Comment 52 Albert Astals Cid 2015-01-04 23:03:21 UTC
New master bug at https://bugs.freedesktop.org/show_bug.cgi?id=88030


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.