From: Steinar H. Gunderson Date: Thu, 23 Nov 2017 00:01:30 +0000 (+0100) Subject: Remove the unused fields from ResampleEffect; if we make any changes here, it will... X-Git-Tag: 1.6.0~37 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=1c44926155efb721da02916f82af87d186a7fb57;hp=094bfbb35f1af70ef07890ac7735006cdc195cca Remove the unused fields from ResampleEffect; if we make any changes here, it will have to be later. --- diff --git a/resample_effect.h b/resample_effect.h index af6a79f..5906a3c 100644 --- a/resample_effect.h +++ b/resample_effect.h @@ -83,7 +83,6 @@ private: float offset_x, offset_y; float zoom_x, zoom_y; float zoom_center_x, zoom_center_y; - float unused; }; class SingleResamplePassEffect : public Effect { @@ -133,7 +132,6 @@ private: int input_width, input_height, output_width, output_height; float offset, zoom; - float unused; int last_input_width, last_input_height, last_output_width, last_output_height; float last_offset, last_zoom; int src_bilinear_samples, num_loops;