COMMON: Move huffman.h back out of the compression directory

This commit is contained in:
Cameron Cawley 2022-12-01 12:49:07 +00:00 committed by Eugene Sandulenko
parent b79e5a3b2d
commit 0581301b24
7 changed files with 7 additions and 7 deletions

View file

@ -26,7 +26,7 @@
#include "common/math.h"
#include "common/error.h"
#include "common/memstream.h"
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "math/mdct.h"
#include "math/sinewindows.h"

View file

@ -36,7 +36,7 @@
#include "common/debug.h"
#include "common/random.h"
#include "common/macresman.h"
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "common/savefile.h"
#include "gui/debugger.h"

View file

@ -32,7 +32,7 @@
#include "common/system.h"
#include "common/debug.h"
#include "common/textconsole.h"
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "graphics/yuv_to_rgb.h"

View file

@ -1,10 +1,10 @@
#include <cxxtest/TestSuite.h>
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "common/bitstream.h"
#include "common/memstream.h"
/**
* A test suite for the Huffman decoder in common/compression/huffman.h
* A test suite for the Huffman decoder in common/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.

View file

@ -34,7 +34,7 @@
#include "common/file.h"
#include "common/str.h"
#include "common/bitstream.h"
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "common/system.h"
#include "graphics/yuv_to_rgb.h"

View file

@ -25,7 +25,7 @@
#include "audio/audiostream.h"
#include "audio/decoders/adpcm.h"
#include "common/bitstream.h"
#include "common/compression/huffman.h"
#include "common/huffman.h"
#include "common/stream.h"
#include "common/system.h"
#include "common/textconsole.h"