mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[LIBSAMPLERATE]
* Create a main header and move some inclusions to it. CORE-7716 svn path=/trunk/; revision=61508
This commit is contained in:
parent
c2b78e67c1
commit
5222b71d38
5 changed files with 15 additions and 30 deletions
11
reactos/lib/3rdparty/libsamplerate/precomp.h
vendored
Normal file
11
reactos/lib/3rdparty/libsamplerate/precomp.h
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
#ifndef _LIBSAMPLERATE_PCH_
|
||||
#define _LIBSAMPLERATE_PCH_
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "float_cast.h"
|
||||
#include "common.h"
|
||||
|
||||
#endif /* _LIBSAMPLERATE_PCH_ */
|
10
reactos/lib/3rdparty/libsamplerate/samplerate.c
vendored
10
reactos/lib/3rdparty/libsamplerate/samplerate.c
vendored
|
@ -22,15 +22,7 @@
|
|||
** http://www.mega-nerd.com/SRC/procedure.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "samplerate.h"
|
||||
#include "float_cast.h"
|
||||
#include "common.h"
|
||||
#include "precomp.h"
|
||||
|
||||
static int psrc_set_converter (SRC_PRIVATE *psrc, int converter_type) ;
|
||||
|
||||
|
|
|
@ -22,13 +22,7 @@
|
|||
** http://www.mega-nerd.com/SRC/procedure.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "float_cast.h"
|
||||
#include "common.h"
|
||||
#include "precomp.h"
|
||||
|
||||
static int linear_vari_process (SRC_PRIVATE *psrc, SRC_DATA *data) ;
|
||||
static void linear_reset (SRC_PRIVATE *psrc) ;
|
||||
|
|
|
@ -22,13 +22,7 @@
|
|||
** http://www.mega-nerd.com/SRC/procedure.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "float_cast.h"
|
||||
#include "common.h"
|
||||
#include "precomp.h"
|
||||
|
||||
#define SINC_MAGIC_MARKER MAKE_MAGIC (' ', 's', 'i', 'n', 'c', ' ')
|
||||
|
||||
|
|
8
reactos/lib/3rdparty/libsamplerate/src_zoh.c
vendored
8
reactos/lib/3rdparty/libsamplerate/src_zoh.c
vendored
|
@ -22,13 +22,7 @@
|
|||
** http://www.mega-nerd.com/SRC/procedure.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "float_cast.h"
|
||||
#include "common.h"
|
||||
#include "precomp.h"
|
||||
|
||||
static int zoh_vari_process (SRC_PRIVATE *psrc, SRC_DATA *data) ;
|
||||
static void zoh_reset (SRC_PRIVATE *psrc) ;
|
||||
|
|
Loading…
Reference in a new issue