summaryrefslogtreecommitdiffstats
path: root/polyp
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-01-30 11:49:03 +0000
committerPierre Ossman <ossman@cendio.se>2006-01-30 11:49:03 +0000
commit22db575adc789c9bf6deabefe0843addc7ed2910 (patch)
tree122f09ac7a04a7f4b38066fc4a081b357b4e8842 /polyp
parentf8808a25257a79256f1c7c651386b94c259cbc57 (diff)
Breaks missing from conversion to a switch statement.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@468 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp')
-rw-r--r--polyp/sample-util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/polyp/sample-util.c b/polyp/sample-util.c
index 2310f3cb..52974c46 100644
--- a/polyp/sample-util.c
+++ b/polyp/sample-util.c
@@ -270,6 +270,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol
if (++channel >= spec->channels)
channel = 0;
}
+ break;
}
case PA_SAMPLE_U8: {
@@ -291,6 +292,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol
if (++channel >= spec->channels)
channel = 0;
}
+ break;
}
case PA_SAMPLE_FLOAT32NE: {
@@ -314,6 +316,7 @@ void pa_volume_memchunk(pa_memchunk*c, const pa_sample_spec *spec, const pa_cvol
t = d + channel;
oil_scalarmult_f32(t, skip, t, skip, &v, n);
}
+ break;
}
default: