diff options
author | Maciej Katafiasz <mathrick@mathrick.org> | 2005-02-23 23:37:24 +0000 |
---|---|---|
committer | Maciej Katafiasz <mathrick@mathrick.org> | 2005-02-23 23:37:24 +0000 |
commit | e2e86c207f9640de04a7b2b3cd32f2bc8607e742 (patch) | |
tree | 0cbc05abd49b2ad2d63cd29b4ea589a96de7b88f /ext | |
parent | a0392d69af354183f405de9d57a1508d23faf180 (diff) | |
download | gst-plugins-bad-e2e86c207f9640de04a7b2b3cd32f2bc8607e742.tar.gz gst-plugins-bad-e2e86c207f9640de04a7b2b3cd32f2bc8607e742.tar.bz2 gst-plugins-bad-e2e86c207f9640de04a7b2b3cd32f2bc8607e742.zip |
Small C99'ism fix.
Original commit message from CVS:
Small C99'ism fix.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/smoothwave/gstsmoothwave.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/smoothwave/gstsmoothwave.c b/ext/smoothwave/gstsmoothwave.c index 16d57da6..2583a4db 100644 --- a/ext/smoothwave/gstsmoothwave.c +++ b/ext/smoothwave/gstsmoothwave.c @@ -349,10 +349,11 @@ gst_smoothwave_chain (GstPad * pad, GstData * _data) prev_y[1] += diff_y; } } else { - qheight = smoothwave->height / 2; guchar *cur_pos; gint prev_y; + qheight = smoothwave->height / 2; + prev_y = (gint32) (*samples) * qheight / 32768; samples++; cur_pos = smoothwave->imagebuffer + ((prev_y + qheight) * stride); |