1
0
Fork 0
forked from len0rd/rockbox

Missed removing a couple unwanted includes in previous commit.

Get those too.

Change-Id: Id2a39afe7a61d6ec0cea38633b94fe1b7122204f
This commit is contained in:
Michael Sevakis 2013-05-27 03:40:02 -04:00
parent b5a6517e9d
commit 46688a60db
3 changed files with 7 additions and 3 deletions

View file

@ -19,8 +19,6 @@
* *
****************************************************************************/ ****************************************************************************/
#include "rbcodecconfig.h" #include "rbcodecconfig.h"
#include <stdbool.h>
#include <sys/types.h>
#include "fixedpoint.h" #include "fixedpoint.h"
#include "fracmul.h" #include "fracmul.h"
#include <string.h> #include <string.h>

View file

@ -22,7 +22,6 @@
* *
****************************************************************************/ ****************************************************************************/
#include "rbcodecconfig.h" #include "rbcodecconfig.h"
#include "sound.h"
#include "fixedpoint.h" #include "fixedpoint.h"
#include "replaygain.h" #include "replaygain.h"
#include "dsp_proc_entry.h" #include "dsp_proc_entry.h"

View file

@ -126,5 +126,12 @@ static inline int32_t clip_sample_16(int32_t sample)
#endif #endif
*/ */
#ifdef HAVE_PITCHCONTROL
/* precision of the pitch and speed variables */
/* One zero per decimal (100 means two decimal places */
#define PITCH_SPEED_PRECISION 100L
#define PITCH_SPEED_100 (100L * PITCH_SPEED_PRECISION) /* 100% speed */
#endif /* HAVE_PITCHCONTROL */
int find_first_set_bit(uint32_t value); int find_first_set_bit(uint32_t value);
#endif /* PLATFORM_H_INCLUDED */ #endif /* PLATFORM_H_INCLUDED */