diff --git a/compress.cpp b/compress.cpp index 253b918e..45874097 100644 --- a/compress.cpp +++ b/compress.cpp @@ -27,6 +27,14 @@ #include "compress.h" +#ifndef DISABLE_BUILTIN_VORBIS +#include +#endif +#ifndef DISABLE_BUILTIN_FLAC +#define FLAC__NO_DLL 1 +#include +#endif + struct lameparams { uint32 minBitr; uint32 maxBitr; diff --git a/compress.h b/compress.h index 9e6919df..f43b8d74 100644 --- a/compress.h +++ b/compress.h @@ -25,13 +25,6 @@ #include "tool.h" -#ifndef DISABLE_BUILTIN_VORBIS -#include -#endif -#ifndef DISABLE_BUILTIN_FLAC -#define FLAC__NO_DLL 1 -#include -#endif enum { /* These are the defaults parameters for the Lame invocation */