mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
- Fix kmixer linking
svn path=/branches/cmake-bringup/; revision=50796
This commit is contained in:
parent
ab7c42e1cc
commit
0970afe8cf
2 changed files with 6 additions and 2 deletions
1
lib/3rdparty/libsamplerate/CMakeLists.txt
vendored
1
lib/3rdparty/libsamplerate/CMakeLists.txt
vendored
|
@ -6,3 +6,4 @@ list(APPEND SOURCE
|
|||
src_zoh.c)
|
||||
|
||||
add_library(libsamplerate ${SOURCE})
|
||||
add_dependencies(libsamplerate psdk)
|
7
lib/3rdparty/libsamplerate/src_linear.c
vendored
7
lib/3rdparty/libsamplerate/src_linear.c
vendored
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue