aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cubeb_resampler.cpp
diff options
context:
space:
mode:
authorMatthew Gregan <[email protected]>2016-08-23 12:57:32 +1200
committerMatthew Gregan <[email protected]>2016-08-23 12:57:44 +1200
commitdc7fc393d9242de52dc013f5259fa9ca92a87982 (patch)
tree0495e26968fe3893a0e44c5d770700f937151917 /src/cubeb_resampler.cpp
parentdeb92cd8835eb0f5012c3dab74c8b7bdc9458e25 (diff)
downloadcubeb-dc7fc393d9242de52dc013f5259fa9ca92a87982.tar.gz
cubeb-dc7fc393d9242de52dc013f5259fa9ca92a87982.zip
resampler: Fix unused parameter warning.
Diffstat (limited to 'src/cubeb_resampler.cpp')
-rw-r--r--src/cubeb_resampler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cubeb_resampler.cpp b/src/cubeb_resampler.cpp
index 9bccc78..a476744 100644
--- a/src/cubeb_resampler.cpp
+++ b/src/cubeb_resampler.cpp
@@ -150,7 +150,7 @@ template<typename T, typename InputProcessor, typename OutputProcessor>
long
cubeb_resampler_speex<T, InputProcessor, OutputProcessor>
::fill_internal_input(T * input_buffer, long * input_frames_count,
- T * output_buffer, long output_frames_needed)
+ T * output_buffer, long /*output_frames_needed*/)
{
assert(input_buffer && input_frames_count && *input_frames_count &&
!output_buffer);