File: config.h

package info (click to toggle)
opus-tools 0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,128 kB
  • sloc: ansic: 8,767; sh: 4,186; makefile: 93
file content (32 lines) | stat: -rw-r--r-- 641 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef CONFIG_H
#define CONFIG_H

/* comment to disable flac dependency */
#define HAVE_LIBFLAC          1
/* comment to compile with dynamic flac */
#define FLAC__NO_DLL
/* comment to use slower resampler that uses less memory */
#define RESAMPLE_FULL_SINC_TABLE

#define OUTSIDE_SPEEX         1
#define OPUSTOOLS             1

#define inline __inline

#ifdef HAVE_LIBFLAC
#ifdef FLAC__NO_DLL
    #pragma comment(lib, "libFLAC_static.lib")
#else
    #pragma comment(lib, "libFLAC_dynamic.lib")
#endif
#endif

#define __SSE__

#define RANDOM_PREFIX opustools

#define PACKAGE_NAME "opus-tools"
#include "version.h"


#endif /* CONFIG_H */