comparison src/audacious/src_flow.c @ 4523:b3e4f5c31546

Conditional USE_SRC was changed to USE_SAMPLERATE earlier.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 30 Apr 2008 03:43:15 +0300
parents 5b277773870e
children
comparison
equal deleted inserted replaced
4522:8f36cce36fef 4523:b3e4f5c31546
21 21
22 #ifdef HAVE_CONFIG_H 22 #ifdef HAVE_CONFIG_H
23 # include "config.h" 23 # include "config.h"
24 #endif 24 #endif
25 25
26 #ifdef USE_SRC 26 #ifdef USE_SAMPLERATE
27 27
28 #include <stdlib.h> 28 #include <stdlib.h>
29 #include <stdio.h> 29 #include <stdio.h>
30 #include <math.h> 30 #include <math.h>
31 31
127 context->len = src_data.output_frames_gen * context->channels * sizeof(float); 127 context->len = src_data.output_frames_gen * context->channels * sizeof(float);
128 return; 128 return;
129 } 129 }
130 } 130 }
131 131
132 #endif /* USE_SRC */ 132 #endif /* USE_SAMPLERATE */
133 133