aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/cubeb_resampler_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cubeb_resampler_internal.h b/src/cubeb_resampler_internal.h
index 285f24d..169732f 100644
--- a/src/cubeb_resampler_internal.h
+++ b/src/cubeb_resampler_internal.h
@@ -291,8 +291,8 @@ public:
int32_t resampled_frames_left =
samples_to_frames(resampling_out_buffer.length());
float input_frames_needed =
- (output_frame_count - unresampled_frames_left) * resampling_ratio -
- resampled_frames_left;
+ (output_frame_count - resampled_frames_left) * resampling_ratio -
+ unresampled_frames_left;
if (input_frames_needed < 0) {
return 0;
}