Browse Source

add speexdsp_config_types.h

pull/1639/head
bsp2 6 years ago
parent
commit
bb9e211c03
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      dep/speexdsp-SpeexDSP-1.2rc3/include/speex/speexdsp_config_types.h

+ 18
- 0
dep/speexdsp-SpeexDSP-1.2rc3/include/speex/speexdsp_config_types.h View File

@@ -0,0 +1,18 @@
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__

#if defined HAVE_STDINT_H
# include <stdint.h>
#elif defined HAVE_INTTYPES_H
# include <inttypes.h>
#elif defined HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif

typedef int16_t spx_int16_t;
typedef uint16_t spx_uint16_t;
typedef int32_t spx_int32_t;
typedef uint32_t spx_uint32_t;

#endif


Loading…
Cancel
Save