Commit
59f6c50df8d4d9 set the memory limit to 100M,
which turns out to exclude some large, valid jpegs.
So, bump things to 300M, matching what was done
in gdk-pixbuf.
jpeg_create_decompress (&info);
- info.mem->max_memory_to_use = 100 * 1024 * 1024;
+ info.mem->max_memory_to_use = 300 * 1024 * 1024;
jpeg_mem_src (&info,
g_bytes_get_data (input_bytes, NULL),
jpeg_set_defaults (&info);
jpeg_set_quality (&info, 75, TRUE);
- info.mem->max_memory_to_use = 100 * 1024 * 1024;
+ info.mem->max_memory_to_use = 300 * 1024 * 1024;
jpeg_mem_dest (&info, &data, &size);