mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-03 09:21:29 +00:00
Merge pull request #1108 in FS/freeswitch from ~PIOTRGREGOR/freeswitch:bugfix/FS-9843-avmd-remove-not-used-defines to master
* commit 'df80234f0713c512374352e31044a54517b5f981': FS-9843 [mod_avmd] Remove unused defines
This commit is contained in:
commit
452257e793
@ -14,6 +14,11 @@
|
|||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#include <float.h>
|
||||||
|
#include <inttypes.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef INT16_MIN
|
#ifndef INT16_MIN
|
||||||
#define INT16_MIN (-32767-1)
|
#define INT16_MIN (-32767-1)
|
||||||
#endif
|
#endif
|
||||||
|
@ -6,21 +6,19 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
#define ISNAN(x) (!!(_isnan(x)))
|
#define ISNAN(x) (!!(_isnan(x)))
|
||||||
#define ISINF(x) (isinf(x))
|
#define ISINF(x) (isinf(x))
|
||||||
#else
|
|
||||||
int __isnan(double);
|
|
||||||
#define ISNAN(x) (__isnan(x))
|
|
||||||
#define ISINF(x) (__isinf(x))
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "avmd_buffer.h"
|
#include "avmd_buffer.h"
|
||||||
#include "avmd_desa2.h"
|
#include "avmd_desa2.h"
|
||||||
#include "avmd_options.h"
|
#include "avmd_options.h"
|
||||||
|
|
||||||
#ifdef AVMD_FAST_MATH
|
#ifdef AVMD_FAST_MATH
|
||||||
#include "avmd_fast_acosf.h"
|
#include "avmd_fast_acosf.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,14 +15,9 @@
|
|||||||
#include <float.h>
|
#include <float.h>
|
||||||
#define ISNAN(x) (!!(_isnan(x)))
|
#define ISNAN(x) (!!(_isnan(x)))
|
||||||
#define ISINF(x) (isinf(x))
|
#define ISINF(x) (isinf(x))
|
||||||
#else
|
|
||||||
int __isnan(double);
|
|
||||||
#define ISNAN(x) (__isnan(x))
|
|
||||||
#define ISINF(x) (__isinf(x))
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "avmd_buffer.h"
|
#include "avmd_buffer.h"
|
||||||
#include "avmd_desa2_tweaked.h"
|
|
||||||
#include "avmd_options.h"
|
#include "avmd_options.h"
|
||||||
|
|
||||||
#ifndef AVMD_FAST_MATH
|
#ifndef AVMD_FAST_MATH
|
||||||
|
@ -39,17 +39,15 @@
|
|||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
#include <inttypes.h>
|
#define ISNAN(x) (!!(_isnan(x)))
|
||||||
#define ISNAN(x) (!!(_isnan(x)))
|
#define ISINF(x) (isinf(x))
|
||||||
#define ISINF(x) (isinf(x))
|
|
||||||
#else
|
#else
|
||||||
int __isnan(double);
|
int __isnan(double);
|
||||||
#define ISNAN(x) (__isnan(x))
|
#define ISNAN(x) (__isnan(x))
|
||||||
#define ISINF(x) (__isinf(x))
|
#define ISINF(x) (__isinf(x))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#include "avmd_buffer.h"
|
#include "avmd_buffer.h"
|
||||||
#include "avmd_desa2_tweaked.h"
|
#include "avmd_desa2_tweaked.h"
|
||||||
#include "avmd_sma_buf.h"
|
#include "avmd_sma_buf.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user