JPGLoader: Move bogus JPEGs to a different directory
This commit is contained in:
parent
f107c70652
commit
4d7ba50dc7
Notes:
sideshowbarker
2024-07-19 01:12:11 +09:00
Author: https://github.com/devsh0 Commit: https://github.com/SerenityOS/serenity/commit/4d7ba50dc7d Pull-request: https://github.com/SerenityOS/serenity/pull/4237 Issue: https://github.com/SerenityOS/serenity/issues/4212 Issue: https://github.com/SerenityOS/serenity/issues/4215
6 changed files with 1 additions and 4 deletions
|
@ -6,8 +6,6 @@
|
|||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<h3>Issue-3439</h3>
|
||||
<img alt="lena" src="jpgsuite_files/offending-3439.jpg"/><br>
|
||||
<h3>Non-subsampled Lena</h3> <br>
|
||||
<img alt="lena" src="jpgsuite_files/non-subsampled-lena.jpg"/> <br>
|
||||
<h3>Chroma Horizontally Halved Lena</h3> <br>
|
||||
|
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4212.jpg
Normal file
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4212.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 71 B |
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4214.jpg
Normal file
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4214.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 254 B |
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4215.jpg
Normal file
BIN
Base/res/html/misc/jpgsuite_files/fuzz/issue-4215.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 229 B |
|
@ -36,7 +36,7 @@
|
|||
#include <LibGfx/JPGLoader.h>
|
||||
#include <math.h>
|
||||
|
||||
#define JPG_DEBUG
|
||||
//#define JPG_DEBUG
|
||||
|
||||
#define JPG_INVALID 0X0000
|
||||
|
||||
|
@ -209,7 +209,6 @@ struct JPGLoadingContext {
|
|||
u8 vsample_factor { 0 };
|
||||
u8 component_count { 0 };
|
||||
HashMap<u8, ComponentSpec> components;
|
||||
// ComponentSpec components[3];
|
||||
RefPtr<Gfx::Bitmap> bitmap;
|
||||
u16 dc_reset_interval { 0 };
|
||||
Vector<HuffmanTableSpec> dc_tables;
|
||||
|
|
Loading…
Add table
Reference in a new issue