Fixed SVACE issue 19/155819/1
authortaeyoon0.lee <taeyoon0.lee@samsung.com>
Fri, 22 Sep 2017 09:54:30 +0000 (18:54 +0900)
committertaeyoon0.lee <taeyoon0.lee@samsung.com>
Mon, 16 Oct 2017 08:14:40 +0000 (17:14 +0900)
 - data member initialization

Change-Id: Iaf13e2123875d117fa929e674a311131c90f7f0c

dali-extension/video-player/tizen-video-player.cpp

index f7baa50..1277a53 100644 (file)
@@ -209,11 +209,18 @@ void LogPlayerError( int error )
 } // unnamed namespace
 
 TizenVideoPlayer::TizenVideoPlayer()
-: mPlayer( NULL ),
+: mUrl(),
+  mPlayer( NULL ),
   mPlayerState( PLAYER_STATE_NONE ),
   mTbmSurface( NULL ),
   mPacket( NULL ),
+  mNativeImageSourcePtr( NULL ),
+  mTimer( NULL ),
+  mBackgroundColor( Dali::Vector4( 1.0f, 1.0f, 1.0f, 0.0f ) ),
   mTargetType( NativeImage ),
+  mPacketMutex(),
+  mPacketVector(),
+  mEcoreWlWindow( NULL ),
   mAlphaBitChanged( false )
 {
 }