Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-03-09 13:51:20 +0300
committerPaul B Mahol <onemda@gmail.com>2016-03-09 13:51:20 +0300
commit953b8c5a43ef3f48cc0464857efffe8fdc769b3d (patch)
tree0ff5c65679a55f720f4d4c3a18bdddb509d09ee7 /libavfilter/vf_waveform.c
parenta008a7cc953e23193c91ececde3486e8a347c1ef (diff)
avfilter/vf_waveform: use intensity for other components too
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_waveform.c')
-rw-r--r--libavfilter/vf_waveform.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/libavfilter/vf_waveform.c b/libavfilter/vf_waveform.c
index 9a5f5e3f0e..0b89ed4055 100644
--- a/libavfilter/vf_waveform.c
+++ b/libavfilter/vf_waveform.c
@@ -688,9 +688,9 @@ static void flat(WaveformContext *s, AVFrame *in, AVFrame *out,
target = d0 + x + d0_signed_linesize * c0;
update(target, max, intensity);
target = d1 + x + d1_signed_linesize * (c0 - c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d1 + x + d1_signed_linesize * (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
c0_data += c0_linesize;
c1_data += c1_linesize;
@@ -721,16 +721,16 @@ static void flat(WaveformContext *s, AVFrame *in, AVFrame *out,
target = d0_data - c0;
update(target, max, intensity);
target = d1_data - (c0 - c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d1_data - (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
} else {
target = d0_data + c0;
update(target, max, intensity);
target = d1_data + (c0 - c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d1_data + (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
}
}
@@ -791,10 +791,10 @@ static void aflat(WaveformContext *s, AVFrame *in, AVFrame *out,
update(target, max, intensity);
target = d1 + x + d1_signed_linesize * (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d2 + x + d2_signed_linesize * (c0 + c2);
- update(target, max, 1);
+ update(target, max, intensity);
c0_data += c0_linesize;
c1_data += c1_linesize;
@@ -829,16 +829,16 @@ static void aflat(WaveformContext *s, AVFrame *in, AVFrame *out,
target = d0_data - c0;
update(target, max, intensity);
target = d1_data - (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d2_data - (c0 + c2);
- update(target, max, 1);
+ update(target, max, intensity);
} else {
target = d0_data + c0;
update(target, max, intensity);
target = d1_data + (c0 + c1);
- update(target, max, 1);
+ update(target, max, intensity);
target = d2_data + (c0 + c2);
- update(target, max, 1);
+ update(target, max, intensity);
}
}