test_save: Fix for jxl loader on ix86

libjxl apparently behaves differently for ix86 and x86_64.
This commit is contained in:
Kim Woelders 2023-09-03 16:15:22 +02:00
parent 03cbf75a96
commit 57403f2ec3
1 changed files with 4 additions and 0 deletions

View File

@ -27,7 +27,11 @@ static const test_rec_t exts[] = {
// { "id3", { 0, 0 } },
// { "j2k", { 0, 0 } },
{ "jpeg", { 2458451111, 3483232328 } },
#ifdef __i386__
{ "jxl", { 2681286418, 3923017710 } },
#else
{ "jxl", { 2681286418, 774897965 } },
#endif
// { "lbm", { 0, 0 } },
// { "lzma", { 0, 0 } },
{ "png", { 1153555547, 2937827957 } },