mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
COMMON: Move huffman.h to common/compression/
This commit is contained in:
parent
819ed9851b
commit
3d71d8e08c
@ -26,7 +26,7 @@
|
||||
#include "common/math.h"
|
||||
#include "common/error.h"
|
||||
#include "common/memstream.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
|
||||
#include "math/mdct.h"
|
||||
#include "math/sinewindows.h"
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "common/debug.h"
|
||||
#include "common/random.h"
|
||||
#include "common/macresman.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
#include "common/savefile.h"
|
||||
|
||||
#include "gui/debugger.h"
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "common/system.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/textconsole.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
|
||||
#include "graphics/yuv_to_rgb.h"
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
#include <cxxtest/TestSuite.h>
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
#include "common/bitstream.h"
|
||||
#include "common/memstream.h"
|
||||
|
||||
/**
|
||||
* A test suite for the Huffman decoder in common/huffman.h
|
||||
* A test suite for the Huffman decoder in common/compression/huffman.h
|
||||
* The encoding used comes from the example on the Wikipedia page
|
||||
* for Huffman.
|
||||
* TODO: It could be improved by generating one at runtime.
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "common/file.h"
|
||||
#include "common/str.h"
|
||||
#include "common/bitstream.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
#include "common/system.h"
|
||||
|
||||
#include "graphics/yuv_to_rgb.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "audio/audiostream.h"
|
||||
#include "audio/decoders/adpcm.h"
|
||||
#include "common/bitstream.h"
|
||||
#include "common/huffman.h"
|
||||
#include "common/compression/huffman.h"
|
||||
#include "common/stream.h"
|
||||
#include "common/system.h"
|
||||
#include "common/textconsole.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user