diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-02-16 16:08:31 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-02-16 16:08:31 +0100 |
commit | 71f9bd00f56aec68423fa026b6d4d3c808bb1ab8 (patch) | |
tree | 5ea7ef5d3de6a458efdb42f0a0c6391e1352c75f | |
parent | 4fe032d97ec142130bc367a33853c34339bf26f8 (diff) | |
download | gst-plugins-bad-71f9bd00f56aec68423fa026b6d4d3c808bb1ab8.tar.gz gst-plugins-bad-71f9bd00f56aec68423fa026b6d4d3c808bb1ab8.tar.bz2 gst-plugins-bad-71f9bd00f56aec68423fa026b6d4d3c808bb1ab8.zip |
bpmdetect: Fix accidentally introduced stack overwriting introduced in last commit
-rw-r--r-- | ext/soundtouch/gstbpmdetect.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/soundtouch/gstbpmdetect.cc b/ext/soundtouch/gstbpmdetect.cc index 8a5618b4..8d774303 100644 --- a/ext/soundtouch/gstbpmdetect.cc +++ b/ext/soundtouch/gstbpmdetect.cc @@ -225,7 +225,6 @@ gst_bpm_detect_transform_ip (GstBaseTransform * trans, GstBuffer * in) bpm_detect->priv->detect->inputSamples (intmp, MIN (nsamples, 2048)); nsamples -= 2048; inbuf += 2048 * 2; - intmp += 2048 * 2; } } |