13
0

Fix some warnings.

git-svn-id: svn://localhost/ardour2/branches/3.0@5259 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-06-23 10:40:48 +00:00
parent dd84d5312e
commit 417309d6d4
2 changed files with 5 additions and 6 deletions

View File

@ -24,7 +24,6 @@ class Interpolation {
void add_channel_to (int input_buffer_size, int output_buffer_size) {}
void remove_channel_from () {}
nframes_t interpolate (int channel, nframes_t nframes, Sample* input, Sample* output) {}
void reset () {}
};

View File

@ -63,7 +63,7 @@ FixedPointLinearInterpolation::remove_channel_from ()
void
FixedPointLinearInterpolation::reset()
{
for(int i = 0; i <= last_phase.size(); i++) {
for (size_t i = 0; i <= last_phase.size(); i++) {
last_phase[i] = 0;
}
}
@ -131,7 +131,7 @@ LinearInterpolation::remove_channel_from ()
void
LinearInterpolation::reset()
{
for(int i = 0; i <= phase.size(); i++) {
for (size_t i = 0; i <= phase.size(); i++) {
phase[i] = 0.0;
}
}
@ -143,7 +143,7 @@ LibSamplerateInterpolation::LibSamplerateInterpolation() : state (0)
LibSamplerateInterpolation::~LibSamplerateInterpolation()
{
for (int i = 0; i < state.size(); i++) {
for (size_t i = 0; i < state.size(); i++) {
state[i] = src_delete (state[i]);
}
}
@ -152,7 +152,7 @@ void
LibSamplerateInterpolation::set_speed (double new_speed)
{
_speed = new_speed;
for (int i = 0; i < state.size(); i++) {
for (size_t i = 0; i < state.size(); i++) {
src_set_ratio (state[i], 1.0/_speed);
}
}
@ -161,7 +161,7 @@ void
LibSamplerateInterpolation::reset_state ()
{
printf("INTERPOLATION: reset_state()\n");
for (int i = 0; i < state.size(); i++) {
for (size_t i = 0; i < state.size(); i++) {
if (state[i]) {
src_reset (state[i]);
} else {