- Fix kmixer linking

svn path=/branches/cmake-bringup/; revision=50796
This commit is contained in:
Johannes Anderwald 2011-02-18 12:09:10 +00:00
parent ab7c42e1cc
commit 0970afe8cf
2 changed files with 6 additions and 2 deletions

View file

@ -6,3 +6,4 @@ list(APPEND SOURCE
src_zoh.c)
add_library(libsamplerate ${SOURCE})
add_dependencies(libsamplerate psdk)

View file

@ -30,6 +30,9 @@
#include "float_cast.h"
#include "common.h"
#include <windows.h>
#include <debug.h>
static int linear_vari_process (SRC_PRIVATE *psrc, SRC_DATA *data) ;
static void linear_reset (SRC_PRIVATE *psrc) ;
@ -107,8 +110,8 @@ linear_vari_process (SRC_PRIVATE *psrc, SRC_DATA *data)
src_ratio = psrc->last_ratio + priv->out_gen * (data->src_ratio - psrc->last_ratio) / priv->out_count ;
if (SRC_DEBUG && priv->in_used < priv->channels && input_index < 1.0)
{ printf ("Whoops!!!! in_used : %ld channels : %d input_index : %f\n", priv->in_used, priv->channels, input_index) ;
exit (1) ;
{ DPRINT1 ("Whoops!!!! in_used : %ld channels : %d input_index : %f\n", priv->in_used, priv->channels, input_index) ;
ASSERT (0) ;
} ;
for (ch = 0 ; ch < priv->channels ; ch++)