summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_ciescope.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2019-09-16 11:22:16 +0200
committerPaul B Mahol <onemda@gmail.com>2019-09-16 11:22:16 +0200
commitf70690e8ece81a3f34e105c8cdb4dab16bdc7ce9 (patch)
tree3aec5547cecafcab28b96929e0041b72e87b05a9 /libavfilter/vf_ciescope.c
parentfa045c3ce288e3ffb6292cb8c0a1b21481de6974 (diff)
downloadffmpeg-streaming-f70690e8ece81a3f34e105c8cdb4dab16bdc7ce9.zip
ffmpeg-streaming-f70690e8ece81a3f34e105c8cdb4dab16bdc7ce9.tar.gz
avfilter/vf_ciescope: remove dead assignments
Diffstat (limited to 'libavfilter/vf_ciescope.c')
-rw-r--r--libavfilter/vf_ciescope.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavfilter/vf_ciescope.c b/libavfilter/vf_ciescope.c
index 5a7c3d7..d5a2c8c 100644
--- a/libavfilter/vf_ciescope.c
+++ b/libavfilter/vf_ciescope.c
@@ -1190,15 +1190,11 @@ plot_white_point(uint16_t* pixels,
if (cie == LUV) {
double wup, wvp;
xy_to_upvp(cs->xWhite, cs->yWhite, &wup, &wvp);
- wx = wup;
- wy = wvp;
wx = (w - 1) * wup;
wy = (h - 1) - ((int) ((h - 1) * wvp));
} else if (cie == UCS) {
double wu, wv;
xy_to_uv(cs->xWhite, cs->yWhite, &wu, &wv);
- wx = wu;
- wy = wv;
wx = (w - 1) * wu;
wy = (h - 1) - ((int) ((h - 1) * wv));
} else if (cie == XYY) {
OpenPOWER on IntegriCloud