summaryrefslogtreecommitdiff
path: root/gst/volume/gstvolume.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/volume/gstvolume.c')
-rw-r--r--gst/volume/gstvolume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/volume/gstvolume.c b/gst/volume/gstvolume.c
index 152943df6..1f40f62d4 100644
--- a/gst/volume/gstvolume.c
+++ b/gst/volume/gstvolume.c
@@ -263,7 +263,7 @@ volume_choose_func (GstVolume * self)
case 8:
/* only clamp if the gain is greater than 1.0
*/
- if (self->current_vol_i16 > VOLUME_UNITY_INT8) {
+ if (self->current_vol_i8 > VOLUME_UNITY_INT8) {
self->process = volume_process_int8_clamp;
} else {
self->process = volume_process_int8;