video: fix syntax error 47/93547/2
authorBoram Park <boram1288.park@samsung.com>
Mon, 24 Oct 2016 01:54:40 +0000 (10:54 +0900)
committerBoram Park <boram1288.park@samsung.com>
Wed, 2 Nov 2016 02:41:44 +0000 (11:41 +0900)
Change-Id: I73e2b1454035f8e67cd19e1479229c135183338b

src/e_devicemgr_video.c

index ea6b995841c26bf89cd012221040e8aece906a30..c1494c098cfb2744b226f17b1b29f94976e4c477 100644 (file)
@@ -335,7 +335,7 @@ _e_video_pp_buffer_get(E_Video *video, int width, int height)
         EINA_SAFETY_ON_NULL_RETURN_VAL(mbuf, NULL);
 
         /* if we need bigger pp_buffers, destroy all pp_buffers and create */
-        if (aligned_width != mbuf->width_from_pitch || height != mbuf->height)
+        if (aligned_width > mbuf->width_from_pitch || height != mbuf->height)
           {
              E_Video_Fb *vfb;
              Eina_List *ll;