2020-07-31 11:31:32 +08:00
|
|
|
//=====================================================================
|
|
|
|
// Copyright (c) 2007-2014 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
// Copyright (c) 2004-2006 ATI Technologies Inc.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files(the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions :
|
2021-09-08 10:54:22 +08:00
|
|
|
//
|
2020-07-31 11:31:32 +08:00
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
2021-09-08 10:54:22 +08:00
|
|
|
//
|
2020-07-31 11:31:32 +08:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE./// \file Compress.h
|
|
|
|
//
|
|
|
|
/// \brief Declares the interface to the Compressonator library.
|
|
|
|
//
|
|
|
|
//=====================================================================
|
|
|
|
|
|
|
|
#ifndef COMPRESS_H
|
|
|
|
#define COMPRESS_H
|
|
|
|
|
2021-09-08 10:54:22 +08:00
|
|
|
#include "codec.h"
|
2020-07-31 11:31:32 +08:00
|
|
|
#include "float.h"
|
|
|
|
|
|
|
|
#define FP_EXCEPTION_MASK _MCW_EM // Disable fp exceptions
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2021-09-08 10:54:22 +08:00
|
|
|
#if _MSC_VER < 1400
|
|
|
|
#define DISABLE_FP_EXCEPTIONS \
|
2020-07-31 11:31:32 +08:00
|
|
|
UINT nCurrentFP = _controlfp(0, 0); \
|
|
|
|
_controlfp(FP_EXCEPTION_MASK, _MCW_EM);
|
2021-09-08 10:54:22 +08:00
|
|
|
#define RESTORE_FP_EXCEPTIONS \
|
2020-07-31 11:31:32 +08:00
|
|
|
_controlfp(nCurrentFP, _MCW_EM);
|
2021-09-08 10:54:22 +08:00
|
|
|
#else // >= 1400
|
|
|
|
#define DISABLE_FP_EXCEPTIONS \
|
2020-07-31 11:31:32 +08:00
|
|
|
unsigned int nCurrentFP = 0; \
|
|
|
|
_controlfp_s(&nCurrentFP, FP_EXCEPTION_MASK, _MCW_EM);
|
2021-09-08 10:54:22 +08:00
|
|
|
#define RESTORE_FP_EXCEPTIONS \
|
2020-07-31 11:31:32 +08:00
|
|
|
_controlfp_s(NULL, nCurrentFP, _MCW_EM);
|
2021-09-08 10:54:22 +08:00
|
|
|
#endif // >= 1400
|
2020-07-31 11:31:32 +08:00
|
|
|
#else
|
2021-09-08 10:54:22 +08:00
|
|
|
#define DISABLE_FP_EXCEPTIONS
|
|
|
|
#define RESTORE_FP_EXCEPTIONS
|
2020-07-31 11:31:32 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*******************************
|
2021-09-08 10:54:22 +08:00
|
|
|
For prototyping Multithreaded Compression is been disabled
|
2020-07-31 11:31:32 +08:00
|
|
|
Navin May 2014
|
2021-09-08 10:54:22 +08:00
|
|
|
was #define THREADED_COMPRESS
|
2020-07-31 11:31:32 +08:00
|
|
|
*******************************/
|
2021-09-08 10:54:22 +08:00
|
|
|
#define THREADED_COMPRESS
|
2020-07-31 11:31:32 +08:00
|
|
|
|
|
|
|
#ifdef THREADED_COMPRESS
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#define MAX_THREADS 64u
|
2021-09-08 10:54:22 +08:00
|
|
|
static CMP_DWORD GetProcessorCount() {
|
2020-07-31 11:31:32 +08:00
|
|
|
return std::thread::hardware_concurrency();
|
|
|
|
}
|
|
|
|
|
|
|
|
const CMP_DWORD f_dwProcessorCount = GetProcessorCount();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // !COMPRESS_H
|