video: Don't convert odd number to even for width/height. 39/215739/1
authorSeunghun Lee <shiin.lee@samsung.com>
Mon, 7 Oct 2019 11:57:03 +0000 (20:57 +0900)
committerSeunghun Lee <shiin.lee@samsung.com>
Tue, 15 Oct 2019 06:52:43 +0000 (15:52 +0900)
This patch is to see what happen after remove it. Even if it turns out
to be necessary, it should be done in reasonable place, for instance
hardware driver in case it is for hardware constraints.

Change-Id: If78295cff8f5e2260cfe85bc0bbe7367fe34d147

src/bin/video/iface/e_video_hwc.c

index e251b9f8d97ef9a69c3db3cf3da52463712f17e9..9a860903bc400b9a19f2ee479c5aab2f00262707 100644 (file)
@@ -893,9 +893,6 @@ _e_video_hwc_geometry_map_apply(E_Client *ec, E_Video_Hwc_Geometry *out)
         return EINA_FALSE;
      }
 
-   output_r.w = (output_r.w + 1) & ~1;
-   output_r.h = (output_r.h + 1) & ~1;
-
    if ((!memcmp(&out->output_r, &output_r, sizeof(Eina_Rectangle))) &&
        (out->transform == transform))
      return EINA_FALSE;