Commit fda05554 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_waveform: reduce number of operations a little

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 5b658bcc
......@@ -588,7 +588,7 @@ static void flat(WaveformContext *s, AVFrame *in, AVFrame *out,
if (mirror) {
d0_data += s->size - 1;
d1_data += s->size;
d1_data += s->size - 1;
}
for (y = 0; y < src_h; y++) {
......@@ -607,7 +607,7 @@ static void flat(WaveformContext *s, AVFrame *in, AVFrame *out,
for (p = c0 - c1; p < c0 + c1; p++) {
if (mirror)
target = d1_data - p - 1;
target = d1_data - p;
else
target = d1_data + p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment