From: Pierre-Anthony Lemieux <pal@sandflow.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH v1 3/3] fate/jpeg2000: add JPEG 2000 tests using ITU/ISO conformance materials Date: Mon, 3 Apr 2023 10:40:17 -0700 Message-ID: <CAF_7JxBA8edxcJPAyv7Yv2k7g-dAzC=69e_e02i-c5OTUWM7rg@mail.gmail.com> (raw) In-Reply-To: <20230402192742.GI1164690@pb2> On Sun, Apr 2, 2023 at 12:27 PM Michael Niedermayer <michael@niedermayer.cc> wrote: > > On Fri, Mar 31, 2023 at 08:29:41AM -0700, pal@sandflow.com wrote: > > From: Pierre-Anthony Lemieux <pal@palemieux.com> > > > > Adds JPEG 2000 decoder tests using materials from the conformance suite specified in > > Rec. ITU-T T.803 | ISO/IEC 15444-4. > > > > The test materials are available at https://gitlab.com/wg1/htj2k-codestreams > > --- > > tests/Makefile | 1 + > > tests/fate/jpeg2000.mak | 64 ++++++++++++++++++++++++ > > tests/ref/fate/jpeg2000dec-ds0_ht_01_b11 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_01 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_02 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_03 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_04 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_05 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_07 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_08 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_09 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_11 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_12 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_14 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_15 | 6 +++ > > tests/ref/fate/jpeg2000dec-p0_16 | 6 +++ > > 16 files changed, 149 insertions(+) > > create mode 100644 tests/fate/jpeg2000.mak > > create mode 100644 tests/ref/fate/jpeg2000dec-ds0_ht_01_b11 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_01 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_02 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_03 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_04 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_05 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_07 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_08 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_09 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_11 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_12 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_14 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_15 > > create mode 100644 tests/ref/fate/jpeg2000dec-p0_16 > > fails on x86_32 Looks like this was due to literals declared `ul` instead of `ull`. > > --- src/tests/ref/fate/jpeg2000dec-ds0_ht_01_b11 2023-04-02 20:22:07.533882127 +0200 > +++ tests/data/fate/jpeg2000dec-ds0_ht_01_b11 2023-04-02 21:22:52.570695888 +0200 > @@ -3,4 +3,4 @@ > #codec_id 0: rawvideo > #dimensions 0: 128x128 > #sar 0: 0/1 > -0, 0, 0, 1, 16384, 0x44426324 > +0, 0, 0, 1, 16384, 0x69cdc6ea > Test jpeg2000dec-ds0_ht_01_b11 failed. Look at tests/data/fate/jpeg2000dec-ds0_ht_01_b11.err for details. > src/tests/Makefile:307: recipe for target 'fate-jpeg2000dec-ds0_ht_01_b11' failed > make: *** [fate-jpeg2000dec-ds0_ht_01_b11] Error 1 > make: Target 'fate-jpeg2000dec' not remade because of errors. > > > > [...] > -- > Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB > > Republics decline into democracies and democracies degenerate into > despotisms. -- Aristotle > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
prev parent reply other threads:[~2023-04-03 17:40 UTC|newest] Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-03-31 15:29 [FFmpeg-devel] [PATCH v1 1/3] avcodec/jpeg2000dec: move decoder structs to a header file pal 2023-03-31 15:29 ` [FFmpeg-devel] [PATCH v1 2/3] avcodec/jpeg2000dec: add support for HTJ2K block decoding pal 2023-04-02 22:17 ` Michael Niedermayer 2023-04-02 22:21 ` Pierre-Anthony Lemieux 2023-04-03 14:27 ` Michael Niedermayer 2023-04-03 16:20 ` Caleb Etemesi 2023-04-04 14:54 ` Michael Niedermayer 2023-04-05 12:34 ` Tomas Härdin 2023-04-05 13:16 ` Caleb Etemesi 2023-04-05 13:45 ` Tomas Härdin 2023-04-11 17:57 ` Pierre-Anthony Lemieux 2023-03-31 15:29 ` [FFmpeg-devel] [PATCH v1 3/3] fate/jpeg2000: add JPEG 2000 tests using ITU/ISO conformance materials pal 2023-04-02 19:27 ` Michael Niedermayer 2023-04-02 19:31 ` Michael Niedermayer 2023-04-03 5:05 ` Pierre-Anthony Lemieux 2023-04-05 4:38 ` Pierre-Anthony Lemieux 2023-04-03 17:40 ` Pierre-Anthony Lemieux [this message]
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to='CAF_7JxBA8edxcJPAyv7Yv2k7g-dAzC=69e_e02i-c5OTUWM7rg@mail.gmail.com' \ --to=pal@sandflow.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git