[LIBSAMPLERATE]

* Create a main header and move some inclusions to it.
CORE-7716

svn path=/trunk/; revision=61508
This commit is contained in:
Amine Khaldi 2014-01-04 10:08:01 +00:00
parent c2b78e67c1
commit 5222b71d38
5 changed files with 15 additions and 30 deletions

View 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_ */

View file

@ -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) ;

View file

@ -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) ;

View file

@ -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', ' ')

View file

@ -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) ;