Fixed to remove build warning message
authorJungYumin <y_m.jung@samsung.com>
Fri, 28 Jun 2013 06:48:55 +0000 (15:48 +0900)
committerJungYumin <y_m.jung@samsung.com>
Fri, 28 Jun 2013 06:48:55 +0000 (15:48 +0900)
Change-Id: I5128b070ee435f3543a71d0923de7152a0b2399f
Signed-off-by: JungYumin <y_m.jung@samsung.com>
src/FMedia_VideoFrameImpl.cpp

index dee8a1d..ff04216 100755 (executable)
@@ -46,7 +46,10 @@ _VideoFrameImpl::_VideoFrameImpl(void)
 , __planeCount(0)
 , __pPlaneType(null)
 {
-       __planeBytesCountPerLine = {0, };
+       for(int i = 0; i < MAX_PLANE_COUNT; i++)
+       {
+               __planeBytesCountPerLine[i] = 0;
+       }
 }
 
 _VideoFrameImpl::~_VideoFrameImpl(void)