reverted rev 2037 as we have custom changes in this file (stable backport)

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms/stable-0.4@2044 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2009-02-14 17:35:24 +00:00
parent c5d01d5e0d
commit 1102f03fde
2 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2009-02-14 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/3rdparty/samplerate/samplerate.h:
reverted rev 2037 as we have custom changes in this file
2009-02-13 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/pattern.h:

View File

@@ -30,6 +30,8 @@
#ifndef SAMPLERATE_H
#define SAMPLERATE_H
#include "export.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
@@ -73,7 +75,7 @@ typedef long (*src_callback_t) (void *cb_data, float **data) ;
** Error returned in *error.
*/
SRC_STATE* src_new (int converter_type, int channels, int *error) ;
SRC_STATE* EXPORT src_new (int converter_type, int channels, int *error) ;
/*
** Initilisation for callback based API : return an anonymous pointer to the
@@ -91,14 +93,14 @@ SRC_STATE* src_callback_new (src_callback_t func, int converter_type, int channe
** Always returns NULL.
*/
SRC_STATE* src_delete (SRC_STATE *state) ;
SRC_STATE* EXPORT src_delete (SRC_STATE *state) ;
/*
** Standard processing function.
** Returns non zero on error.
*/
int src_process (SRC_STATE *state, SRC_DATA *data) ;
int EXPORT src_process (SRC_STATE *state, SRC_DATA *data) ;
/*
** Callback based processing function. Read up to frames worth of data from
@@ -161,7 +163,7 @@ int src_error (SRC_STATE *state) ;
/*
** Convert the error number into a string.
*/
const char* src_strerror (int error) ;
const char* EXPORT src_strerror (int error) ;
/*
** The following enums can be used to set the interpolator type