LibGfx: Move QMArithmeticDecoder to its own file

It will be used by the JPEG2000 decoder as well.

Pure code move, no behavior change.
This commit is contained in:
Nico Weber 2024-04-16 08:08:06 -04:00 committed by Andreas Kling
commit ea441fea95
Notes: sideshowbarker 2024-07-17 01:21:02 +09:00
7 changed files with 282 additions and 253 deletions

View file

@ -22,6 +22,7 @@
#include <LibGfx/ImageFormats/PGMLoader.h>
#include <LibGfx/ImageFormats/PNGLoader.h>
#include <LibGfx/ImageFormats/PPMLoader.h>
#include <LibGfx/ImageFormats/QMArithmeticDecoder.h>
#include <LibGfx/ImageFormats/TGALoader.h>
#include <LibGfx/ImageFormats/TIFFLoader.h>
#include <LibGfx/ImageFormats/TinyVGLoader.h>